bootstrap.css 261 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783
  1. @charset "UTF-8";
  2. /*!
  3. * Bootstrap v5.3.0-alpha1 (https://getbootstrap.com/)
  4. * Copyright 2011-2022 The Bootstrap Authors
  5. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
  6. */
  7. :root,
  8. [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: #0a58ca;
  49. --bs-secondary-text: #6c757d;
  50. --bs-success-text: #146c43;
  51. --bs-info-text: #087990;
  52. --bs-warning-text: #997404;
  53. --bs-danger-text: #b02a37;
  54. --bs-light-text: #6c757d;
  55. --bs-dark-text: #495057;
  56. --bs-primary-bg-subtle: #cfe2ff;
  57. --bs-secondary-bg-subtle: #f8f9fa;
  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: #e9ecef;
  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-body-color-rgb: 33, 37, 41;
  75. --bs-body-bg-rgb: 255, 255, 255;
  76. --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";
  77. --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  78. --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  79. --bs-body-font-family: var(--bs-font-sans-serif);
  80. --bs-body-font-size: 1rem;
  81. --bs-body-font-weight: 400;
  82. --bs-body-line-height: 1.5;
  83. --bs-body-color: #212529;
  84. --bs-emphasis-color: #000;
  85. --bs-emphasis-color-rgb: 0, 0, 0;
  86. --bs-secondary-color: rgba(33, 37, 41, 0.75);
  87. --bs-secondary-color-rgb: 33, 37, 41;
  88. --bs-secondary-bg: #e9ecef;
  89. --bs-secondary-bg-rgb: 233, 236, 239;
  90. --bs-tertiary-color: rgba(33, 37, 41, 0.5);
  91. --bs-tertiary-color-rgb: 33, 37, 41;
  92. --bs-tertiary-bg: #f8f9fa;
  93. --bs-tertiary-bg-rgb: 248, 249, 250;
  94. --bs-body-bg: #fff;
  95. --bs-body-bg-rgb: 255, 255, 255;
  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-bg: #fff3cd;
  103. --bs-border-width: 1px;
  104. --bs-border-style: solid;
  105. --bs-border-color: #dee2e6;
  106. --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  107. --bs-border-radius: 0.375rem;
  108. --bs-border-radius-sm: 0.25rem;
  109. --bs-border-radius-lg: 0.5rem;
  110. --bs-border-radius-xl: 1rem;
  111. --bs-border-radius-2xl: 2rem;
  112. --bs-border-radius-pill: 50rem;
  113. --bs-box-shadow: 0 0.5rem 1rem rgba(var(--bs-body-color-rgb), 0.15);
  114. --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(var(--bs-body-color-rgb), 0.075);
  115. --bs-box-shadow-lg: 0 1rem 3rem rgba(var(--bs-body-color-rgb), 0.175);
  116. --bs-box-shadow-inset: inset 0 1px 2px rgba(var(--bs-body-color-rgb), 0.075);
  117. --bs-emphasis-color: #000;
  118. --bs-form-control-bg: var(--bs-body-bg);
  119. --bs-form-control-disabled-bg: var(--bs-secondary-bg);
  120. --bs-highlight-bg: #fff3cd;
  121. --bs-breakpoint-xs: 0;
  122. --bs-breakpoint-sm: 576px;
  123. --bs-breakpoint-md: 768px;
  124. --bs-breakpoint-lg: 992px;
  125. --bs-breakpoint-xl: 1200px;
  126. --bs-breakpoint-xxl: 1400px;
  127. }
  128. [data-bs-theme=dark] {
  129. --bs-body-color: #adb5bd;
  130. --bs-body-color-rgb: 173, 181, 189;
  131. --bs-body-bg: #212529;
  132. --bs-body-bg-rgb: 33, 37, 41;
  133. --bs-emphasis-color: #f8f9fa;
  134. --bs-emphasis-color-rgb: 248, 249, 250;
  135. --bs-secondary-color: rgba(173, 181, 189, 0.75);
  136. --bs-secondary-color-rgb: 173, 181, 189;
  137. --bs-secondary-bg: #343a40;
  138. --bs-secondary-bg-rgb: 52, 58, 64;
  139. --bs-tertiary-color: rgba(173, 181, 189, 0.5);
  140. --bs-tertiary-color-rgb: 173, 181, 189;
  141. --bs-tertiary-bg: #2b3035;
  142. --bs-tertiary-bg-rgb: 43, 48, 53;
  143. --bs-emphasis-color: #fff;
  144. --bs-primary-text: #6ea8fe;
  145. --bs-secondary-text: #dee2e6;
  146. --bs-success-text: #75b798;
  147. --bs-info-text: #6edff6;
  148. --bs-warning-text: #ffda6a;
  149. --bs-danger-text: #ea868f;
  150. --bs-light-text: #f8f9fa;
  151. --bs-dark-text: #dee2e6;
  152. --bs-primary-bg-subtle: #031633;
  153. --bs-secondary-bg-subtle: #212529;
  154. --bs-success-bg-subtle: #051b11;
  155. --bs-info-bg-subtle: #032830;
  156. --bs-warning-bg-subtle: #332701;
  157. --bs-danger-bg-subtle: #2c0b0e;
  158. --bs-light-bg-subtle: #343a40;
  159. --bs-dark-bg-subtle: #1a1d20;
  160. --bs-primary-border-subtle: #084298;
  161. --bs-secondary-border-subtle: #495057;
  162. --bs-success-border-subtle: #0f5132;
  163. --bs-info-border-subtle: #055160;
  164. --bs-warning-border-subtle: #664d03;
  165. --bs-danger-border-subtle: #842029;
  166. --bs-light-border-subtle: #495057;
  167. --bs-dark-border-subtle: #343a40;
  168. --bs-heading-color: #fff;
  169. --bs-link-color: #6ea8fe;
  170. --bs-link-hover-color: #9ec5fe;
  171. --bs-link-color-rgb: 110, 168, 254;
  172. --bs-link-hover-color-rgb: 158, 197, 254;
  173. --bs-code-color: #e685b5;
  174. --bs-border-color: #495057;
  175. --bs-border-color-translucent: rgba(255, 255, 255, 0.15);
  176. }
  177. *,
  178. *::before,
  179. *::after {
  180. box-sizing: border-box;
  181. }
  182. @media (prefers-reduced-motion: no-preference) {
  183. :root {
  184. scroll-behavior: smooth;
  185. }
  186. }
  187. body {
  188. margin: 0;
  189. font-family: var(--bs-body-font-family);
  190. font-size: var(--bs-body-font-size);
  191. font-weight: var(--bs-body-font-weight);
  192. line-height: var(--bs-body-line-height);
  193. color: var(--bs-body-color);
  194. text-align: var(--bs-body-text-align);
  195. background-color: var(--bs-body-bg);
  196. -webkit-text-size-adjust: 100%;
  197. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  198. }
  199. hr {
  200. margin: 1rem 0;
  201. color: inherit;
  202. border: 0;
  203. border-top: var(--bs-border-width) solid;
  204. opacity: 0.25;
  205. }
  206. h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  207. margin-top: 0;
  208. margin-bottom: 0.5rem;
  209. font-weight: 500;
  210. line-height: 1.2;
  211. color: var(--bs-heading-color, inherit);
  212. }
  213. h1, .h1 {
  214. font-size: calc(1.375rem + 1.5vw);
  215. }
  216. @media (min-width: 1200px) {
  217. h1, .h1 {
  218. font-size: 2.5rem;
  219. }
  220. }
  221. h2, .h2 {
  222. font-size: calc(1.325rem + 0.9vw);
  223. }
  224. @media (min-width: 1200px) {
  225. h2, .h2 {
  226. font-size: 2rem;
  227. }
  228. }
  229. h3, .h3 {
  230. font-size: calc(1.3rem + 0.6vw);
  231. }
  232. @media (min-width: 1200px) {
  233. h3, .h3 {
  234. font-size: 1.75rem;
  235. }
  236. }
  237. h4, .h4 {
  238. font-size: calc(1.275rem + 0.3vw);
  239. }
  240. @media (min-width: 1200px) {
  241. h4, .h4 {
  242. font-size: 1.5rem;
  243. }
  244. }
  245. h5, .h5 {
  246. font-size: 1.25rem;
  247. }
  248. h6, .h6 {
  249. font-size: 1rem;
  250. }
  251. p {
  252. margin-top: 0;
  253. margin-bottom: 1rem;
  254. }
  255. abbr[title] {
  256. -webkit-text-decoration: underline dotted;
  257. text-decoration: underline dotted;
  258. cursor: help;
  259. -webkit-text-decoration-skip-ink: none;
  260. text-decoration-skip-ink: none;
  261. }
  262. address {
  263. margin-bottom: 1rem;
  264. font-style: normal;
  265. line-height: inherit;
  266. }
  267. ol,
  268. ul {
  269. padding-left: 2rem;
  270. }
  271. ol,
  272. ul,
  273. dl {
  274. margin-top: 0;
  275. margin-bottom: 1rem;
  276. }
  277. ol ol,
  278. ul ul,
  279. ol ul,
  280. ul ol {
  281. margin-bottom: 0;
  282. }
  283. dt {
  284. font-weight: 700;
  285. }
  286. dd {
  287. margin-bottom: 0.5rem;
  288. margin-left: 0;
  289. }
  290. blockquote {
  291. margin: 0 0 1rem;
  292. }
  293. b,
  294. strong {
  295. font-weight: bolder;
  296. }
  297. small, .small {
  298. font-size: 0.875em;
  299. }
  300. mark, .mark {
  301. padding: 0.1875em;
  302. background-color: var(--bs-highlight-bg);
  303. }
  304. sub,
  305. sup {
  306. position: relative;
  307. font-size: 0.75em;
  308. line-height: 0;
  309. vertical-align: baseline;
  310. }
  311. sub {
  312. bottom: -0.25em;
  313. }
  314. sup {
  315. top: -0.5em;
  316. }
  317. a {
  318. color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  319. text-decoration: underline;
  320. }
  321. a:hover {
  322. --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
  323. }
  324. a:not([href]):not([class]), a:not([href]):not([class]):hover {
  325. color: inherit;
  326. text-decoration: none;
  327. }
  328. pre,
  329. code,
  330. kbd,
  331. samp {
  332. font-family: var(--bs-font-monospace);
  333. font-size: 1em;
  334. }
  335. pre {
  336. display: block;
  337. margin-top: 0;
  338. margin-bottom: 1rem;
  339. overflow: auto;
  340. font-size: 0.875em;
  341. }
  342. pre code {
  343. font-size: inherit;
  344. color: inherit;
  345. word-break: normal;
  346. }
  347. code {
  348. font-size: 0.875em;
  349. color: var(--bs-code-color);
  350. word-wrap: break-word;
  351. }
  352. a > code {
  353. color: inherit;
  354. }
  355. kbd {
  356. padding: 0.1875rem 0.375rem;
  357. font-size: 0.875em;
  358. color: var(--bs-body-bg);
  359. background-color: var(--bs-body-color);
  360. border-radius: 0.25rem;
  361. }
  362. kbd kbd {
  363. padding: 0;
  364. font-size: 1em;
  365. }
  366. figure {
  367. margin: 0 0 1rem;
  368. }
  369. img,
  370. svg {
  371. vertical-align: middle;
  372. }
  373. table {
  374. caption-side: bottom;
  375. border-collapse: collapse;
  376. }
  377. caption {
  378. padding-top: 0.5rem;
  379. padding-bottom: 0.5rem;
  380. color: var(--bs-secondary-color);
  381. text-align: left;
  382. }
  383. th {
  384. text-align: inherit;
  385. text-align: -webkit-match-parent;
  386. }
  387. thead,
  388. tbody,
  389. tfoot,
  390. tr,
  391. td,
  392. th {
  393. border-color: inherit;
  394. border-style: solid;
  395. border-width: 0;
  396. }
  397. label {
  398. display: inline-block;
  399. }
  400. button {
  401. border-radius: 0;
  402. }
  403. button:focus:not(:focus-visible) {
  404. outline: 0;
  405. }
  406. input,
  407. button,
  408. select,
  409. optgroup,
  410. textarea {
  411. margin: 0;
  412. font-family: inherit;
  413. font-size: inherit;
  414. line-height: inherit;
  415. }
  416. button,
  417. select {
  418. text-transform: none;
  419. }
  420. [role=button] {
  421. cursor: pointer;
  422. }
  423. select {
  424. word-wrap: normal;
  425. }
  426. select:disabled {
  427. opacity: 1;
  428. }
  429. [list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  430. display: none !important;
  431. }
  432. button,
  433. [type=button],
  434. [type=reset],
  435. [type=submit] {
  436. -webkit-appearance: button;
  437. }
  438. button:not(:disabled),
  439. [type=button]:not(:disabled),
  440. [type=reset]:not(:disabled),
  441. [type=submit]:not(:disabled) {
  442. cursor: pointer;
  443. }
  444. ::-moz-focus-inner {
  445. padding: 0;
  446. border-style: none;
  447. }
  448. textarea {
  449. resize: vertical;
  450. }
  451. fieldset {
  452. min-width: 0;
  453. padding: 0;
  454. margin: 0;
  455. border: 0;
  456. }
  457. legend {
  458. float: left;
  459. width: 100%;
  460. padding: 0;
  461. margin-bottom: 0.5rem;
  462. font-size: calc(1.275rem + 0.3vw);
  463. line-height: inherit;
  464. }
  465. @media (min-width: 1200px) {
  466. legend {
  467. font-size: 1.5rem;
  468. }
  469. }
  470. legend + * {
  471. clear: left;
  472. }
  473. ::-webkit-datetime-edit-fields-wrapper,
  474. ::-webkit-datetime-edit-text,
  475. ::-webkit-datetime-edit-minute,
  476. ::-webkit-datetime-edit-hour-field,
  477. ::-webkit-datetime-edit-day-field,
  478. ::-webkit-datetime-edit-month-field,
  479. ::-webkit-datetime-edit-year-field {
  480. padding: 0;
  481. }
  482. ::-webkit-inner-spin-button {
  483. height: auto;
  484. }
  485. [type=search] {
  486. outline-offset: -2px;
  487. -webkit-appearance: textfield;
  488. }
  489. /* rtl:raw:
  490. [type="tel"],
  491. [type="url"],
  492. [type="email"],
  493. [type="number"] {
  494. direction: ltr;
  495. }
  496. */
  497. ::-webkit-search-decoration {
  498. -webkit-appearance: none;
  499. }
  500. ::-webkit-color-swatch-wrapper {
  501. padding: 0;
  502. }
  503. ::-webkit-file-upload-button {
  504. font: inherit;
  505. -webkit-appearance: button;
  506. }
  507. ::file-selector-button {
  508. font: inherit;
  509. -webkit-appearance: button;
  510. }
  511. output {
  512. display: inline-block;
  513. }
  514. iframe {
  515. border: 0;
  516. }
  517. summary {
  518. display: list-item;
  519. cursor: pointer;
  520. }
  521. progress {
  522. vertical-align: baseline;
  523. }
  524. [hidden] {
  525. display: none !important;
  526. }
  527. .lead {
  528. font-size: 1.25rem;
  529. font-weight: 300;
  530. }
  531. .display-1 {
  532. font-size: calc(1.625rem + 4.5vw);
  533. font-weight: 300;
  534. line-height: 1.2;
  535. }
  536. @media (min-width: 1200px) {
  537. .display-1 {
  538. font-size: 5rem;
  539. }
  540. }
  541. .display-2 {
  542. font-size: calc(1.575rem + 3.9vw);
  543. font-weight: 300;
  544. line-height: 1.2;
  545. }
  546. @media (min-width: 1200px) {
  547. .display-2 {
  548. font-size: 4.5rem;
  549. }
  550. }
  551. .display-3 {
  552. font-size: calc(1.525rem + 3.3vw);
  553. font-weight: 300;
  554. line-height: 1.2;
  555. }
  556. @media (min-width: 1200px) {
  557. .display-3 {
  558. font-size: 4rem;
  559. }
  560. }
  561. .display-4 {
  562. font-size: calc(1.475rem + 2.7vw);
  563. font-weight: 300;
  564. line-height: 1.2;
  565. }
  566. @media (min-width: 1200px) {
  567. .display-4 {
  568. font-size: 3.5rem;
  569. }
  570. }
  571. .display-5 {
  572. font-size: calc(1.425rem + 2.1vw);
  573. font-weight: 300;
  574. line-height: 1.2;
  575. }
  576. @media (min-width: 1200px) {
  577. .display-5 {
  578. font-size: 3rem;
  579. }
  580. }
  581. .display-6 {
  582. font-size: calc(1.375rem + 1.5vw);
  583. font-weight: 300;
  584. line-height: 1.2;
  585. }
  586. @media (min-width: 1200px) {
  587. .display-6 {
  588. font-size: 2.5rem;
  589. }
  590. }
  591. .list-unstyled {
  592. padding-left: 0;
  593. list-style: none;
  594. }
  595. .list-inline {
  596. padding-left: 0;
  597. list-style: none;
  598. }
  599. .list-inline-item {
  600. display: inline-block;
  601. }
  602. .list-inline-item:not(:last-child) {
  603. margin-right: 0.5rem;
  604. }
  605. .initialism {
  606. font-size: 0.875em;
  607. text-transform: uppercase;
  608. }
  609. .blockquote {
  610. margin-bottom: 1rem;
  611. font-size: 1.25rem;
  612. }
  613. .blockquote > :last-child {
  614. margin-bottom: 0;
  615. }
  616. .blockquote-footer {
  617. margin-top: -1rem;
  618. margin-bottom: 1rem;
  619. font-size: 0.875em;
  620. color: #6c757d;
  621. }
  622. .blockquote-footer::before {
  623. content: "— ";
  624. }
  625. .img-fluid {
  626. max-width: 100%;
  627. height: auto;
  628. }
  629. .img-thumbnail {
  630. padding: 0.25rem;
  631. background-color: var(--bs-body-bg);
  632. border: var(--bs-border-width) solid var(--bs-border-color);
  633. border-radius: var(--bs-border-radius);
  634. max-width: 100%;
  635. height: auto;
  636. }
  637. .figure {
  638. display: inline-block;
  639. }
  640. .figure-img {
  641. margin-bottom: 0.5rem;
  642. line-height: 1;
  643. }
  644. .figure-caption {
  645. font-size: 0.875em;
  646. color: var(--bs-secondary-color);
  647. }
  648. .container,
  649. .container-fluid,
  650. .container-xxl,
  651. .container-xl,
  652. .container-lg,
  653. .container-md,
  654. .container-sm {
  655. --bs-gutter-x: 1.5rem;
  656. --bs-gutter-y: 0;
  657. width: 100%;
  658. padding-right: calc(var(--bs-gutter-x) * 0.5);
  659. padding-left: calc(var(--bs-gutter-x) * 0.5);
  660. margin-right: auto;
  661. margin-left: auto;
  662. }
  663. @media (min-width: 576px) {
  664. .container-sm, .container {
  665. max-width: 540px;
  666. }
  667. }
  668. @media (min-width: 768px) {
  669. .container-md, .container-sm, .container {
  670. max-width: 720px;
  671. }
  672. }
  673. @media (min-width: 992px) {
  674. .container-lg, .container-md, .container-sm, .container {
  675. max-width: 960px;
  676. }
  677. }
  678. @media (min-width: 1200px) {
  679. .container-xl, .container-lg, .container-md, .container-sm, .container {
  680. max-width: 1140px;
  681. }
  682. }
  683. @media (min-width: 1400px) {
  684. .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
  685. max-width: 1320px;
  686. }
  687. }
  688. .row {
  689. --bs-gutter-x: 1.5rem;
  690. --bs-gutter-y: 0;
  691. display: flex;
  692. flex-wrap: wrap;
  693. margin-top: calc(-1 * var(--bs-gutter-y));
  694. margin-right: calc(-0.5 * var(--bs-gutter-x));
  695. margin-left: calc(-0.5 * var(--bs-gutter-x));
  696. }
  697. .row > * {
  698. flex-shrink: 0;
  699. width: 100%;
  700. max-width: 100%;
  701. padding-right: calc(var(--bs-gutter-x) * 0.5);
  702. padding-left: calc(var(--bs-gutter-x) * 0.5);
  703. margin-top: var(--bs-gutter-y);
  704. }
  705. .col {
  706. flex: 1 0 0%;
  707. }
  708. .row-cols-auto > * {
  709. flex: 0 0 auto;
  710. width: auto;
  711. }
  712. .row-cols-1 > * {
  713. flex: 0 0 auto;
  714. width: 100%;
  715. }
  716. .row-cols-2 > * {
  717. flex: 0 0 auto;
  718. width: 50%;
  719. }
  720. .row-cols-3 > * {
  721. flex: 0 0 auto;
  722. width: 33.3333333333%;
  723. }
  724. .row-cols-4 > * {
  725. flex: 0 0 auto;
  726. width: 25%;
  727. }
  728. .row-cols-5 > * {
  729. flex: 0 0 auto;
  730. width: 20%;
  731. }
  732. .row-cols-6 > * {
  733. flex: 0 0 auto;
  734. width: 16.6666666667%;
  735. }
  736. .col-auto {
  737. flex: 0 0 auto;
  738. width: auto;
  739. }
  740. .col-1 {
  741. flex: 0 0 auto;
  742. width: 8.33333333%;
  743. }
  744. .col-2 {
  745. flex: 0 0 auto;
  746. width: 16.66666667%;
  747. }
  748. .col-3 {
  749. flex: 0 0 auto;
  750. width: 25%;
  751. }
  752. .col-4 {
  753. flex: 0 0 auto;
  754. width: 33.33333333%;
  755. }
  756. .col-5 {
  757. flex: 0 0 auto;
  758. width: 41.66666667%;
  759. }
  760. .col-6 {
  761. flex: 0 0 auto;
  762. width: 50%;
  763. }
  764. .col-7 {
  765. flex: 0 0 auto;
  766. width: 58.33333333%;
  767. }
  768. .col-8 {
  769. flex: 0 0 auto;
  770. width: 66.66666667%;
  771. }
  772. .col-9 {
  773. flex: 0 0 auto;
  774. width: 75%;
  775. }
  776. .col-10 {
  777. flex: 0 0 auto;
  778. width: 83.33333333%;
  779. }
  780. .col-11 {
  781. flex: 0 0 auto;
  782. width: 91.66666667%;
  783. }
  784. .col-12 {
  785. flex: 0 0 auto;
  786. width: 100%;
  787. }
  788. .offset-1 {
  789. margin-left: 8.33333333%;
  790. }
  791. .offset-2 {
  792. margin-left: 16.66666667%;
  793. }
  794. .offset-3 {
  795. margin-left: 25%;
  796. }
  797. .offset-4 {
  798. margin-left: 33.33333333%;
  799. }
  800. .offset-5 {
  801. margin-left: 41.66666667%;
  802. }
  803. .offset-6 {
  804. margin-left: 50%;
  805. }
  806. .offset-7 {
  807. margin-left: 58.33333333%;
  808. }
  809. .offset-8 {
  810. margin-left: 66.66666667%;
  811. }
  812. .offset-9 {
  813. margin-left: 75%;
  814. }
  815. .offset-10 {
  816. margin-left: 83.33333333%;
  817. }
  818. .offset-11 {
  819. margin-left: 91.66666667%;
  820. }
  821. .g-0,
  822. .gx-0 {
  823. --bs-gutter-x: 0;
  824. }
  825. .g-0,
  826. .gy-0 {
  827. --bs-gutter-y: 0;
  828. }
  829. .g-1,
  830. .gx-1 {
  831. --bs-gutter-x: 0.25rem;
  832. }
  833. .g-1,
  834. .gy-1 {
  835. --bs-gutter-y: 0.25rem;
  836. }
  837. .g-2,
  838. .gx-2 {
  839. --bs-gutter-x: 0.5rem;
  840. }
  841. .g-2,
  842. .gy-2 {
  843. --bs-gutter-y: 0.5rem;
  844. }
  845. .g-3,
  846. .gx-3 {
  847. --bs-gutter-x: 1rem;
  848. }
  849. .g-3,
  850. .gy-3 {
  851. --bs-gutter-y: 1rem;
  852. }
  853. .g-4,
  854. .gx-4 {
  855. --bs-gutter-x: 1.5rem;
  856. }
  857. .g-4,
  858. .gy-4 {
  859. --bs-gutter-y: 1.5rem;
  860. }
  861. .g-5,
  862. .gx-5 {
  863. --bs-gutter-x: 3rem;
  864. }
  865. .g-5,
  866. .gy-5 {
  867. --bs-gutter-y: 3rem;
  868. }
  869. @media (min-width: 576px) {
  870. .col-sm {
  871. flex: 1 0 0%;
  872. }
  873. .row-cols-sm-auto > * {
  874. flex: 0 0 auto;
  875. width: auto;
  876. }
  877. .row-cols-sm-1 > * {
  878. flex: 0 0 auto;
  879. width: 100%;
  880. }
  881. .row-cols-sm-2 > * {
  882. flex: 0 0 auto;
  883. width: 50%;
  884. }
  885. .row-cols-sm-3 > * {
  886. flex: 0 0 auto;
  887. width: 33.3333333333%;
  888. }
  889. .row-cols-sm-4 > * {
  890. flex: 0 0 auto;
  891. width: 25%;
  892. }
  893. .row-cols-sm-5 > * {
  894. flex: 0 0 auto;
  895. width: 20%;
  896. }
  897. .row-cols-sm-6 > * {
  898. flex: 0 0 auto;
  899. width: 16.6666666667%;
  900. }
  901. .col-sm-auto {
  902. flex: 0 0 auto;
  903. width: auto;
  904. }
  905. .col-sm-1 {
  906. flex: 0 0 auto;
  907. width: 8.33333333%;
  908. }
  909. .col-sm-2 {
  910. flex: 0 0 auto;
  911. width: 16.66666667%;
  912. }
  913. .col-sm-3 {
  914. flex: 0 0 auto;
  915. width: 25%;
  916. }
  917. .col-sm-4 {
  918. flex: 0 0 auto;
  919. width: 33.33333333%;
  920. }
  921. .col-sm-5 {
  922. flex: 0 0 auto;
  923. width: 41.66666667%;
  924. }
  925. .col-sm-6 {
  926. flex: 0 0 auto;
  927. width: 50%;
  928. }
  929. .col-sm-7 {
  930. flex: 0 0 auto;
  931. width: 58.33333333%;
  932. }
  933. .col-sm-8 {
  934. flex: 0 0 auto;
  935. width: 66.66666667%;
  936. }
  937. .col-sm-9 {
  938. flex: 0 0 auto;
  939. width: 75%;
  940. }
  941. .col-sm-10 {
  942. flex: 0 0 auto;
  943. width: 83.33333333%;
  944. }
  945. .col-sm-11 {
  946. flex: 0 0 auto;
  947. width: 91.66666667%;
  948. }
  949. .col-sm-12 {
  950. flex: 0 0 auto;
  951. width: 100%;
  952. }
  953. .offset-sm-0 {
  954. margin-left: 0;
  955. }
  956. .offset-sm-1 {
  957. margin-left: 8.33333333%;
  958. }
  959. .offset-sm-2 {
  960. margin-left: 16.66666667%;
  961. }
  962. .offset-sm-3 {
  963. margin-left: 25%;
  964. }
  965. .offset-sm-4 {
  966. margin-left: 33.33333333%;
  967. }
  968. .offset-sm-5 {
  969. margin-left: 41.66666667%;
  970. }
  971. .offset-sm-6 {
  972. margin-left: 50%;
  973. }
  974. .offset-sm-7 {
  975. margin-left: 58.33333333%;
  976. }
  977. .offset-sm-8 {
  978. margin-left: 66.66666667%;
  979. }
  980. .offset-sm-9 {
  981. margin-left: 75%;
  982. }
  983. .offset-sm-10 {
  984. margin-left: 83.33333333%;
  985. }
  986. .offset-sm-11 {
  987. margin-left: 91.66666667%;
  988. }
  989. .g-sm-0,
  990. .gx-sm-0 {
  991. --bs-gutter-x: 0;
  992. }
  993. .g-sm-0,
  994. .gy-sm-0 {
  995. --bs-gutter-y: 0;
  996. }
  997. .g-sm-1,
  998. .gx-sm-1 {
  999. --bs-gutter-x: 0.25rem;
  1000. }
  1001. .g-sm-1,
  1002. .gy-sm-1 {
  1003. --bs-gutter-y: 0.25rem;
  1004. }
  1005. .g-sm-2,
  1006. .gx-sm-2 {
  1007. --bs-gutter-x: 0.5rem;
  1008. }
  1009. .g-sm-2,
  1010. .gy-sm-2 {
  1011. --bs-gutter-y: 0.5rem;
  1012. }
  1013. .g-sm-3,
  1014. .gx-sm-3 {
  1015. --bs-gutter-x: 1rem;
  1016. }
  1017. .g-sm-3,
  1018. .gy-sm-3 {
  1019. --bs-gutter-y: 1rem;
  1020. }
  1021. .g-sm-4,
  1022. .gx-sm-4 {
  1023. --bs-gutter-x: 1.5rem;
  1024. }
  1025. .g-sm-4,
  1026. .gy-sm-4 {
  1027. --bs-gutter-y: 1.5rem;
  1028. }
  1029. .g-sm-5,
  1030. .gx-sm-5 {
  1031. --bs-gutter-x: 3rem;
  1032. }
  1033. .g-sm-5,
  1034. .gy-sm-5 {
  1035. --bs-gutter-y: 3rem;
  1036. }
  1037. }
  1038. @media (min-width: 768px) {
  1039. .col-md {
  1040. flex: 1 0 0%;
  1041. }
  1042. .row-cols-md-auto > * {
  1043. flex: 0 0 auto;
  1044. width: auto;
  1045. }
  1046. .row-cols-md-1 > * {
  1047. flex: 0 0 auto;
  1048. width: 100%;
  1049. }
  1050. .row-cols-md-2 > * {
  1051. flex: 0 0 auto;
  1052. width: 50%;
  1053. }
  1054. .row-cols-md-3 > * {
  1055. flex: 0 0 auto;
  1056. width: 33.3333333333%;
  1057. }
  1058. .row-cols-md-4 > * {
  1059. flex: 0 0 auto;
  1060. width: 25%;
  1061. }
  1062. .row-cols-md-5 > * {
  1063. flex: 0 0 auto;
  1064. width: 20%;
  1065. }
  1066. .row-cols-md-6 > * {
  1067. flex: 0 0 auto;
  1068. width: 16.6666666667%;
  1069. }
  1070. .col-md-auto {
  1071. flex: 0 0 auto;
  1072. width: auto;
  1073. }
  1074. .col-md-1 {
  1075. flex: 0 0 auto;
  1076. width: 8.33333333%;
  1077. }
  1078. .col-md-2 {
  1079. flex: 0 0 auto;
  1080. width: 16.66666667%;
  1081. }
  1082. .col-md-3 {
  1083. flex: 0 0 auto;
  1084. width: 25%;
  1085. }
  1086. .col-md-4 {
  1087. flex: 0 0 auto;
  1088. width: 33.33333333%;
  1089. }
  1090. .col-md-5 {
  1091. flex: 0 0 auto;
  1092. width: 41.66666667%;
  1093. }
  1094. .col-md-6 {
  1095. flex: 0 0 auto;
  1096. width: 50%;
  1097. }
  1098. .col-md-7 {
  1099. flex: 0 0 auto;
  1100. width: 58.33333333%;
  1101. }
  1102. .col-md-8 {
  1103. flex: 0 0 auto;
  1104. width: 66.66666667%;
  1105. }
  1106. .col-md-9 {
  1107. flex: 0 0 auto;
  1108. width: 75%;
  1109. }
  1110. .col-md-10 {
  1111. flex: 0 0 auto;
  1112. width: 83.33333333%;
  1113. }
  1114. .col-md-11 {
  1115. flex: 0 0 auto;
  1116. width: 91.66666667%;
  1117. }
  1118. .col-md-12 {
  1119. flex: 0 0 auto;
  1120. width: 100%;
  1121. }
  1122. .offset-md-0 {
  1123. margin-left: 0;
  1124. }
  1125. .offset-md-1 {
  1126. margin-left: 8.33333333%;
  1127. }
  1128. .offset-md-2 {
  1129. margin-left: 16.66666667%;
  1130. }
  1131. .offset-md-3 {
  1132. margin-left: 25%;
  1133. }
  1134. .offset-md-4 {
  1135. margin-left: 33.33333333%;
  1136. }
  1137. .offset-md-5 {
  1138. margin-left: 41.66666667%;
  1139. }
  1140. .offset-md-6 {
  1141. margin-left: 50%;
  1142. }
  1143. .offset-md-7 {
  1144. margin-left: 58.33333333%;
  1145. }
  1146. .offset-md-8 {
  1147. margin-left: 66.66666667%;
  1148. }
  1149. .offset-md-9 {
  1150. margin-left: 75%;
  1151. }
  1152. .offset-md-10 {
  1153. margin-left: 83.33333333%;
  1154. }
  1155. .offset-md-11 {
  1156. margin-left: 91.66666667%;
  1157. }
  1158. .g-md-0,
  1159. .gx-md-0 {
  1160. --bs-gutter-x: 0;
  1161. }
  1162. .g-md-0,
  1163. .gy-md-0 {
  1164. --bs-gutter-y: 0;
  1165. }
  1166. .g-md-1,
  1167. .gx-md-1 {
  1168. --bs-gutter-x: 0.25rem;
  1169. }
  1170. .g-md-1,
  1171. .gy-md-1 {
  1172. --bs-gutter-y: 0.25rem;
  1173. }
  1174. .g-md-2,
  1175. .gx-md-2 {
  1176. --bs-gutter-x: 0.5rem;
  1177. }
  1178. .g-md-2,
  1179. .gy-md-2 {
  1180. --bs-gutter-y: 0.5rem;
  1181. }
  1182. .g-md-3,
  1183. .gx-md-3 {
  1184. --bs-gutter-x: 1rem;
  1185. }
  1186. .g-md-3,
  1187. .gy-md-3 {
  1188. --bs-gutter-y: 1rem;
  1189. }
  1190. .g-md-4,
  1191. .gx-md-4 {
  1192. --bs-gutter-x: 1.5rem;
  1193. }
  1194. .g-md-4,
  1195. .gy-md-4 {
  1196. --bs-gutter-y: 1.5rem;
  1197. }
  1198. .g-md-5,
  1199. .gx-md-5 {
  1200. --bs-gutter-x: 3rem;
  1201. }
  1202. .g-md-5,
  1203. .gy-md-5 {
  1204. --bs-gutter-y: 3rem;
  1205. }
  1206. }
  1207. @media (min-width: 992px) {
  1208. .col-lg {
  1209. flex: 1 0 0%;
  1210. }
  1211. .row-cols-lg-auto > * {
  1212. flex: 0 0 auto;
  1213. width: auto;
  1214. }
  1215. .row-cols-lg-1 > * {
  1216. flex: 0 0 auto;
  1217. width: 100%;
  1218. }
  1219. .row-cols-lg-2 > * {
  1220. flex: 0 0 auto;
  1221. width: 50%;
  1222. }
  1223. .row-cols-lg-3 > * {
  1224. flex: 0 0 auto;
  1225. width: 33.3333333333%;
  1226. }
  1227. .row-cols-lg-4 > * {
  1228. flex: 0 0 auto;
  1229. width: 25%;
  1230. }
  1231. .row-cols-lg-5 > * {
  1232. flex: 0 0 auto;
  1233. width: 20%;
  1234. }
  1235. .row-cols-lg-6 > * {
  1236. flex: 0 0 auto;
  1237. width: 16.6666666667%;
  1238. }
  1239. .col-lg-auto {
  1240. flex: 0 0 auto;
  1241. width: auto;
  1242. }
  1243. .col-lg-1 {
  1244. flex: 0 0 auto;
  1245. width: 8.33333333%;
  1246. }
  1247. .col-lg-2 {
  1248. flex: 0 0 auto;
  1249. width: 16.66666667%;
  1250. }
  1251. .col-lg-3 {
  1252. flex: 0 0 auto;
  1253. width: 25%;
  1254. }
  1255. .col-lg-4 {
  1256. flex: 0 0 auto;
  1257. width: 33.33333333%;
  1258. }
  1259. .col-lg-5 {
  1260. flex: 0 0 auto;
  1261. width: 41.66666667%;
  1262. }
  1263. .col-lg-6 {
  1264. flex: 0 0 auto;
  1265. width: 50%;
  1266. }
  1267. .col-lg-7 {
  1268. flex: 0 0 auto;
  1269. width: 58.33333333%;
  1270. }
  1271. .col-lg-8 {
  1272. flex: 0 0 auto;
  1273. width: 66.66666667%;
  1274. }
  1275. .col-lg-9 {
  1276. flex: 0 0 auto;
  1277. width: 75%;
  1278. }
  1279. .col-lg-10 {
  1280. flex: 0 0 auto;
  1281. width: 83.33333333%;
  1282. }
  1283. .col-lg-11 {
  1284. flex: 0 0 auto;
  1285. width: 91.66666667%;
  1286. }
  1287. .col-lg-12 {
  1288. flex: 0 0 auto;
  1289. width: 100%;
  1290. }
  1291. .offset-lg-0 {
  1292. margin-left: 0;
  1293. }
  1294. .offset-lg-1 {
  1295. margin-left: 8.33333333%;
  1296. }
  1297. .offset-lg-2 {
  1298. margin-left: 16.66666667%;
  1299. }
  1300. .offset-lg-3 {
  1301. margin-left: 25%;
  1302. }
  1303. .offset-lg-4 {
  1304. margin-left: 33.33333333%;
  1305. }
  1306. .offset-lg-5 {
  1307. margin-left: 41.66666667%;
  1308. }
  1309. .offset-lg-6 {
  1310. margin-left: 50%;
  1311. }
  1312. .offset-lg-7 {
  1313. margin-left: 58.33333333%;
  1314. }
  1315. .offset-lg-8 {
  1316. margin-left: 66.66666667%;
  1317. }
  1318. .offset-lg-9 {
  1319. margin-left: 75%;
  1320. }
  1321. .offset-lg-10 {
  1322. margin-left: 83.33333333%;
  1323. }
  1324. .offset-lg-11 {
  1325. margin-left: 91.66666667%;
  1326. }
  1327. .g-lg-0,
  1328. .gx-lg-0 {
  1329. --bs-gutter-x: 0;
  1330. }
  1331. .g-lg-0,
  1332. .gy-lg-0 {
  1333. --bs-gutter-y: 0;
  1334. }
  1335. .g-lg-1,
  1336. .gx-lg-1 {
  1337. --bs-gutter-x: 0.25rem;
  1338. }
  1339. .g-lg-1,
  1340. .gy-lg-1 {
  1341. --bs-gutter-y: 0.25rem;
  1342. }
  1343. .g-lg-2,
  1344. .gx-lg-2 {
  1345. --bs-gutter-x: 0.5rem;
  1346. }
  1347. .g-lg-2,
  1348. .gy-lg-2 {
  1349. --bs-gutter-y: 0.5rem;
  1350. }
  1351. .g-lg-3,
  1352. .gx-lg-3 {
  1353. --bs-gutter-x: 1rem;
  1354. }
  1355. .g-lg-3,
  1356. .gy-lg-3 {
  1357. --bs-gutter-y: 1rem;
  1358. }
  1359. .g-lg-4,
  1360. .gx-lg-4 {
  1361. --bs-gutter-x: 1.5rem;
  1362. }
  1363. .g-lg-4,
  1364. .gy-lg-4 {
  1365. --bs-gutter-y: 1.5rem;
  1366. }
  1367. .g-lg-5,
  1368. .gx-lg-5 {
  1369. --bs-gutter-x: 3rem;
  1370. }
  1371. .g-lg-5,
  1372. .gy-lg-5 {
  1373. --bs-gutter-y: 3rem;
  1374. }
  1375. }
  1376. @media (min-width: 1200px) {
  1377. .col-xl {
  1378. flex: 1 0 0%;
  1379. }
  1380. .row-cols-xl-auto > * {
  1381. flex: 0 0 auto;
  1382. width: auto;
  1383. }
  1384. .row-cols-xl-1 > * {
  1385. flex: 0 0 auto;
  1386. width: 100%;
  1387. }
  1388. .row-cols-xl-2 > * {
  1389. flex: 0 0 auto;
  1390. width: 50%;
  1391. }
  1392. .row-cols-xl-3 > * {
  1393. flex: 0 0 auto;
  1394. width: 33.3333333333%;
  1395. }
  1396. .row-cols-xl-4 > * {
  1397. flex: 0 0 auto;
  1398. width: 25%;
  1399. }
  1400. .row-cols-xl-5 > * {
  1401. flex: 0 0 auto;
  1402. width: 20%;
  1403. }
  1404. .row-cols-xl-6 > * {
  1405. flex: 0 0 auto;
  1406. width: 16.6666666667%;
  1407. }
  1408. .col-xl-auto {
  1409. flex: 0 0 auto;
  1410. width: auto;
  1411. }
  1412. .col-xl-1 {
  1413. flex: 0 0 auto;
  1414. width: 8.33333333%;
  1415. }
  1416. .col-xl-2 {
  1417. flex: 0 0 auto;
  1418. width: 16.66666667%;
  1419. }
  1420. .col-xl-3 {
  1421. flex: 0 0 auto;
  1422. width: 25%;
  1423. }
  1424. .col-xl-4 {
  1425. flex: 0 0 auto;
  1426. width: 33.33333333%;
  1427. }
  1428. .col-xl-5 {
  1429. flex: 0 0 auto;
  1430. width: 41.66666667%;
  1431. }
  1432. .col-xl-6 {
  1433. flex: 0 0 auto;
  1434. width: 50%;
  1435. }
  1436. .col-xl-7 {
  1437. flex: 0 0 auto;
  1438. width: 58.33333333%;
  1439. }
  1440. .col-xl-8 {
  1441. flex: 0 0 auto;
  1442. width: 66.66666667%;
  1443. }
  1444. .col-xl-9 {
  1445. flex: 0 0 auto;
  1446. width: 75%;
  1447. }
  1448. .col-xl-10 {
  1449. flex: 0 0 auto;
  1450. width: 83.33333333%;
  1451. }
  1452. .col-xl-11 {
  1453. flex: 0 0 auto;
  1454. width: 91.66666667%;
  1455. }
  1456. .col-xl-12 {
  1457. flex: 0 0 auto;
  1458. width: 100%;
  1459. }
  1460. .offset-xl-0 {
  1461. margin-left: 0;
  1462. }
  1463. .offset-xl-1 {
  1464. margin-left: 8.33333333%;
  1465. }
  1466. .offset-xl-2 {
  1467. margin-left: 16.66666667%;
  1468. }
  1469. .offset-xl-3 {
  1470. margin-left: 25%;
  1471. }
  1472. .offset-xl-4 {
  1473. margin-left: 33.33333333%;
  1474. }
  1475. .offset-xl-5 {
  1476. margin-left: 41.66666667%;
  1477. }
  1478. .offset-xl-6 {
  1479. margin-left: 50%;
  1480. }
  1481. .offset-xl-7 {
  1482. margin-left: 58.33333333%;
  1483. }
  1484. .offset-xl-8 {
  1485. margin-left: 66.66666667%;
  1486. }
  1487. .offset-xl-9 {
  1488. margin-left: 75%;
  1489. }
  1490. .offset-xl-10 {
  1491. margin-left: 83.33333333%;
  1492. }
  1493. .offset-xl-11 {
  1494. margin-left: 91.66666667%;
  1495. }
  1496. .g-xl-0,
  1497. .gx-xl-0 {
  1498. --bs-gutter-x: 0;
  1499. }
  1500. .g-xl-0,
  1501. .gy-xl-0 {
  1502. --bs-gutter-y: 0;
  1503. }
  1504. .g-xl-1,
  1505. .gx-xl-1 {
  1506. --bs-gutter-x: 0.25rem;
  1507. }
  1508. .g-xl-1,
  1509. .gy-xl-1 {
  1510. --bs-gutter-y: 0.25rem;
  1511. }
  1512. .g-xl-2,
  1513. .gx-xl-2 {
  1514. --bs-gutter-x: 0.5rem;
  1515. }
  1516. .g-xl-2,
  1517. .gy-xl-2 {
  1518. --bs-gutter-y: 0.5rem;
  1519. }
  1520. .g-xl-3,
  1521. .gx-xl-3 {
  1522. --bs-gutter-x: 1rem;
  1523. }
  1524. .g-xl-3,
  1525. .gy-xl-3 {
  1526. --bs-gutter-y: 1rem;
  1527. }
  1528. .g-xl-4,
  1529. .gx-xl-4 {
  1530. --bs-gutter-x: 1.5rem;
  1531. }
  1532. .g-xl-4,
  1533. .gy-xl-4 {
  1534. --bs-gutter-y: 1.5rem;
  1535. }
  1536. .g-xl-5,
  1537. .gx-xl-5 {
  1538. --bs-gutter-x: 3rem;
  1539. }
  1540. .g-xl-5,
  1541. .gy-xl-5 {
  1542. --bs-gutter-y: 3rem;
  1543. }
  1544. }
  1545. @media (min-width: 1400px) {
  1546. .col-xxl {
  1547. flex: 1 0 0%;
  1548. }
  1549. .row-cols-xxl-auto > * {
  1550. flex: 0 0 auto;
  1551. width: auto;
  1552. }
  1553. .row-cols-xxl-1 > * {
  1554. flex: 0 0 auto;
  1555. width: 100%;
  1556. }
  1557. .row-cols-xxl-2 > * {
  1558. flex: 0 0 auto;
  1559. width: 50%;
  1560. }
  1561. .row-cols-xxl-3 > * {
  1562. flex: 0 0 auto;
  1563. width: 33.3333333333%;
  1564. }
  1565. .row-cols-xxl-4 > * {
  1566. flex: 0 0 auto;
  1567. width: 25%;
  1568. }
  1569. .row-cols-xxl-5 > * {
  1570. flex: 0 0 auto;
  1571. width: 20%;
  1572. }
  1573. .row-cols-xxl-6 > * {
  1574. flex: 0 0 auto;
  1575. width: 16.6666666667%;
  1576. }
  1577. .col-xxl-auto {
  1578. flex: 0 0 auto;
  1579. width: auto;
  1580. }
  1581. .col-xxl-1 {
  1582. flex: 0 0 auto;
  1583. width: 8.33333333%;
  1584. }
  1585. .col-xxl-2 {
  1586. flex: 0 0 auto;
  1587. width: 16.66666667%;
  1588. }
  1589. .col-xxl-3 {
  1590. flex: 0 0 auto;
  1591. width: 25%;
  1592. }
  1593. .col-xxl-4 {
  1594. flex: 0 0 auto;
  1595. width: 33.33333333%;
  1596. }
  1597. .col-xxl-5 {
  1598. flex: 0 0 auto;
  1599. width: 41.66666667%;
  1600. }
  1601. .col-xxl-6 {
  1602. flex: 0 0 auto;
  1603. width: 50%;
  1604. }
  1605. .col-xxl-7 {
  1606. flex: 0 0 auto;
  1607. width: 58.33333333%;
  1608. }
  1609. .col-xxl-8 {
  1610. flex: 0 0 auto;
  1611. width: 66.66666667%;
  1612. }
  1613. .col-xxl-9 {
  1614. flex: 0 0 auto;
  1615. width: 75%;
  1616. }
  1617. .col-xxl-10 {
  1618. flex: 0 0 auto;
  1619. width: 83.33333333%;
  1620. }
  1621. .col-xxl-11 {
  1622. flex: 0 0 auto;
  1623. width: 91.66666667%;
  1624. }
  1625. .col-xxl-12 {
  1626. flex: 0 0 auto;
  1627. width: 100%;
  1628. }
  1629. .offset-xxl-0 {
  1630. margin-left: 0;
  1631. }
  1632. .offset-xxl-1 {
  1633. margin-left: 8.33333333%;
  1634. }
  1635. .offset-xxl-2 {
  1636. margin-left: 16.66666667%;
  1637. }
  1638. .offset-xxl-3 {
  1639. margin-left: 25%;
  1640. }
  1641. .offset-xxl-4 {
  1642. margin-left: 33.33333333%;
  1643. }
  1644. .offset-xxl-5 {
  1645. margin-left: 41.66666667%;
  1646. }
  1647. .offset-xxl-6 {
  1648. margin-left: 50%;
  1649. }
  1650. .offset-xxl-7 {
  1651. margin-left: 58.33333333%;
  1652. }
  1653. .offset-xxl-8 {
  1654. margin-left: 66.66666667%;
  1655. }
  1656. .offset-xxl-9 {
  1657. margin-left: 75%;
  1658. }
  1659. .offset-xxl-10 {
  1660. margin-left: 83.33333333%;
  1661. }
  1662. .offset-xxl-11 {
  1663. margin-left: 91.66666667%;
  1664. }
  1665. .g-xxl-0,
  1666. .gx-xxl-0 {
  1667. --bs-gutter-x: 0;
  1668. }
  1669. .g-xxl-0,
  1670. .gy-xxl-0 {
  1671. --bs-gutter-y: 0;
  1672. }
  1673. .g-xxl-1,
  1674. .gx-xxl-1 {
  1675. --bs-gutter-x: 0.25rem;
  1676. }
  1677. .g-xxl-1,
  1678. .gy-xxl-1 {
  1679. --bs-gutter-y: 0.25rem;
  1680. }
  1681. .g-xxl-2,
  1682. .gx-xxl-2 {
  1683. --bs-gutter-x: 0.5rem;
  1684. }
  1685. .g-xxl-2,
  1686. .gy-xxl-2 {
  1687. --bs-gutter-y: 0.5rem;
  1688. }
  1689. .g-xxl-3,
  1690. .gx-xxl-3 {
  1691. --bs-gutter-x: 1rem;
  1692. }
  1693. .g-xxl-3,
  1694. .gy-xxl-3 {
  1695. --bs-gutter-y: 1rem;
  1696. }
  1697. .g-xxl-4,
  1698. .gx-xxl-4 {
  1699. --bs-gutter-x: 1.5rem;
  1700. }
  1701. .g-xxl-4,
  1702. .gy-xxl-4 {
  1703. --bs-gutter-y: 1.5rem;
  1704. }
  1705. .g-xxl-5,
  1706. .gx-xxl-5 {
  1707. --bs-gutter-x: 3rem;
  1708. }
  1709. .g-xxl-5,
  1710. .gy-xxl-5 {
  1711. --bs-gutter-y: 3rem;
  1712. }
  1713. }
  1714. .table {
  1715. --bs-table-color: var(--bs-body-color);
  1716. --bs-table-bg: transparent;
  1717. --bs-table-border-color: var(--bs-border-color);
  1718. --bs-table-accent-bg: transparent;
  1719. --bs-table-striped-color: var(--bs-body-color);
  1720. --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  1721. --bs-table-active-color: var(--bs-body-color);
  1722. --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  1723. --bs-table-hover-color: var(--bs-body-color);
  1724. --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  1725. width: 100%;
  1726. margin-bottom: 1rem;
  1727. color: var(--bs-table-color);
  1728. vertical-align: top;
  1729. border-color: var(--bs-table-border-color);
  1730. }
  1731. .table > :not(caption) > * > * {
  1732. padding: 0.5rem 0.5rem;
  1733. background-color: var(--bs-table-bg);
  1734. border-bottom-width: var(--bs-border-width);
  1735. box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
  1736. }
  1737. .table > tbody {
  1738. vertical-align: inherit;
  1739. }
  1740. .table > thead {
  1741. vertical-align: bottom;
  1742. }
  1743. .table-group-divider {
  1744. border-top: calc(var(--bs-border-width) * 2) solid currentcolor;
  1745. }
  1746. .caption-top {
  1747. caption-side: top;
  1748. }
  1749. .table-sm > :not(caption) > * > * {
  1750. padding: 0.25rem 0.25rem;
  1751. }
  1752. .table-bordered > :not(caption) > * {
  1753. border-width: var(--bs-border-width) 0;
  1754. }
  1755. .table-bordered > :not(caption) > * > * {
  1756. border-width: 0 var(--bs-border-width);
  1757. }
  1758. .table-borderless > :not(caption) > * > * {
  1759. border-bottom-width: 0;
  1760. }
  1761. .table-borderless > :not(:first-child) {
  1762. border-top-width: 0;
  1763. }
  1764. .table-striped > tbody > tr:nth-of-type(odd) > * {
  1765. --bs-table-accent-bg: var(--bs-table-striped-bg);
  1766. color: var(--bs-table-striped-color);
  1767. }
  1768. .table-striped-columns > :not(caption) > tr > :nth-child(even) {
  1769. --bs-table-accent-bg: var(--bs-table-striped-bg);
  1770. color: var(--bs-table-striped-color);
  1771. }
  1772. .table-active {
  1773. --bs-table-accent-bg: var(--bs-table-active-bg);
  1774. color: var(--bs-table-active-color);
  1775. }
  1776. .table-hover > tbody > tr:hover > * {
  1777. --bs-table-accent-bg: var(--bs-table-hover-bg);
  1778. color: var(--bs-table-hover-color);
  1779. }
  1780. .table-primary {
  1781. --bs-table-color: #000;
  1782. --bs-table-bg: #cfe2ff;
  1783. --bs-table-border-color: #bacbe6;
  1784. --bs-table-striped-bg: #c5d7f2;
  1785. --bs-table-striped-color: #000;
  1786. --bs-table-active-bg: #bacbe6;
  1787. --bs-table-active-color: #000;
  1788. --bs-table-hover-bg: #bfd1ec;
  1789. --bs-table-hover-color: #000;
  1790. color: var(--bs-table-color);
  1791. border-color: var(--bs-table-border-color);
  1792. }
  1793. .table-secondary {
  1794. --bs-table-color: #000;
  1795. --bs-table-bg: #e2e3e5;
  1796. --bs-table-border-color: #cbccce;
  1797. --bs-table-striped-bg: #d7d8da;
  1798. --bs-table-striped-color: #000;
  1799. --bs-table-active-bg: #cbccce;
  1800. --bs-table-active-color: #000;
  1801. --bs-table-hover-bg: #d1d2d4;
  1802. --bs-table-hover-color: #000;
  1803. color: var(--bs-table-color);
  1804. border-color: var(--bs-table-border-color);
  1805. }
  1806. .table-success {
  1807. --bs-table-color: #000;
  1808. --bs-table-bg: #d1e7dd;
  1809. --bs-table-border-color: #bcd0c7;
  1810. --bs-table-striped-bg: #c7dbd2;
  1811. --bs-table-striped-color: #000;
  1812. --bs-table-active-bg: #bcd0c7;
  1813. --bs-table-active-color: #000;
  1814. --bs-table-hover-bg: #c1d6cc;
  1815. --bs-table-hover-color: #000;
  1816. color: var(--bs-table-color);
  1817. border-color: var(--bs-table-border-color);
  1818. }
  1819. .table-info {
  1820. --bs-table-color: #000;
  1821. --bs-table-bg: #cff4fc;
  1822. --bs-table-border-color: #badce3;
  1823. --bs-table-striped-bg: #c5e8ef;
  1824. --bs-table-striped-color: #000;
  1825. --bs-table-active-bg: #badce3;
  1826. --bs-table-active-color: #000;
  1827. --bs-table-hover-bg: #bfe2e9;
  1828. --bs-table-hover-color: #000;
  1829. color: var(--bs-table-color);
  1830. border-color: var(--bs-table-border-color);
  1831. }
  1832. .table-warning {
  1833. --bs-table-color: #000;
  1834. --bs-table-bg: #fff3cd;
  1835. --bs-table-border-color: #e6dbb9;
  1836. --bs-table-striped-bg: #f2e7c3;
  1837. --bs-table-striped-color: #000;
  1838. --bs-table-active-bg: #e6dbb9;
  1839. --bs-table-active-color: #000;
  1840. --bs-table-hover-bg: #ece1be;
  1841. --bs-table-hover-color: #000;
  1842. color: var(--bs-table-color);
  1843. border-color: var(--bs-table-border-color);
  1844. }
  1845. .table-danger {
  1846. --bs-table-color: #000;
  1847. --bs-table-bg: #f8d7da;
  1848. --bs-table-border-color: #dfc2c4;
  1849. --bs-table-striped-bg: #eccccf;
  1850. --bs-table-striped-color: #000;
  1851. --bs-table-active-bg: #dfc2c4;
  1852. --bs-table-active-color: #000;
  1853. --bs-table-hover-bg: #e5c7ca;
  1854. --bs-table-hover-color: #000;
  1855. color: var(--bs-table-color);
  1856. border-color: var(--bs-table-border-color);
  1857. }
  1858. .table-light {
  1859. --bs-table-color: #000;
  1860. --bs-table-bg: #f8f9fa;
  1861. --bs-table-border-color: #dfe0e1;
  1862. --bs-table-striped-bg: #ecedee;
  1863. --bs-table-striped-color: #000;
  1864. --bs-table-active-bg: #dfe0e1;
  1865. --bs-table-active-color: #000;
  1866. --bs-table-hover-bg: #e5e6e7;
  1867. --bs-table-hover-color: #000;
  1868. color: var(--bs-table-color);
  1869. border-color: var(--bs-table-border-color);
  1870. }
  1871. .table-dark {
  1872. --bs-table-color: #fff;
  1873. --bs-table-bg: #212529;
  1874. --bs-table-border-color: #373b3e;
  1875. --bs-table-striped-bg: #2c3034;
  1876. --bs-table-striped-color: #fff;
  1877. --bs-table-active-bg: #373b3e;
  1878. --bs-table-active-color: #fff;
  1879. --bs-table-hover-bg: #323539;
  1880. --bs-table-hover-color: #fff;
  1881. color: var(--bs-table-color);
  1882. border-color: var(--bs-table-border-color);
  1883. }
  1884. .table-responsive {
  1885. overflow-x: auto;
  1886. -webkit-overflow-scrolling: touch;
  1887. }
  1888. @media (max-width: 575.98px) {
  1889. .table-responsive-sm {
  1890. overflow-x: auto;
  1891. -webkit-overflow-scrolling: touch;
  1892. }
  1893. }
  1894. @media (max-width: 767.98px) {
  1895. .table-responsive-md {
  1896. overflow-x: auto;
  1897. -webkit-overflow-scrolling: touch;
  1898. }
  1899. }
  1900. @media (max-width: 991.98px) {
  1901. .table-responsive-lg {
  1902. overflow-x: auto;
  1903. -webkit-overflow-scrolling: touch;
  1904. }
  1905. }
  1906. @media (max-width: 1199.98px) {
  1907. .table-responsive-xl {
  1908. overflow-x: auto;
  1909. -webkit-overflow-scrolling: touch;
  1910. }
  1911. }
  1912. @media (max-width: 1399.98px) {
  1913. .table-responsive-xxl {
  1914. overflow-x: auto;
  1915. -webkit-overflow-scrolling: touch;
  1916. }
  1917. }
  1918. .form-label {
  1919. margin-bottom: 0.5rem;
  1920. }
  1921. .col-form-label {
  1922. padding-top: calc(0.375rem + var(--bs-border-width));
  1923. padding-bottom: calc(0.375rem + var(--bs-border-width));
  1924. margin-bottom: 0;
  1925. font-size: inherit;
  1926. line-height: 1.5;
  1927. }
  1928. .col-form-label-lg {
  1929. padding-top: calc(0.5rem + var(--bs-border-width));
  1930. padding-bottom: calc(0.5rem + var(--bs-border-width));
  1931. font-size: 1.25rem;
  1932. }
  1933. .col-form-label-sm {
  1934. padding-top: calc(0.25rem + var(--bs-border-width));
  1935. padding-bottom: calc(0.25rem + var(--bs-border-width));
  1936. font-size: 0.875rem;
  1937. }
  1938. .form-text {
  1939. margin-top: 0.25rem;
  1940. font-size: 0.875em;
  1941. color: var(--bs-secondary-color);
  1942. }
  1943. .form-control {
  1944. display: block;
  1945. width: 100%;
  1946. padding: 0.375rem 0.75rem;
  1947. font-size: 1rem;
  1948. font-weight: 400;
  1949. line-height: 1.5;
  1950. color: var(--bs-body-color);
  1951. background-color: var(--bs-form-control-bg);
  1952. background-clip: padding-box;
  1953. border: var(--bs-border-width) solid var(--bs-border-color);
  1954. -webkit-appearance: none;
  1955. -moz-appearance: none;
  1956. appearance: none;
  1957. border-radius: 0.375rem;
  1958. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  1959. }
  1960. @media (prefers-reduced-motion: reduce) {
  1961. .form-control {
  1962. transition: none;
  1963. }
  1964. }
  1965. .form-control[type=file] {
  1966. overflow: hidden;
  1967. }
  1968. .form-control[type=file]:not(:disabled):not([readonly]) {
  1969. cursor: pointer;
  1970. }
  1971. .form-control:focus {
  1972. color: var(--bs-body-color);
  1973. background-color: var(--bs-form-control-bg);
  1974. border-color: #86b7fe;
  1975. outline: 0;
  1976. box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  1977. }
  1978. .form-control::-webkit-date-and-time-value {
  1979. height: 1.5em;
  1980. }
  1981. .form-control::-webkit-datetime-edit {
  1982. display: block;
  1983. padding: 0;
  1984. }
  1985. .form-control::-moz-placeholder {
  1986. color: var(--bs-secondary-color);
  1987. opacity: 1;
  1988. }
  1989. .form-control::placeholder {
  1990. color: var(--bs-secondary-color);
  1991. opacity: 1;
  1992. }
  1993. .form-control:disabled {
  1994. background-color: var(--bs-form-control-disabled-bg);
  1995. opacity: 1;
  1996. }
  1997. .form-control::-webkit-file-upload-button {
  1998. padding: 0.375rem 0.75rem;
  1999. margin: -0.375rem -0.75rem;
  2000. -webkit-margin-end: 0.75rem;
  2001. margin-inline-end: 0.75rem;
  2002. color: var(--bs-body-color);
  2003. background-color: var(--bs-tertiary-bg);
  2004. pointer-events: none;
  2005. border-color: inherit;
  2006. border-style: solid;
  2007. border-width: 0;
  2008. border-inline-end-width: var(--bs-border-width);
  2009. border-radius: 0;
  2010. -webkit-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;
  2011. 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;
  2012. }
  2013. .form-control::file-selector-button {
  2014. padding: 0.375rem 0.75rem;
  2015. margin: -0.375rem -0.75rem;
  2016. -webkit-margin-end: 0.75rem;
  2017. margin-inline-end: 0.75rem;
  2018. color: var(--bs-body-color);
  2019. background-color: var(--bs-tertiary-bg);
  2020. pointer-events: none;
  2021. border-color: inherit;
  2022. border-style: solid;
  2023. border-width: 0;
  2024. border-inline-end-width: var(--bs-border-width);
  2025. border-radius: 0;
  2026. 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;
  2027. }
  2028. @media (prefers-reduced-motion: reduce) {
  2029. .form-control::-webkit-file-upload-button {
  2030. -webkit-transition: none;
  2031. transition: none;
  2032. }
  2033. .form-control::file-selector-button {
  2034. transition: none;
  2035. }
  2036. }
  2037. .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  2038. background-color: var(--bs-secondary-bg);
  2039. }
  2040. .form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  2041. background-color: var(--bs-secondary-bg);
  2042. }
  2043. .form-control-plaintext {
  2044. display: block;
  2045. width: 100%;
  2046. padding: 0.375rem 0;
  2047. margin-bottom: 0;
  2048. line-height: 1.5;
  2049. color: var(--bs-body-color);
  2050. background-color: transparent;
  2051. border: solid transparent;
  2052. border-width: var(--bs-border-width) 0;
  2053. }
  2054. .form-control-plaintext:focus {
  2055. outline: 0;
  2056. }
  2057. .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  2058. padding-right: 0;
  2059. padding-left: 0;
  2060. }
  2061. .form-control-sm {
  2062. min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
  2063. padding: 0.25rem 0.5rem;
  2064. font-size: 0.875rem;
  2065. border-radius: 0.25rem;
  2066. }
  2067. .form-control-sm::-webkit-file-upload-button {
  2068. padding: 0.25rem 0.5rem;
  2069. margin: -0.25rem -0.5rem;
  2070. -webkit-margin-end: 0.5rem;
  2071. margin-inline-end: 0.5rem;
  2072. }
  2073. .form-control-sm::file-selector-button {
  2074. padding: 0.25rem 0.5rem;
  2075. margin: -0.25rem -0.5rem;
  2076. -webkit-margin-end: 0.5rem;
  2077. margin-inline-end: 0.5rem;
  2078. }
  2079. .form-control-lg {
  2080. min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
  2081. padding: 0.5rem 1rem;
  2082. font-size: 1.25rem;
  2083. border-radius: 0.5rem;
  2084. }
  2085. .form-control-lg::-webkit-file-upload-button {
  2086. padding: 0.5rem 1rem;
  2087. margin: -0.5rem -1rem;
  2088. -webkit-margin-end: 1rem;
  2089. margin-inline-end: 1rem;
  2090. }
  2091. .form-control-lg::file-selector-button {
  2092. padding: 0.5rem 1rem;
  2093. margin: -0.5rem -1rem;
  2094. -webkit-margin-end: 1rem;
  2095. margin-inline-end: 1rem;
  2096. }
  2097. textarea.form-control {
  2098. min-height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));
  2099. }
  2100. textarea.form-control-sm {
  2101. min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
  2102. }
  2103. textarea.form-control-lg {
  2104. min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
  2105. }
  2106. .form-control-color {
  2107. width: 3rem;
  2108. height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));
  2109. padding: 0.375rem;
  2110. }
  2111. .form-control-color:not(:disabled):not([readonly]) {
  2112. cursor: pointer;
  2113. }
  2114. .form-control-color::-moz-color-swatch {
  2115. border: 0 !important;
  2116. border-radius: 0.375rem;
  2117. }
  2118. .form-control-color::-webkit-color-swatch {
  2119. border-radius: 0.375rem;
  2120. }
  2121. .form-control-color.form-control-sm {
  2122. height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
  2123. }
  2124. .form-control-color.form-control-lg {
  2125. height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
  2126. }
  2127. .form-select {
  2128. --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");
  2129. display: block;
  2130. width: 100%;
  2131. padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  2132. -moz-padding-start: calc(0.75rem - 3px);
  2133. font-size: 1rem;
  2134. font-weight: 400;
  2135. line-height: 1.5;
  2136. color: var(--bs-body-color);
  2137. background-color: var(--bs-form-control-bg);
  2138. background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  2139. background-repeat: no-repeat;
  2140. background-position: right 0.75rem center;
  2141. background-size: 16px 12px;
  2142. border: var(--bs-border-width) solid var(--bs-border-color);
  2143. border-radius: 0.375rem;
  2144. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2145. -webkit-appearance: none;
  2146. -moz-appearance: none;
  2147. appearance: none;
  2148. }
  2149. @media (prefers-reduced-motion: reduce) {
  2150. .form-select {
  2151. transition: none;
  2152. }
  2153. }
  2154. .form-select:focus {
  2155. border-color: #86b7fe;
  2156. outline: 0;
  2157. box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  2158. }
  2159. .form-select[multiple], .form-select[size]:not([size="1"]) {
  2160. padding-right: 0.75rem;
  2161. background-image: none;
  2162. }
  2163. .form-select:disabled {
  2164. background-color: var(--bs-form-control-disabled-bg);
  2165. }
  2166. .form-select:-moz-focusring {
  2167. color: transparent;
  2168. text-shadow: 0 0 0 var(--bs-body-color);
  2169. }
  2170. .form-select-sm {
  2171. padding-top: 0.25rem;
  2172. padding-bottom: 0.25rem;
  2173. padding-left: 0.5rem;
  2174. font-size: 0.875rem;
  2175. border-radius: 0.25rem;
  2176. }
  2177. .form-select-lg {
  2178. padding-top: 0.5rem;
  2179. padding-bottom: 0.5rem;
  2180. padding-left: 1rem;
  2181. font-size: 1.25rem;
  2182. border-radius: 0.5rem;
  2183. }
  2184. [data-bs-theme=dark] .form-select {
  2185. --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='%23adb5bd' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  2186. }
  2187. .form-check {
  2188. display: block;
  2189. min-height: 1.5rem;
  2190. padding-left: 1.5em;
  2191. margin-bottom: 0.125rem;
  2192. }
  2193. .form-check .form-check-input {
  2194. float: left;
  2195. margin-left: -1.5em;
  2196. }
  2197. .form-check-reverse {
  2198. padding-right: 1.5em;
  2199. padding-left: 0;
  2200. text-align: right;
  2201. }
  2202. .form-check-reverse .form-check-input {
  2203. float: right;
  2204. margin-right: -1.5em;
  2205. margin-left: 0;
  2206. }
  2207. .form-check-input {
  2208. --bs-form-check-bg: var(--bs-form-control-bg);
  2209. width: 1em;
  2210. height: 1em;
  2211. margin-top: 0.25em;
  2212. vertical-align: top;
  2213. background-color: var(--bs-form-check-bg);
  2214. background-image: var(--bs-form-check-bg-image);
  2215. background-repeat: no-repeat;
  2216. background-position: center;
  2217. background-size: contain;
  2218. border: var(--bs-border-width) solid var(--bs-border-color);
  2219. -webkit-appearance: none;
  2220. -moz-appearance: none;
  2221. appearance: none;
  2222. -webkit-print-color-adjust: exact;
  2223. color-adjust: exact;
  2224. print-color-adjust: exact;
  2225. }
  2226. .form-check-input[type=checkbox] {
  2227. border-radius: 0.25em;
  2228. }
  2229. .form-check-input[type=radio] {
  2230. border-radius: 50%;
  2231. }
  2232. .form-check-input:active {
  2233. filter: brightness(90%);
  2234. }
  2235. .form-check-input:focus {
  2236. border-color: #86b7fe;
  2237. outline: 0;
  2238. box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  2239. }
  2240. .form-check-input:checked {
  2241. background-color: #0d6efd;
  2242. border-color: #0d6efd;
  2243. }
  2244. .form-check-input:checked[type=checkbox] {
  2245. --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");
  2246. }
  2247. .form-check-input:checked[type=radio] {
  2248. --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");
  2249. }
  2250. .form-check-input[type=checkbox]:indeterminate {
  2251. background-color: #0d6efd;
  2252. border-color: #0d6efd;
  2253. --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");
  2254. }
  2255. .form-check-input:disabled {
  2256. pointer-events: none;
  2257. filter: none;
  2258. opacity: 0.5;
  2259. }
  2260. .form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  2261. cursor: default;
  2262. opacity: 0.5;
  2263. }
  2264. .form-switch {
  2265. padding-left: 2.5em;
  2266. }
  2267. .form-switch .form-check-input {
  2268. --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");
  2269. width: 2em;
  2270. margin-left: -2.5em;
  2271. background-image: var(--bs-form-switch-bg);
  2272. background-position: left center;
  2273. border-radius: 2em;
  2274. transition: background-position 0.15s ease-in-out;
  2275. }
  2276. @media (prefers-reduced-motion: reduce) {
  2277. .form-switch .form-check-input {
  2278. transition: none;
  2279. }
  2280. }
  2281. .form-switch .form-check-input:focus {
  2282. --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");
  2283. }
  2284. .form-switch .form-check-input:checked {
  2285. background-position: right center;
  2286. --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");
  2287. }
  2288. .form-switch.form-check-reverse {
  2289. padding-right: 2.5em;
  2290. padding-left: 0;
  2291. }
  2292. .form-switch.form-check-reverse .form-check-input {
  2293. margin-right: -2.5em;
  2294. margin-left: 0;
  2295. }
  2296. .form-check-inline {
  2297. display: inline-block;
  2298. margin-right: 1rem;
  2299. }
  2300. .btn-check {
  2301. position: absolute;
  2302. clip: rect(0, 0, 0, 0);
  2303. pointer-events: none;
  2304. }
  2305. .btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  2306. pointer-events: none;
  2307. filter: none;
  2308. opacity: 0.65;
  2309. }
  2310. [data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus) {
  2311. --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");
  2312. }
  2313. .form-range {
  2314. width: 100%;
  2315. height: 1.5rem;
  2316. padding: 0;
  2317. background-color: transparent;
  2318. -webkit-appearance: none;
  2319. -moz-appearance: none;
  2320. appearance: none;
  2321. }
  2322. .form-range:focus {
  2323. outline: 0;
  2324. }
  2325. .form-range:focus::-webkit-slider-thumb {
  2326. box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  2327. }
  2328. .form-range:focus::-moz-range-thumb {
  2329. box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  2330. }
  2331. .form-range::-moz-focus-outer {
  2332. border: 0;
  2333. }
  2334. .form-range::-webkit-slider-thumb {
  2335. width: 1rem;
  2336. height: 1rem;
  2337. margin-top: -0.25rem;
  2338. background-color: #0d6efd;
  2339. border: 0;
  2340. border-radius: 1rem;
  2341. -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2342. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2343. -webkit-appearance: none;
  2344. appearance: none;
  2345. }
  2346. @media (prefers-reduced-motion: reduce) {
  2347. .form-range::-webkit-slider-thumb {
  2348. -webkit-transition: none;
  2349. transition: none;
  2350. }
  2351. }
  2352. .form-range::-webkit-slider-thumb:active {
  2353. background-color: #b6d4fe;
  2354. }
  2355. .form-range::-webkit-slider-runnable-track {
  2356. width: 100%;
  2357. height: 0.5rem;
  2358. color: transparent;
  2359. cursor: pointer;
  2360. background-color: var(--bs-tertiary-bg);
  2361. border-color: transparent;
  2362. border-radius: 1rem;
  2363. }
  2364. .form-range::-moz-range-thumb {
  2365. width: 1rem;
  2366. height: 1rem;
  2367. background-color: #0d6efd;
  2368. border: 0;
  2369. border-radius: 1rem;
  2370. -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2371. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2372. -moz-appearance: none;
  2373. appearance: none;
  2374. }
  2375. @media (prefers-reduced-motion: reduce) {
  2376. .form-range::-moz-range-thumb {
  2377. -moz-transition: none;
  2378. transition: none;
  2379. }
  2380. }
  2381. .form-range::-moz-range-thumb:active {
  2382. background-color: #b6d4fe;
  2383. }
  2384. .form-range::-moz-range-track {
  2385. width: 100%;
  2386. height: 0.5rem;
  2387. color: transparent;
  2388. cursor: pointer;
  2389. background-color: var(--bs-tertiary-bg);
  2390. border-color: transparent;
  2391. border-radius: 1rem;
  2392. }
  2393. .form-range:disabled {
  2394. pointer-events: none;
  2395. }
  2396. .form-range:disabled::-webkit-slider-thumb {
  2397. background-color: var(--bs-secondary-color);
  2398. }
  2399. .form-range:disabled::-moz-range-thumb {
  2400. background-color: var(--bs-secondary-color);
  2401. }
  2402. .form-floating {
  2403. position: relative;
  2404. }
  2405. .form-floating::before:not(.form-control:disabled) {
  2406. position: absolute;
  2407. top: var(--bs-border-width);
  2408. left: var(--bs-border-width);
  2409. width: calc(100% - (calc(calc(0.375em + 0.1875rem) + calc(0.75em + 0.375rem))));
  2410. height: 1.875em;
  2411. content: "";
  2412. background-color: var(--bs-form-control-bg);
  2413. border-radius: 0.375rem;
  2414. }
  2415. .form-floating > .form-control,
  2416. .form-floating > .form-control-plaintext,
  2417. .form-floating > .form-select {
  2418. height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  2419. line-height: 1.25;
  2420. }
  2421. .form-floating > label {
  2422. position: absolute;
  2423. top: 0;
  2424. left: 0;
  2425. width: 100%;
  2426. height: 100%;
  2427. padding: 1rem 0.75rem;
  2428. overflow: hidden;
  2429. text-align: start;
  2430. text-overflow: ellipsis;
  2431. white-space: nowrap;
  2432. pointer-events: none;
  2433. border: var(--bs-border-width) solid transparent;
  2434. transform-origin: 0 0;
  2435. transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  2436. }
  2437. @media (prefers-reduced-motion: reduce) {
  2438. .form-floating > label {
  2439. transition: none;
  2440. }
  2441. }
  2442. .form-floating > .form-control,
  2443. .form-floating > .form-control-plaintext {
  2444. padding: 1rem 0.75rem;
  2445. }
  2446. .form-floating > .form-control::-moz-placeholder, .form-floating > .form-control-plaintext::-moz-placeholder {
  2447. color: transparent;
  2448. }
  2449. .form-floating > .form-control::placeholder,
  2450. .form-floating > .form-control-plaintext::placeholder {
  2451. color: transparent;
  2452. }
  2453. .form-floating > .form-control:not(:-moz-placeholder-shown), .form-floating > .form-control-plaintext:not(:-moz-placeholder-shown) {
  2454. padding-top: 1.625rem;
  2455. padding-bottom: 0.625rem;
  2456. }
  2457. .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown),
  2458. .form-floating > .form-control-plaintext:focus,
  2459. .form-floating > .form-control-plaintext:not(:placeholder-shown) {
  2460. padding-top: 1.625rem;
  2461. padding-bottom: 0.625rem;
  2462. }
  2463. .form-floating > .form-control:-webkit-autofill,
  2464. .form-floating > .form-control-plaintext:-webkit-autofill {
  2465. padding-top: 1.625rem;
  2466. padding-bottom: 0.625rem;
  2467. }
  2468. .form-floating > .form-select {
  2469. padding-top: 1.625rem;
  2470. padding-bottom: 0.625rem;
  2471. }
  2472. .form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  2473. opacity: 0.65;
  2474. transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  2475. }
  2476. .form-floating > .form-control:focus ~ label,
  2477. .form-floating > .form-control:not(:placeholder-shown) ~ label,
  2478. .form-floating > .form-control-plaintext ~ label,
  2479. .form-floating > .form-select ~ label {
  2480. opacity: 0.65;
  2481. transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  2482. }
  2483. .form-floating > .form-control:-webkit-autofill ~ label {
  2484. opacity: 0.65;
  2485. transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  2486. }
  2487. .form-floating > .form-control-plaintext ~ label {
  2488. border-width: var(--bs-border-width) 0;
  2489. }
  2490. .form-floating > .form-control:disabled ~ label {
  2491. color: #6c757d;
  2492. }
  2493. .input-group {
  2494. position: relative;
  2495. display: flex;
  2496. flex-wrap: wrap;
  2497. align-items: stretch;
  2498. width: 100%;
  2499. }
  2500. .input-group > .form-control,
  2501. .input-group > .form-select,
  2502. .input-group > .form-floating {
  2503. position: relative;
  2504. flex: 1 1 auto;
  2505. width: 1%;
  2506. min-width: 0;
  2507. }
  2508. .input-group > .form-control:focus,
  2509. .input-group > .form-select:focus,
  2510. .input-group > .form-floating:focus-within {
  2511. z-index: 5;
  2512. }
  2513. .input-group .btn {
  2514. position: relative;
  2515. z-index: 2;
  2516. }
  2517. .input-group .btn:focus {
  2518. z-index: 5;
  2519. }
  2520. .input-group-text {
  2521. display: flex;
  2522. align-items: center;
  2523. padding: 0.375rem 0.75rem;
  2524. font-size: 1rem;
  2525. font-weight: 400;
  2526. line-height: 1.5;
  2527. color: var(--bs-body-color);
  2528. text-align: center;
  2529. white-space: nowrap;
  2530. background-color: var(--bs-tertiary-bg);
  2531. border: var(--bs-border-width) solid var(--bs-border-color);
  2532. border-radius: 0.375rem;
  2533. }
  2534. .input-group-lg > .form-control,
  2535. .input-group-lg > .form-select,
  2536. .input-group-lg > .input-group-text,
  2537. .input-group-lg > .btn {
  2538. padding: 0.5rem 1rem;
  2539. font-size: 1.25rem;
  2540. border-radius: 0.5rem;
  2541. }
  2542. .input-group-sm > .form-control,
  2543. .input-group-sm > .form-select,
  2544. .input-group-sm > .input-group-text,
  2545. .input-group-sm > .btn {
  2546. padding: 0.25rem 0.5rem;
  2547. font-size: 0.875rem;
  2548. border-radius: 0.25rem;
  2549. }
  2550. .input-group-lg > .form-select,
  2551. .input-group-sm > .form-select {
  2552. padding-right: 3rem;
  2553. }
  2554. .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
  2555. .input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3),
  2556. .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control,
  2557. .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select {
  2558. border-top-right-radius: 0;
  2559. border-bottom-right-radius: 0;
  2560. }
  2561. .input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
  2562. .input-group.has-validation > .dropdown-toggle:nth-last-child(n+4),
  2563. .input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-control,
  2564. .input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-select {
  2565. border-top-right-radius: 0;
  2566. border-bottom-right-radius: 0;
  2567. }
  2568. .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  2569. margin-left: calc(var(--bs-border-width) * -1);
  2570. border-top-left-radius: 0;
  2571. border-bottom-left-radius: 0;
  2572. }
  2573. .input-group > .form-floating:not(:first-child) > .form-control,
  2574. .input-group > .form-floating:not(:first-child) > .form-select {
  2575. border-top-left-radius: 0;
  2576. border-bottom-left-radius: 0;
  2577. }
  2578. .valid-feedback {
  2579. display: none;
  2580. width: 100%;
  2581. margin-top: 0.25rem;
  2582. font-size: 0.875em;
  2583. color: var(--bs-success-text);
  2584. }
  2585. .valid-tooltip {
  2586. position: absolute;
  2587. top: 100%;
  2588. z-index: 5;
  2589. display: none;
  2590. max-width: 100%;
  2591. padding: 0.25rem 0.5rem;
  2592. margin-top: 0.1rem;
  2593. font-size: 0.875rem;
  2594. color: #fff;
  2595. background-color: var(--bs-success);
  2596. border-radius: var(--bs-border-radius);
  2597. }
  2598. .was-validated :valid ~ .valid-feedback,
  2599. .was-validated :valid ~ .valid-tooltip,
  2600. .is-valid ~ .valid-feedback,
  2601. .is-valid ~ .valid-tooltip {
  2602. display: block;
  2603. }
  2604. .was-validated .form-control:valid, .form-control.is-valid {
  2605. border-color: var(--bs-success);
  2606. padding-right: calc(1.5em + 0.75rem);
  2607. 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");
  2608. background-repeat: no-repeat;
  2609. background-position: right calc(0.375em + 0.1875rem) center;
  2610. background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2611. }
  2612. .was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  2613. border-color: var(--bs-success);
  2614. box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
  2615. }
  2616. .was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  2617. padding-right: calc(1.5em + 0.75rem);
  2618. background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
  2619. }
  2620. .was-validated .form-select:valid, .form-select.is-valid {
  2621. border-color: var(--bs-success);
  2622. }
  2623. .was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
  2624. --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");
  2625. padding-right: 4.125rem;
  2626. background-position: right 0.75rem center, center right 2.25rem;
  2627. background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2628. }
  2629. .was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  2630. border-color: var(--bs-success);
  2631. box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
  2632. }
  2633. .was-validated .form-control-color:valid, .form-control-color.is-valid {
  2634. width: calc(3rem + calc(1.5em + 0.75rem));
  2635. }
  2636. .was-validated .form-check-input:valid, .form-check-input.is-valid {
  2637. border-color: var(--bs-success);
  2638. }
  2639. .was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  2640. background-color: var(--bs-success-text);
  2641. }
  2642. .was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  2643. box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
  2644. }
  2645. .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  2646. color: var(--bs-success-text);
  2647. }
  2648. .form-check-inline .form-check-input ~ .valid-feedback {
  2649. margin-left: 0.5em;
  2650. }
  2651. .was-validated .input-group > .form-control:not(:focus):valid, .input-group > .form-control:not(:focus).is-valid,
  2652. .was-validated .input-group > .form-select:not(:focus):valid,
  2653. .input-group > .form-select:not(:focus).is-valid,
  2654. .was-validated .input-group > .form-floating:not(:focus-within):valid,
  2655. .input-group > .form-floating:not(:focus-within).is-valid {
  2656. z-index: 3;
  2657. }
  2658. .invalid-feedback {
  2659. display: none;
  2660. width: 100%;
  2661. margin-top: 0.25rem;
  2662. font-size: 0.875em;
  2663. color: var(--bs-danger-text);
  2664. }
  2665. .invalid-tooltip {
  2666. position: absolute;
  2667. top: 100%;
  2668. z-index: 5;
  2669. display: none;
  2670. max-width: 100%;
  2671. padding: 0.25rem 0.5rem;
  2672. margin-top: 0.1rem;
  2673. font-size: 0.875rem;
  2674. color: #fff;
  2675. background-color: var(--bs-danger);
  2676. border-radius: var(--bs-border-radius);
  2677. }
  2678. .was-validated :invalid ~ .invalid-feedback,
  2679. .was-validated :invalid ~ .invalid-tooltip,
  2680. .is-invalid ~ .invalid-feedback,
  2681. .is-invalid ~ .invalid-tooltip {
  2682. display: block;
  2683. }
  2684. .was-validated .form-control:invalid, .form-control.is-invalid {
  2685. border-color: var(--bs-danger);
  2686. padding-right: calc(1.5em + 0.75rem);
  2687. 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");
  2688. background-repeat: no-repeat;
  2689. background-position: right calc(0.375em + 0.1875rem) center;
  2690. background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2691. }
  2692. .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  2693. border-color: var(--bs-danger);
  2694. box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
  2695. }
  2696. .was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  2697. padding-right: calc(1.5em + 0.75rem);
  2698. background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
  2699. }
  2700. .was-validated .form-select:invalid, .form-select.is-invalid {
  2701. border-color: var(--bs-danger);
  2702. }
  2703. .was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
  2704. --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");
  2705. padding-right: 4.125rem;
  2706. background-position: right 0.75rem center, center right 2.25rem;
  2707. background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2708. }
  2709. .was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  2710. border-color: var(--bs-danger);
  2711. box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
  2712. }
  2713. .was-validated .form-control-color:invalid, .form-control-color.is-invalid {
  2714. width: calc(3rem + calc(1.5em + 0.75rem));
  2715. }
  2716. .was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  2717. border-color: var(--bs-danger);
  2718. }
  2719. .was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  2720. background-color: var(--bs-danger-text);
  2721. }
  2722. .was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  2723. box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
  2724. }
  2725. .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  2726. color: var(--bs-danger-text);
  2727. }
  2728. .form-check-inline .form-check-input ~ .invalid-feedback {
  2729. margin-left: 0.5em;
  2730. }
  2731. .was-validated .input-group > .form-control:not(:focus):invalid, .input-group > .form-control:not(:focus).is-invalid,
  2732. .was-validated .input-group > .form-select:not(:focus):invalid,
  2733. .input-group > .form-select:not(:focus).is-invalid,
  2734. .was-validated .input-group > .form-floating:not(:focus-within):invalid,
  2735. .input-group > .form-floating:not(:focus-within).is-invalid {
  2736. z-index: 4;
  2737. }
  2738. .btn {
  2739. --bs-btn-padding-x: 0.75rem;
  2740. --bs-btn-padding-y: 0.375rem;
  2741. --bs-btn-font-family: ;
  2742. --bs-btn-font-size: 1rem;
  2743. --bs-btn-font-weight: 400;
  2744. --bs-btn-line-height: 1.5;
  2745. --bs-btn-color: #212529;
  2746. --bs-btn-bg: transparent;
  2747. --bs-btn-border-width: var(--bs-border-width);
  2748. --bs-btn-border-color: transparent;
  2749. --bs-btn-border-radius: 0.375rem;
  2750. --bs-btn-hover-border-color: transparent;
  2751. --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  2752. --bs-btn-disabled-opacity: 0.65;
  2753. --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
  2754. display: inline-block;
  2755. padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  2756. font-family: var(--bs-btn-font-family);
  2757. font-size: var(--bs-btn-font-size);
  2758. font-weight: var(--bs-btn-font-weight);
  2759. line-height: var(--bs-btn-line-height);
  2760. color: var(--bs-btn-color);
  2761. text-align: center;
  2762. text-decoration: none;
  2763. vertical-align: middle;
  2764. cursor: pointer;
  2765. -webkit-user-select: none;
  2766. -moz-user-select: none;
  2767. user-select: none;
  2768. border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  2769. border-radius: var(--bs-btn-border-radius);
  2770. background-color: var(--bs-btn-bg);
  2771. 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;
  2772. }
  2773. @media (prefers-reduced-motion: reduce) {
  2774. .btn {
  2775. transition: none;
  2776. }
  2777. }
  2778. .btn:hover {
  2779. color: var(--bs-btn-hover-color);
  2780. background-color: var(--bs-btn-hover-bg);
  2781. border-color: var(--bs-btn-hover-border-color);
  2782. }
  2783. .btn-check + .btn:hover {
  2784. color: var(--bs-btn-color);
  2785. background-color: var(--bs-btn-bg);
  2786. border-color: var(--bs-btn-border-color);
  2787. }
  2788. .btn:focus-visible {
  2789. color: var(--bs-btn-hover-color);
  2790. background-color: var(--bs-btn-hover-bg);
  2791. border-color: var(--bs-btn-hover-border-color);
  2792. outline: 0;
  2793. box-shadow: var(--bs-btn-focus-box-shadow);
  2794. }
  2795. .btn-check:focus-visible + .btn {
  2796. border-color: var(--bs-btn-hover-border-color);
  2797. outline: 0;
  2798. box-shadow: var(--bs-btn-focus-box-shadow);
  2799. }
  2800. .btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
  2801. color: var(--bs-btn-active-color);
  2802. background-color: var(--bs-btn-active-bg);
  2803. border-color: var(--bs-btn-active-border-color);
  2804. }
  2805. .btn-check:checked + .btn:focus-visible, :not(.btn-check) + .btn:active:focus-visible, .btn:first-child:active:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible {
  2806. box-shadow: var(--bs-btn-focus-box-shadow);
  2807. }
  2808. .btn:disabled, .btn.disabled, fieldset:disabled .btn {
  2809. color: var(--bs-btn-disabled-color);
  2810. pointer-events: none;
  2811. background-color: var(--bs-btn-disabled-bg);
  2812. border-color: var(--bs-btn-disabled-border-color);
  2813. opacity: var(--bs-btn-disabled-opacity);
  2814. }
  2815. .btn-primary {
  2816. --bs-btn-color: #fff;
  2817. --bs-btn-bg: #0d6efd;
  2818. --bs-btn-border-color: #0d6efd;
  2819. --bs-btn-hover-color: #fff;
  2820. --bs-btn-hover-bg: #0b5ed7;
  2821. --bs-btn-hover-border-color: #0a58ca;
  2822. --bs-btn-focus-shadow-rgb: 49, 132, 253;
  2823. --bs-btn-active-color: #fff;
  2824. --bs-btn-active-bg: #0a58ca;
  2825. --bs-btn-active-border-color: #0a53be;
  2826. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2827. --bs-btn-disabled-color: #fff;
  2828. --bs-btn-disabled-bg: #0d6efd;
  2829. --bs-btn-disabled-border-color: #0d6efd;
  2830. }
  2831. .btn-secondary {
  2832. --bs-btn-color: #fff;
  2833. --bs-btn-bg: #6c757d;
  2834. --bs-btn-border-color: #6c757d;
  2835. --bs-btn-hover-color: #fff;
  2836. --bs-btn-hover-bg: #5c636a;
  2837. --bs-btn-hover-border-color: #565e64;
  2838. --bs-btn-focus-shadow-rgb: 130, 138, 145;
  2839. --bs-btn-active-color: #fff;
  2840. --bs-btn-active-bg: #565e64;
  2841. --bs-btn-active-border-color: #51585e;
  2842. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2843. --bs-btn-disabled-color: #fff;
  2844. --bs-btn-disabled-bg: #6c757d;
  2845. --bs-btn-disabled-border-color: #6c757d;
  2846. }
  2847. .btn-success {
  2848. --bs-btn-color: #fff;
  2849. --bs-btn-bg: #198754;
  2850. --bs-btn-border-color: #198754;
  2851. --bs-btn-hover-color: #fff;
  2852. --bs-btn-hover-bg: #157347;
  2853. --bs-btn-hover-border-color: #146c43;
  2854. --bs-btn-focus-shadow-rgb: 60, 153, 110;
  2855. --bs-btn-active-color: #fff;
  2856. --bs-btn-active-bg: #146c43;
  2857. --bs-btn-active-border-color: #13653f;
  2858. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2859. --bs-btn-disabled-color: #fff;
  2860. --bs-btn-disabled-bg: #198754;
  2861. --bs-btn-disabled-border-color: #198754;
  2862. }
  2863. .btn-info {
  2864. --bs-btn-color: #000;
  2865. --bs-btn-bg: #0dcaf0;
  2866. --bs-btn-border-color: #0dcaf0;
  2867. --bs-btn-hover-color: #000;
  2868. --bs-btn-hover-bg: #31d2f2;
  2869. --bs-btn-hover-border-color: #25cff2;
  2870. --bs-btn-focus-shadow-rgb: 11, 172, 204;
  2871. --bs-btn-active-color: #000;
  2872. --bs-btn-active-bg: #3dd5f3;
  2873. --bs-btn-active-border-color: #25cff2;
  2874. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2875. --bs-btn-disabled-color: #000;
  2876. --bs-btn-disabled-bg: #0dcaf0;
  2877. --bs-btn-disabled-border-color: #0dcaf0;
  2878. }
  2879. .btn-warning {
  2880. --bs-btn-color: #000;
  2881. --bs-btn-bg: #ffc107;
  2882. --bs-btn-border-color: #ffc107;
  2883. --bs-btn-hover-color: #000;
  2884. --bs-btn-hover-bg: #ffca2c;
  2885. --bs-btn-hover-border-color: #ffc720;
  2886. --bs-btn-focus-shadow-rgb: 217, 164, 6;
  2887. --bs-btn-active-color: #000;
  2888. --bs-btn-active-bg: #ffcd39;
  2889. --bs-btn-active-border-color: #ffc720;
  2890. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2891. --bs-btn-disabled-color: #000;
  2892. --bs-btn-disabled-bg: #ffc107;
  2893. --bs-btn-disabled-border-color: #ffc107;
  2894. }
  2895. .btn-danger {
  2896. --bs-btn-color: #fff;
  2897. --bs-btn-bg: #dc3545;
  2898. --bs-btn-border-color: #dc3545;
  2899. --bs-btn-hover-color: #fff;
  2900. --bs-btn-hover-bg: #bb2d3b;
  2901. --bs-btn-hover-border-color: #b02a37;
  2902. --bs-btn-focus-shadow-rgb: 225, 83, 97;
  2903. --bs-btn-active-color: #fff;
  2904. --bs-btn-active-bg: #b02a37;
  2905. --bs-btn-active-border-color: #a52834;
  2906. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2907. --bs-btn-disabled-color: #fff;
  2908. --bs-btn-disabled-bg: #dc3545;
  2909. --bs-btn-disabled-border-color: #dc3545;
  2910. }
  2911. .btn-light {
  2912. --bs-btn-color: #000;
  2913. --bs-btn-bg: #f8f9fa;
  2914. --bs-btn-border-color: #f8f9fa;
  2915. --bs-btn-hover-color: #000;
  2916. --bs-btn-hover-bg: #d3d4d5;
  2917. --bs-btn-hover-border-color: #c6c7c8;
  2918. --bs-btn-focus-shadow-rgb: 211, 212, 213;
  2919. --bs-btn-active-color: #000;
  2920. --bs-btn-active-bg: #c6c7c8;
  2921. --bs-btn-active-border-color: #babbbc;
  2922. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2923. --bs-btn-disabled-color: #000;
  2924. --bs-btn-disabled-bg: #f8f9fa;
  2925. --bs-btn-disabled-border-color: #f8f9fa;
  2926. }
  2927. .btn-dark {
  2928. --bs-btn-color: #fff;
  2929. --bs-btn-bg: #212529;
  2930. --bs-btn-border-color: #212529;
  2931. --bs-btn-hover-color: #fff;
  2932. --bs-btn-hover-bg: #424649;
  2933. --bs-btn-hover-border-color: #373b3e;
  2934. --bs-btn-focus-shadow-rgb: 66, 70, 73;
  2935. --bs-btn-active-color: #fff;
  2936. --bs-btn-active-bg: #4d5154;
  2937. --bs-btn-active-border-color: #373b3e;
  2938. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2939. --bs-btn-disabled-color: #fff;
  2940. --bs-btn-disabled-bg: #212529;
  2941. --bs-btn-disabled-border-color: #212529;
  2942. }
  2943. .btn-outline-primary {
  2944. --bs-btn-color: #0d6efd;
  2945. --bs-btn-border-color: #0d6efd;
  2946. --bs-btn-hover-color: #fff;
  2947. --bs-btn-hover-bg: #0d6efd;
  2948. --bs-btn-hover-border-color: #0d6efd;
  2949. --bs-btn-focus-shadow-rgb: 13, 110, 253;
  2950. --bs-btn-active-color: #fff;
  2951. --bs-btn-active-bg: #0d6efd;
  2952. --bs-btn-active-border-color: #0d6efd;
  2953. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2954. --bs-btn-disabled-color: #0d6efd;
  2955. --bs-btn-disabled-bg: transparent;
  2956. --bs-btn-disabled-border-color: #0d6efd;
  2957. --bs-gradient: none;
  2958. }
  2959. .btn-outline-secondary {
  2960. --bs-btn-color: #6c757d;
  2961. --bs-btn-border-color: #6c757d;
  2962. --bs-btn-hover-color: #fff;
  2963. --bs-btn-hover-bg: #6c757d;
  2964. --bs-btn-hover-border-color: #6c757d;
  2965. --bs-btn-focus-shadow-rgb: 108, 117, 125;
  2966. --bs-btn-active-color: #fff;
  2967. --bs-btn-active-bg: #6c757d;
  2968. --bs-btn-active-border-color: #6c757d;
  2969. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2970. --bs-btn-disabled-color: #6c757d;
  2971. --bs-btn-disabled-bg: transparent;
  2972. --bs-btn-disabled-border-color: #6c757d;
  2973. --bs-gradient: none;
  2974. }
  2975. .btn-outline-success {
  2976. --bs-btn-color: #198754;
  2977. --bs-btn-border-color: #198754;
  2978. --bs-btn-hover-color: #fff;
  2979. --bs-btn-hover-bg: #198754;
  2980. --bs-btn-hover-border-color: #198754;
  2981. --bs-btn-focus-shadow-rgb: 25, 135, 84;
  2982. --bs-btn-active-color: #fff;
  2983. --bs-btn-active-bg: #198754;
  2984. --bs-btn-active-border-color: #198754;
  2985. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2986. --bs-btn-disabled-color: #198754;
  2987. --bs-btn-disabled-bg: transparent;
  2988. --bs-btn-disabled-border-color: #198754;
  2989. --bs-gradient: none;
  2990. }
  2991. .btn-outline-info {
  2992. --bs-btn-color: #0dcaf0;
  2993. --bs-btn-border-color: #0dcaf0;
  2994. --bs-btn-hover-color: #000;
  2995. --bs-btn-hover-bg: #0dcaf0;
  2996. --bs-btn-hover-border-color: #0dcaf0;
  2997. --bs-btn-focus-shadow-rgb: 13, 202, 240;
  2998. --bs-btn-active-color: #000;
  2999. --bs-btn-active-bg: #0dcaf0;
  3000. --bs-btn-active-border-color: #0dcaf0;
  3001. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3002. --bs-btn-disabled-color: #0dcaf0;
  3003. --bs-btn-disabled-bg: transparent;
  3004. --bs-btn-disabled-border-color: #0dcaf0;
  3005. --bs-gradient: none;
  3006. }
  3007. .btn-outline-warning {
  3008. --bs-btn-color: #ffc107;
  3009. --bs-btn-border-color: #ffc107;
  3010. --bs-btn-hover-color: #000;
  3011. --bs-btn-hover-bg: #ffc107;
  3012. --bs-btn-hover-border-color: #ffc107;
  3013. --bs-btn-focus-shadow-rgb: 255, 193, 7;
  3014. --bs-btn-active-color: #000;
  3015. --bs-btn-active-bg: #ffc107;
  3016. --bs-btn-active-border-color: #ffc107;
  3017. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3018. --bs-btn-disabled-color: #ffc107;
  3019. --bs-btn-disabled-bg: transparent;
  3020. --bs-btn-disabled-border-color: #ffc107;
  3021. --bs-gradient: none;
  3022. }
  3023. .btn-outline-danger {
  3024. --bs-btn-color: #dc3545;
  3025. --bs-btn-border-color: #dc3545;
  3026. --bs-btn-hover-color: #fff;
  3027. --bs-btn-hover-bg: #dc3545;
  3028. --bs-btn-hover-border-color: #dc3545;
  3029. --bs-btn-focus-shadow-rgb: 220, 53, 69;
  3030. --bs-btn-active-color: #fff;
  3031. --bs-btn-active-bg: #dc3545;
  3032. --bs-btn-active-border-color: #dc3545;
  3033. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3034. --bs-btn-disabled-color: #dc3545;
  3035. --bs-btn-disabled-bg: transparent;
  3036. --bs-btn-disabled-border-color: #dc3545;
  3037. --bs-gradient: none;
  3038. }
  3039. .btn-outline-light {
  3040. --bs-btn-color: #f8f9fa;
  3041. --bs-btn-border-color: #f8f9fa;
  3042. --bs-btn-hover-color: #000;
  3043. --bs-btn-hover-bg: #f8f9fa;
  3044. --bs-btn-hover-border-color: #f8f9fa;
  3045. --bs-btn-focus-shadow-rgb: 248, 249, 250;
  3046. --bs-btn-active-color: #000;
  3047. --bs-btn-active-bg: #f8f9fa;
  3048. --bs-btn-active-border-color: #f8f9fa;
  3049. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3050. --bs-btn-disabled-color: #f8f9fa;
  3051. --bs-btn-disabled-bg: transparent;
  3052. --bs-btn-disabled-border-color: #f8f9fa;
  3053. --bs-gradient: none;
  3054. }
  3055. .btn-outline-dark {
  3056. --bs-btn-color: #212529;
  3057. --bs-btn-border-color: #212529;
  3058. --bs-btn-hover-color: #fff;
  3059. --bs-btn-hover-bg: #212529;
  3060. --bs-btn-hover-border-color: #212529;
  3061. --bs-btn-focus-shadow-rgb: 33, 37, 41;
  3062. --bs-btn-active-color: #fff;
  3063. --bs-btn-active-bg: #212529;
  3064. --bs-btn-active-border-color: #212529;
  3065. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3066. --bs-btn-disabled-color: #212529;
  3067. --bs-btn-disabled-bg: transparent;
  3068. --bs-btn-disabled-border-color: #212529;
  3069. --bs-gradient: none;
  3070. }
  3071. .btn-link {
  3072. --bs-btn-font-weight: 400;
  3073. --bs-btn-color: var(--bs-link-color);
  3074. --bs-btn-bg: transparent;
  3075. --bs-btn-border-color: transparent;
  3076. --bs-btn-hover-color: var(--bs-link-hover-color);
  3077. --bs-btn-hover-border-color: transparent;
  3078. --bs-btn-active-color: var(--bs-link-hover-color);
  3079. --bs-btn-active-border-color: transparent;
  3080. --bs-btn-disabled-color: #6c757d;
  3081. --bs-btn-disabled-border-color: transparent;
  3082. --bs-btn-box-shadow: none;
  3083. --bs-btn-focus-shadow-rgb: 49, 132, 253;
  3084. text-decoration: underline;
  3085. }
  3086. .btn-link:focus-visible {
  3087. color: var(--bs-btn-color);
  3088. }
  3089. .btn-link:hover {
  3090. color: var(--bs-btn-hover-color);
  3091. }
  3092. .btn-lg, .btn-group-lg > .btn {
  3093. --bs-btn-padding-y: 0.5rem;
  3094. --bs-btn-padding-x: 1rem;
  3095. --bs-btn-font-size: 1.25rem;
  3096. --bs-btn-border-radius: 0.5rem;
  3097. }
  3098. .btn-sm, .btn-group-sm > .btn {
  3099. --bs-btn-padding-y: 0.25rem;
  3100. --bs-btn-padding-x: 0.5rem;
  3101. --bs-btn-font-size: 0.875rem;
  3102. --bs-btn-border-radius: 0.25rem;
  3103. }
  3104. .fade {
  3105. transition: opacity 0.15s linear;
  3106. }
  3107. @media (prefers-reduced-motion: reduce) {
  3108. .fade {
  3109. transition: none;
  3110. }
  3111. }
  3112. .fade:not(.show) {
  3113. opacity: 0;
  3114. }
  3115. .collapse:not(.show) {
  3116. display: none;
  3117. }
  3118. .collapsing {
  3119. height: 0;
  3120. overflow: hidden;
  3121. transition: height 0.35s ease;
  3122. }
  3123. @media (prefers-reduced-motion: reduce) {
  3124. .collapsing {
  3125. transition: none;
  3126. }
  3127. }
  3128. .collapsing.collapse-horizontal {
  3129. width: 0;
  3130. height: auto;
  3131. transition: width 0.35s ease;
  3132. }
  3133. @media (prefers-reduced-motion: reduce) {
  3134. .collapsing.collapse-horizontal {
  3135. transition: none;
  3136. }
  3137. }
  3138. .dropup,
  3139. .dropend,
  3140. .dropdown,
  3141. .dropstart,
  3142. .dropup-center,
  3143. .dropdown-center {
  3144. position: relative;
  3145. }
  3146. .dropdown-toggle {
  3147. white-space: nowrap;
  3148. }
  3149. .dropdown-toggle::after {
  3150. display: inline-block;
  3151. margin-left: 0.255em;
  3152. vertical-align: 0.255em;
  3153. content: "";
  3154. border-top: 0.3em solid;
  3155. border-right: 0.3em solid transparent;
  3156. border-bottom: 0;
  3157. border-left: 0.3em solid transparent;
  3158. }
  3159. .dropdown-toggle:empty::after {
  3160. margin-left: 0;
  3161. }
  3162. .dropdown-menu {
  3163. --bs-dropdown-zindex: 1000;
  3164. --bs-dropdown-min-width: 10rem;
  3165. --bs-dropdown-padding-x: 0;
  3166. --bs-dropdown-padding-y: 0.5rem;
  3167. --bs-dropdown-spacer: 0.125rem;
  3168. --bs-dropdown-font-size: 1rem;
  3169. --bs-dropdown-color: var(--bs-body-color);
  3170. --bs-dropdown-bg: var(--bs-body-bg);
  3171. --bs-dropdown-border-color: var(--bs-border-color-translucent);
  3172. --bs-dropdown-border-radius: 0.375rem;
  3173. --bs-dropdown-border-width: var(--bs-border-width);
  3174. --bs-dropdown-inner-border-radius: calc(0.375rem - var(--bs-border-width));
  3175. --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  3176. --bs-dropdown-divider-margin-y: 0.5rem;
  3177. --bs-dropdown-box-shadow: 0 0.5rem 1rem rgba(var(--bs-body-color-rgb), 0.15);
  3178. --bs-dropdown-link-color: var(--bs-body-color);
  3179. --bs-dropdown-link-hover-color: var(--bs-body-color);
  3180. --bs-dropdown-link-hover-bg: var(--bs-tertiary-bg);
  3181. --bs-dropdown-link-active-color: #fff;
  3182. --bs-dropdown-link-active-bg: #0d6efd;
  3183. --bs-dropdown-link-disabled-color: #adb5bd;
  3184. --bs-dropdown-item-padding-x: 1rem;
  3185. --bs-dropdown-item-padding-y: 0.25rem;
  3186. --bs-dropdown-header-color: #6c757d;
  3187. --bs-dropdown-header-padding-x: 1rem;
  3188. --bs-dropdown-header-padding-y: 0.5rem;
  3189. position: absolute;
  3190. z-index: var(--bs-dropdown-zindex);
  3191. display: none;
  3192. min-width: var(--bs-dropdown-min-width);
  3193. padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  3194. margin: 0;
  3195. font-size: var(--bs-dropdown-font-size);
  3196. color: var(--bs-dropdown-color);
  3197. text-align: left;
  3198. list-style: none;
  3199. background-color: var(--bs-dropdown-bg);
  3200. background-clip: padding-box;
  3201. border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  3202. border-radius: var(--bs-dropdown-border-radius);
  3203. }
  3204. .dropdown-menu[data-bs-popper] {
  3205. top: 100%;
  3206. left: 0;
  3207. margin-top: var(--bs-dropdown-spacer);
  3208. }
  3209. .dropdown-menu-start {
  3210. --bs-position: start;
  3211. }
  3212. .dropdown-menu-start[data-bs-popper] {
  3213. right: auto;
  3214. left: 0;
  3215. }
  3216. .dropdown-menu-end {
  3217. --bs-position: end;
  3218. }
  3219. .dropdown-menu-end[data-bs-popper] {
  3220. right: 0;
  3221. left: auto;
  3222. }
  3223. @media (min-width: 576px) {
  3224. .dropdown-menu-sm-start {
  3225. --bs-position: start;
  3226. }
  3227. .dropdown-menu-sm-start[data-bs-popper] {
  3228. right: auto;
  3229. left: 0;
  3230. }
  3231. .dropdown-menu-sm-end {
  3232. --bs-position: end;
  3233. }
  3234. .dropdown-menu-sm-end[data-bs-popper] {
  3235. right: 0;
  3236. left: auto;
  3237. }
  3238. }
  3239. @media (min-width: 768px) {
  3240. .dropdown-menu-md-start {
  3241. --bs-position: start;
  3242. }
  3243. .dropdown-menu-md-start[data-bs-popper] {
  3244. right: auto;
  3245. left: 0;
  3246. }
  3247. .dropdown-menu-md-end {
  3248. --bs-position: end;
  3249. }
  3250. .dropdown-menu-md-end[data-bs-popper] {
  3251. right: 0;
  3252. left: auto;
  3253. }
  3254. }
  3255. @media (min-width: 992px) {
  3256. .dropdown-menu-lg-start {
  3257. --bs-position: start;
  3258. }
  3259. .dropdown-menu-lg-start[data-bs-popper] {
  3260. right: auto;
  3261. left: 0;
  3262. }
  3263. .dropdown-menu-lg-end {
  3264. --bs-position: end;
  3265. }
  3266. .dropdown-menu-lg-end[data-bs-popper] {
  3267. right: 0;
  3268. left: auto;
  3269. }
  3270. }
  3271. @media (min-width: 1200px) {
  3272. .dropdown-menu-xl-start {
  3273. --bs-position: start;
  3274. }
  3275. .dropdown-menu-xl-start[data-bs-popper] {
  3276. right: auto;
  3277. left: 0;
  3278. }
  3279. .dropdown-menu-xl-end {
  3280. --bs-position: end;
  3281. }
  3282. .dropdown-menu-xl-end[data-bs-popper] {
  3283. right: 0;
  3284. left: auto;
  3285. }
  3286. }
  3287. @media (min-width: 1400px) {
  3288. .dropdown-menu-xxl-start {
  3289. --bs-position: start;
  3290. }
  3291. .dropdown-menu-xxl-start[data-bs-popper] {
  3292. right: auto;
  3293. left: 0;
  3294. }
  3295. .dropdown-menu-xxl-end {
  3296. --bs-position: end;
  3297. }
  3298. .dropdown-menu-xxl-end[data-bs-popper] {
  3299. right: 0;
  3300. left: auto;
  3301. }
  3302. }
  3303. .dropup .dropdown-menu[data-bs-popper] {
  3304. top: auto;
  3305. bottom: 100%;
  3306. margin-top: 0;
  3307. margin-bottom: var(--bs-dropdown-spacer);
  3308. }
  3309. .dropup .dropdown-toggle::after {
  3310. display: inline-block;
  3311. margin-left: 0.255em;
  3312. vertical-align: 0.255em;
  3313. content: "";
  3314. border-top: 0;
  3315. border-right: 0.3em solid transparent;
  3316. border-bottom: 0.3em solid;
  3317. border-left: 0.3em solid transparent;
  3318. }
  3319. .dropup .dropdown-toggle:empty::after {
  3320. margin-left: 0;
  3321. }
  3322. .dropend .dropdown-menu[data-bs-popper] {
  3323. top: 0;
  3324. right: auto;
  3325. left: 100%;
  3326. margin-top: 0;
  3327. margin-left: var(--bs-dropdown-spacer);
  3328. }
  3329. .dropend .dropdown-toggle::after {
  3330. display: inline-block;
  3331. margin-left: 0.255em;
  3332. vertical-align: 0.255em;
  3333. content: "";
  3334. border-top: 0.3em solid transparent;
  3335. border-right: 0;
  3336. border-bottom: 0.3em solid transparent;
  3337. border-left: 0.3em solid;
  3338. }
  3339. .dropend .dropdown-toggle:empty::after {
  3340. margin-left: 0;
  3341. }
  3342. .dropend .dropdown-toggle::after {
  3343. vertical-align: 0;
  3344. }
  3345. .dropstart .dropdown-menu[data-bs-popper] {
  3346. top: 0;
  3347. right: 100%;
  3348. left: auto;
  3349. margin-top: 0;
  3350. margin-right: var(--bs-dropdown-spacer);
  3351. }
  3352. .dropstart .dropdown-toggle::after {
  3353. display: inline-block;
  3354. margin-left: 0.255em;
  3355. vertical-align: 0.255em;
  3356. content: "";
  3357. }
  3358. .dropstart .dropdown-toggle::after {
  3359. display: none;
  3360. }
  3361. .dropstart .dropdown-toggle::before {
  3362. display: inline-block;
  3363. margin-right: 0.255em;
  3364. vertical-align: 0.255em;
  3365. content: "";
  3366. border-top: 0.3em solid transparent;
  3367. border-right: 0.3em solid;
  3368. border-bottom: 0.3em solid transparent;
  3369. }
  3370. .dropstart .dropdown-toggle:empty::after {
  3371. margin-left: 0;
  3372. }
  3373. .dropstart .dropdown-toggle::before {
  3374. vertical-align: 0;
  3375. }
  3376. .dropdown-divider {
  3377. height: 0;
  3378. margin: var(--bs-dropdown-divider-margin-y) 0;
  3379. overflow: hidden;
  3380. border-top: 1px solid var(--bs-dropdown-divider-bg);
  3381. opacity: 1;
  3382. }
  3383. .dropdown-item {
  3384. display: block;
  3385. width: 100%;
  3386. padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  3387. clear: both;
  3388. font-weight: 400;
  3389. color: var(--bs-dropdown-link-color);
  3390. text-align: inherit;
  3391. text-decoration: none;
  3392. white-space: nowrap;
  3393. background-color: transparent;
  3394. border: 0;
  3395. border-radius: var(--bs-dropdown-item-border-radius, 0);
  3396. }
  3397. .dropdown-item:hover, .dropdown-item:focus {
  3398. color: var(--bs-dropdown-link-hover-color);
  3399. background-color: var(--bs-dropdown-link-hover-bg);
  3400. }
  3401. .dropdown-item.active, .dropdown-item:active {
  3402. color: var(--bs-dropdown-link-active-color);
  3403. text-decoration: none;
  3404. background-color: var(--bs-dropdown-link-active-bg);
  3405. }
  3406. .dropdown-item.disabled, .dropdown-item:disabled {
  3407. color: var(--bs-dropdown-link-disabled-color);
  3408. pointer-events: none;
  3409. background-color: transparent;
  3410. }
  3411. .dropdown-menu.show {
  3412. display: block;
  3413. }
  3414. .dropdown-header {
  3415. display: block;
  3416. padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
  3417. margin-bottom: 0;
  3418. font-size: 0.875rem;
  3419. color: var(--bs-dropdown-header-color);
  3420. white-space: nowrap;
  3421. }
  3422. .dropdown-item-text {
  3423. display: block;
  3424. padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  3425. color: var(--bs-dropdown-link-color);
  3426. }
  3427. .dropdown-menu-dark {
  3428. --bs-dropdown-color: #dee2e6;
  3429. --bs-dropdown-bg: #343a40;
  3430. --bs-dropdown-border-color: var(--bs-border-color-translucent);
  3431. --bs-dropdown-box-shadow: ;
  3432. --bs-dropdown-link-color: #dee2e6;
  3433. --bs-dropdown-link-hover-color: #fff;
  3434. --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  3435. --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
  3436. --bs-dropdown-link-active-color: #fff;
  3437. --bs-dropdown-link-active-bg: #0d6efd;
  3438. --bs-dropdown-link-disabled-color: #adb5bd;
  3439. --bs-dropdown-header-color: #adb5bd;
  3440. }
  3441. .btn-group,
  3442. .btn-group-vertical {
  3443. position: relative;
  3444. display: inline-flex;
  3445. vertical-align: middle;
  3446. }
  3447. .btn-group > .btn,
  3448. .btn-group-vertical > .btn {
  3449. position: relative;
  3450. flex: 1 1 auto;
  3451. }
  3452. .btn-group > .btn-check:checked + .btn,
  3453. .btn-group > .btn-check:focus + .btn,
  3454. .btn-group > .btn:hover,
  3455. .btn-group > .btn:focus,
  3456. .btn-group > .btn:active,
  3457. .btn-group > .btn.active,
  3458. .btn-group-vertical > .btn-check:checked + .btn,
  3459. .btn-group-vertical > .btn-check:focus + .btn,
  3460. .btn-group-vertical > .btn:hover,
  3461. .btn-group-vertical > .btn:focus,
  3462. .btn-group-vertical > .btn:active,
  3463. .btn-group-vertical > .btn.active {
  3464. z-index: 1;
  3465. }
  3466. .btn-toolbar {
  3467. display: flex;
  3468. flex-wrap: wrap;
  3469. justify-content: flex-start;
  3470. }
  3471. .btn-toolbar .input-group {
  3472. width: auto;
  3473. }
  3474. .btn-group {
  3475. border-radius: 0.375rem;
  3476. }
  3477. .btn-group > :not(.btn-check:first-child) + .btn,
  3478. .btn-group > .btn-group:not(:first-child) {
  3479. margin-left: calc(var(--bs-border-width) * -1);
  3480. }
  3481. .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
  3482. .btn-group > .btn.dropdown-toggle-split:first-child,
  3483. .btn-group > .btn-group:not(:last-child) > .btn {
  3484. border-top-right-radius: 0;
  3485. border-bottom-right-radius: 0;
  3486. }
  3487. .btn-group > .btn:nth-child(n+3),
  3488. .btn-group > :not(.btn-check) + .btn,
  3489. .btn-group > .btn-group:not(:first-child) > .btn {
  3490. border-top-left-radius: 0;
  3491. border-bottom-left-radius: 0;
  3492. }
  3493. .dropdown-toggle-split {
  3494. padding-right: 0.5625rem;
  3495. padding-left: 0.5625rem;
  3496. }
  3497. .dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
  3498. margin-left: 0;
  3499. }
  3500. .dropstart .dropdown-toggle-split::before {
  3501. margin-right: 0;
  3502. }
  3503. .btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  3504. padding-right: 0.375rem;
  3505. padding-left: 0.375rem;
  3506. }
  3507. .btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  3508. padding-right: 0.75rem;
  3509. padding-left: 0.75rem;
  3510. }
  3511. .btn-group-vertical {
  3512. flex-direction: column;
  3513. align-items: flex-start;
  3514. justify-content: center;
  3515. }
  3516. .btn-group-vertical > .btn,
  3517. .btn-group-vertical > .btn-group {
  3518. width: 100%;
  3519. }
  3520. .btn-group-vertical > .btn:not(:first-child),
  3521. .btn-group-vertical > .btn-group:not(:first-child) {
  3522. margin-top: calc(var(--bs-border-width) * -1);
  3523. }
  3524. .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
  3525. .btn-group-vertical > .btn-group:not(:last-child) > .btn {
  3526. border-bottom-right-radius: 0;
  3527. border-bottom-left-radius: 0;
  3528. }
  3529. .btn-group-vertical > .btn ~ .btn,
  3530. .btn-group-vertical > .btn-group:not(:first-child) > .btn {
  3531. border-top-left-radius: 0;
  3532. border-top-right-radius: 0;
  3533. }
  3534. .nav {
  3535. --bs-nav-link-padding-x: 1rem;
  3536. --bs-nav-link-padding-y: 0.5rem;
  3537. --bs-nav-link-font-weight: ;
  3538. --bs-nav-link-color: var(--bs-link-color);
  3539. --bs-nav-link-hover-color: var(--bs-link-hover-color);
  3540. --bs-nav-link-disabled-color: var(--bs-secondary-color);
  3541. display: flex;
  3542. flex-wrap: wrap;
  3543. padding-left: 0;
  3544. margin-bottom: 0;
  3545. list-style: none;
  3546. }
  3547. .nav-link {
  3548. display: block;
  3549. padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  3550. font-size: var(--bs-nav-link-font-size);
  3551. font-weight: var(--bs-nav-link-font-weight);
  3552. color: var(--bs-nav-link-color);
  3553. text-decoration: none;
  3554. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  3555. }
  3556. @media (prefers-reduced-motion: reduce) {
  3557. .nav-link {
  3558. transition: none;
  3559. }
  3560. }
  3561. .nav-link:hover, .nav-link:focus {
  3562. color: var(--bs-nav-link-hover-color);
  3563. }
  3564. .nav-link.disabled {
  3565. color: var(--bs-nav-link-disabled-color);
  3566. pointer-events: none;
  3567. cursor: default;
  3568. }
  3569. .nav-tabs {
  3570. --bs-nav-tabs-border-width: var(--bs-border-width);
  3571. --bs-nav-tabs-border-color: var(--bs-border-color);
  3572. --bs-nav-tabs-border-radius: var(--bs-border-radius);
  3573. --bs-nav-tabs-link-hover-border-color: var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);
  3574. --bs-nav-tabs-link-active-color: var(--bs-emphasis-color);
  3575. --bs-nav-tabs-link-active-bg: var(--bs-body-bg);
  3576. --bs-nav-tabs-link-active-border-color: var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);
  3577. border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
  3578. }
  3579. .nav-tabs .nav-link {
  3580. margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
  3581. background: none;
  3582. border: var(--bs-nav-tabs-border-width) solid transparent;
  3583. border-top-left-radius: var(--bs-nav-tabs-border-radius);
  3584. border-top-right-radius: var(--bs-nav-tabs-border-radius);
  3585. }
  3586. .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  3587. isolation: isolate;
  3588. border-color: var(--bs-nav-tabs-link-hover-border-color);
  3589. }
  3590. .nav-tabs .nav-link.disabled, .nav-tabs .nav-link:disabled {
  3591. color: var(--bs-nav-link-disabled-color);
  3592. background-color: transparent;
  3593. border-color: transparent;
  3594. }
  3595. .nav-tabs .nav-link.active,
  3596. .nav-tabs .nav-item.show .nav-link {
  3597. color: var(--bs-nav-tabs-link-active-color);
  3598. background-color: var(--bs-nav-tabs-link-active-bg);
  3599. border-color: var(--bs-nav-tabs-link-active-border-color);
  3600. }
  3601. .nav-tabs .dropdown-menu {
  3602. margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
  3603. border-top-left-radius: 0;
  3604. border-top-right-radius: 0;
  3605. }
  3606. .nav-pills {
  3607. --bs-nav-pills-border-radius: 0.375rem;
  3608. --bs-nav-pills-link-active-color: #fff;
  3609. --bs-nav-pills-link-active-bg: #0d6efd;
  3610. }
  3611. .nav-pills .nav-link {
  3612. background: none;
  3613. border: 0;
  3614. border-radius: var(--bs-nav-pills-border-radius);
  3615. }
  3616. .nav-pills .nav-link:disabled {
  3617. color: var(--bs-nav-link-disabled-color);
  3618. background-color: transparent;
  3619. border-color: transparent;
  3620. }
  3621. .nav-pills .nav-link.active,
  3622. .nav-pills .show > .nav-link {
  3623. color: var(--bs-nav-pills-link-active-color);
  3624. background-color: var(--bs-nav-pills-link-active-bg);
  3625. }
  3626. .nav-fill > .nav-link,
  3627. .nav-fill .nav-item {
  3628. flex: 1 1 auto;
  3629. text-align: center;
  3630. }
  3631. .nav-justified > .nav-link,
  3632. .nav-justified .nav-item {
  3633. flex-basis: 0;
  3634. flex-grow: 1;
  3635. text-align: center;
  3636. }
  3637. .nav-fill .nav-item .nav-link,
  3638. .nav-justified .nav-item .nav-link {
  3639. width: 100%;
  3640. }
  3641. .tab-content > .tab-pane {
  3642. display: none;
  3643. }
  3644. .tab-content > .active {
  3645. display: block;
  3646. }
  3647. .navbar {
  3648. --bs-navbar-padding-x: 0;
  3649. --bs-navbar-padding-y: 0.5rem;
  3650. --bs-navbar-color: rgba(var(--bs-emphasis-color-rgb), 0.65);
  3651. --bs-navbar-hover-color: rgba(var(--bs-emphasis-color-rgb), 0.8);
  3652. --bs-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), 0.3);
  3653. --bs-navbar-active-color: rgba(var(--bs-emphasis-color-rgb), 1);
  3654. --bs-navbar-brand-padding-y: 0.3125rem;
  3655. --bs-navbar-brand-margin-end: 1rem;
  3656. --bs-navbar-brand-font-size: 1.25rem;
  3657. --bs-navbar-brand-color: rgba(var(--bs-emphasis-color-rgb), 1);
  3658. --bs-navbar-brand-hover-color: rgba(var(--bs-emphasis-color-rgb), 1);
  3659. --bs-navbar-nav-link-padding-x: 0.5rem;
  3660. --bs-navbar-toggler-padding-y: 0.25rem;
  3661. --bs-navbar-toggler-padding-x: 0.75rem;
  3662. --bs-navbar-toggler-font-size: 1.25rem;
  3663. --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");
  3664. --bs-navbar-toggler-border-color: rgba(var(--bs-emphasis-color-rgb), 0.15);
  3665. --bs-navbar-toggler-border-radius: 0.375rem;
  3666. --bs-navbar-toggler-focus-width: 0.25rem;
  3667. --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
  3668. position: relative;
  3669. display: flex;
  3670. flex-wrap: wrap;
  3671. align-items: center;
  3672. justify-content: space-between;
  3673. padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
  3674. }
  3675. .navbar > .container,
  3676. .navbar > .container-fluid,
  3677. .navbar > .container-sm,
  3678. .navbar > .container-md,
  3679. .navbar > .container-lg,
  3680. .navbar > .container-xl,
  3681. .navbar > .container-xxl {
  3682. display: flex;
  3683. flex-wrap: inherit;
  3684. align-items: center;
  3685. justify-content: space-between;
  3686. }
  3687. .navbar-brand {
  3688. padding-top: var(--bs-navbar-brand-padding-y);
  3689. padding-bottom: var(--bs-navbar-brand-padding-y);
  3690. margin-right: var(--bs-navbar-brand-margin-end);
  3691. font-size: var(--bs-navbar-brand-font-size);
  3692. color: var(--bs-navbar-brand-color);
  3693. text-decoration: none;
  3694. white-space: nowrap;
  3695. }
  3696. .navbar-brand:hover, .navbar-brand:focus {
  3697. color: var(--bs-navbar-brand-hover-color);
  3698. }
  3699. .navbar-nav {
  3700. --bs-nav-link-padding-x: 0;
  3701. --bs-nav-link-padding-y: 0.5rem;
  3702. --bs-nav-link-font-weight: ;
  3703. --bs-nav-link-color: var(--bs-navbar-color);
  3704. --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  3705. --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  3706. display: flex;
  3707. flex-direction: column;
  3708. padding-left: 0;
  3709. margin-bottom: 0;
  3710. list-style: none;
  3711. }
  3712. .navbar-nav .show > .nav-link,
  3713. .navbar-nav .nav-link.active {
  3714. color: var(--bs-navbar-active-color);
  3715. }
  3716. .navbar-nav .dropdown-menu {
  3717. position: static;
  3718. }
  3719. .navbar-text {
  3720. padding-top: 0.5rem;
  3721. padding-bottom: 0.5rem;
  3722. color: var(--bs-navbar-color);
  3723. }
  3724. .navbar-text a,
  3725. .navbar-text a:hover,
  3726. .navbar-text a:focus {
  3727. color: var(--bs-navbar-active-color);
  3728. }
  3729. .navbar-collapse {
  3730. flex-basis: 100%;
  3731. flex-grow: 1;
  3732. align-items: center;
  3733. }
  3734. .navbar-toggler {
  3735. padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  3736. font-size: var(--bs-navbar-toggler-font-size);
  3737. line-height: 1;
  3738. color: var(--bs-navbar-color);
  3739. background-color: transparent;
  3740. border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  3741. border-radius: var(--bs-navbar-toggler-border-radius);
  3742. transition: var(--bs-navbar-toggler-transition);
  3743. }
  3744. @media (prefers-reduced-motion: reduce) {
  3745. .navbar-toggler {
  3746. transition: none;
  3747. }
  3748. }
  3749. .navbar-toggler:hover {
  3750. text-decoration: none;
  3751. }
  3752. .navbar-toggler:focus {
  3753. text-decoration: none;
  3754. outline: 0;
  3755. box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
  3756. }
  3757. .navbar-toggler-icon {
  3758. display: inline-block;
  3759. width: 1.5em;
  3760. height: 1.5em;
  3761. vertical-align: middle;
  3762. background-image: var(--bs-navbar-toggler-icon-bg);
  3763. background-repeat: no-repeat;
  3764. background-position: center;
  3765. background-size: 100%;
  3766. }
  3767. .navbar-nav-scroll {
  3768. max-height: var(--bs-scroll-height, 75vh);
  3769. overflow-y: auto;
  3770. }
  3771. @media (min-width: 576px) {
  3772. .navbar-expand-sm {
  3773. flex-wrap: nowrap;
  3774. justify-content: flex-start;
  3775. }
  3776. .navbar-expand-sm .navbar-nav {
  3777. flex-direction: row;
  3778. }
  3779. .navbar-expand-sm .navbar-nav .dropdown-menu {
  3780. position: absolute;
  3781. }
  3782. .navbar-expand-sm .navbar-nav .nav-link {
  3783. padding-right: var(--bs-navbar-nav-link-padding-x);
  3784. padding-left: var(--bs-navbar-nav-link-padding-x);
  3785. }
  3786. .navbar-expand-sm .navbar-nav-scroll {
  3787. overflow: visible;
  3788. }
  3789. .navbar-expand-sm .navbar-collapse {
  3790. display: flex !important;
  3791. flex-basis: auto;
  3792. }
  3793. .navbar-expand-sm .navbar-toggler {
  3794. display: none;
  3795. }
  3796. .navbar-expand-sm .offcanvas {
  3797. position: static;
  3798. z-index: auto;
  3799. flex-grow: 1;
  3800. width: auto !important;
  3801. height: auto !important;
  3802. visibility: visible !important;
  3803. background-color: transparent !important;
  3804. border: 0 !important;
  3805. transform: none !important;
  3806. transition: none;
  3807. }
  3808. .navbar-expand-sm .offcanvas .offcanvas-header {
  3809. display: none;
  3810. }
  3811. .navbar-expand-sm .offcanvas .offcanvas-body {
  3812. display: flex;
  3813. flex-grow: 0;
  3814. padding: 0;
  3815. overflow-y: visible;
  3816. }
  3817. }
  3818. @media (min-width: 768px) {
  3819. .navbar-expand-md {
  3820. flex-wrap: nowrap;
  3821. justify-content: flex-start;
  3822. }
  3823. .navbar-expand-md .navbar-nav {
  3824. flex-direction: row;
  3825. }
  3826. .navbar-expand-md .navbar-nav .dropdown-menu {
  3827. position: absolute;
  3828. }
  3829. .navbar-expand-md .navbar-nav .nav-link {
  3830. padding-right: var(--bs-navbar-nav-link-padding-x);
  3831. padding-left: var(--bs-navbar-nav-link-padding-x);
  3832. }
  3833. .navbar-expand-md .navbar-nav-scroll {
  3834. overflow: visible;
  3835. }
  3836. .navbar-expand-md .navbar-collapse {
  3837. display: flex !important;
  3838. flex-basis: auto;
  3839. }
  3840. .navbar-expand-md .navbar-toggler {
  3841. display: none;
  3842. }
  3843. .navbar-expand-md .offcanvas {
  3844. position: static;
  3845. z-index: auto;
  3846. flex-grow: 1;
  3847. width: auto !important;
  3848. height: auto !important;
  3849. visibility: visible !important;
  3850. background-color: transparent !important;
  3851. border: 0 !important;
  3852. transform: none !important;
  3853. transition: none;
  3854. }
  3855. .navbar-expand-md .offcanvas .offcanvas-header {
  3856. display: none;
  3857. }
  3858. .navbar-expand-md .offcanvas .offcanvas-body {
  3859. display: flex;
  3860. flex-grow: 0;
  3861. padding: 0;
  3862. overflow-y: visible;
  3863. }
  3864. }
  3865. @media (min-width: 992px) {
  3866. .navbar-expand-lg {
  3867. flex-wrap: nowrap;
  3868. justify-content: flex-start;
  3869. }
  3870. .navbar-expand-lg .navbar-nav {
  3871. flex-direction: row;
  3872. }
  3873. .navbar-expand-lg .navbar-nav .dropdown-menu {
  3874. position: absolute;
  3875. }
  3876. .navbar-expand-lg .navbar-nav .nav-link {
  3877. padding-right: var(--bs-navbar-nav-link-padding-x);
  3878. padding-left: var(--bs-navbar-nav-link-padding-x);
  3879. }
  3880. .navbar-expand-lg .navbar-nav-scroll {
  3881. overflow: visible;
  3882. }
  3883. .navbar-expand-lg .navbar-collapse {
  3884. display: flex !important;
  3885. flex-basis: auto;
  3886. }
  3887. .navbar-expand-lg .navbar-toggler {
  3888. display: none;
  3889. }
  3890. .navbar-expand-lg .offcanvas {
  3891. position: static;
  3892. z-index: auto;
  3893. flex-grow: 1;
  3894. width: auto !important;
  3895. height: auto !important;
  3896. visibility: visible !important;
  3897. background-color: transparent !important;
  3898. border: 0 !important;
  3899. transform: none !important;
  3900. transition: none;
  3901. }
  3902. .navbar-expand-lg .offcanvas .offcanvas-header {
  3903. display: none;
  3904. }
  3905. .navbar-expand-lg .offcanvas .offcanvas-body {
  3906. display: flex;
  3907. flex-grow: 0;
  3908. padding: 0;
  3909. overflow-y: visible;
  3910. }
  3911. }
  3912. @media (min-width: 1200px) {
  3913. .navbar-expand-xl {
  3914. flex-wrap: nowrap;
  3915. justify-content: flex-start;
  3916. }
  3917. .navbar-expand-xl .navbar-nav {
  3918. flex-direction: row;
  3919. }
  3920. .navbar-expand-xl .navbar-nav .dropdown-menu {
  3921. position: absolute;
  3922. }
  3923. .navbar-expand-xl .navbar-nav .nav-link {
  3924. padding-right: var(--bs-navbar-nav-link-padding-x);
  3925. padding-left: var(--bs-navbar-nav-link-padding-x);
  3926. }
  3927. .navbar-expand-xl .navbar-nav-scroll {
  3928. overflow: visible;
  3929. }
  3930. .navbar-expand-xl .navbar-collapse {
  3931. display: flex !important;
  3932. flex-basis: auto;
  3933. }
  3934. .navbar-expand-xl .navbar-toggler {
  3935. display: none;
  3936. }
  3937. .navbar-expand-xl .offcanvas {
  3938. position: static;
  3939. z-index: auto;
  3940. flex-grow: 1;
  3941. width: auto !important;
  3942. height: auto !important;
  3943. visibility: visible !important;
  3944. background-color: transparent !important;
  3945. border: 0 !important;
  3946. transform: none !important;
  3947. transition: none;
  3948. }
  3949. .navbar-expand-xl .offcanvas .offcanvas-header {
  3950. display: none;
  3951. }
  3952. .navbar-expand-xl .offcanvas .offcanvas-body {
  3953. display: flex;
  3954. flex-grow: 0;
  3955. padding: 0;
  3956. overflow-y: visible;
  3957. }
  3958. }
  3959. @media (min-width: 1400px) {
  3960. .navbar-expand-xxl {
  3961. flex-wrap: nowrap;
  3962. justify-content: flex-start;
  3963. }
  3964. .navbar-expand-xxl .navbar-nav {
  3965. flex-direction: row;
  3966. }
  3967. .navbar-expand-xxl .navbar-nav .dropdown-menu {
  3968. position: absolute;
  3969. }
  3970. .navbar-expand-xxl .navbar-nav .nav-link {
  3971. padding-right: var(--bs-navbar-nav-link-padding-x);
  3972. padding-left: var(--bs-navbar-nav-link-padding-x);
  3973. }
  3974. .navbar-expand-xxl .navbar-nav-scroll {
  3975. overflow: visible;
  3976. }
  3977. .navbar-expand-xxl .navbar-collapse {
  3978. display: flex !important;
  3979. flex-basis: auto;
  3980. }
  3981. .navbar-expand-xxl .navbar-toggler {
  3982. display: none;
  3983. }
  3984. .navbar-expand-xxl .offcanvas {
  3985. position: static;
  3986. z-index: auto;
  3987. flex-grow: 1;
  3988. width: auto !important;
  3989. height: auto !important;
  3990. visibility: visible !important;
  3991. background-color: transparent !important;
  3992. border: 0 !important;
  3993. transform: none !important;
  3994. transition: none;
  3995. }
  3996. .navbar-expand-xxl .offcanvas .offcanvas-header {
  3997. display: none;
  3998. }
  3999. .navbar-expand-xxl .offcanvas .offcanvas-body {
  4000. display: flex;
  4001. flex-grow: 0;
  4002. padding: 0;
  4003. overflow-y: visible;
  4004. }
  4005. }
  4006. .navbar-expand {
  4007. flex-wrap: nowrap;
  4008. justify-content: flex-start;
  4009. }
  4010. .navbar-expand .navbar-nav {
  4011. flex-direction: row;
  4012. }
  4013. .navbar-expand .navbar-nav .dropdown-menu {
  4014. position: absolute;
  4015. }
  4016. .navbar-expand .navbar-nav .nav-link {
  4017. padding-right: var(--bs-navbar-nav-link-padding-x);
  4018. padding-left: var(--bs-navbar-nav-link-padding-x);
  4019. }
  4020. .navbar-expand .navbar-nav-scroll {
  4021. overflow: visible;
  4022. }
  4023. .navbar-expand .navbar-collapse {
  4024. display: flex !important;
  4025. flex-basis: auto;
  4026. }
  4027. .navbar-expand .navbar-toggler {
  4028. display: none;
  4029. }
  4030. .navbar-expand .offcanvas {
  4031. position: static;
  4032. z-index: auto;
  4033. flex-grow: 1;
  4034. width: auto !important;
  4035. height: auto !important;
  4036. visibility: visible !important;
  4037. background-color: transparent !important;
  4038. border: 0 !important;
  4039. transform: none !important;
  4040. transition: none;
  4041. }
  4042. .navbar-expand .offcanvas .offcanvas-header {
  4043. display: none;
  4044. }
  4045. .navbar-expand .offcanvas .offcanvas-body {
  4046. display: flex;
  4047. flex-grow: 0;
  4048. padding: 0;
  4049. overflow-y: visible;
  4050. }
  4051. .navbar-dark {
  4052. --bs-navbar-color: rgba(255, 255, 255, 0.55);
  4053. --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
  4054. --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
  4055. --bs-navbar-active-color: #fff;
  4056. --bs-navbar-brand-color: #fff;
  4057. --bs-navbar-brand-hover-color: #fff;
  4058. --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
  4059. --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");
  4060. }
  4061. [data-bs-theme=dark] .navbar {
  4062. --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");
  4063. }
  4064. .card {
  4065. --bs-card-spacer-y: 1rem;
  4066. --bs-card-spacer-x: 1rem;
  4067. --bs-card-title-spacer-y: 0.5rem;
  4068. --bs-card-title-color: ;
  4069. --bs-card-subtitle-color: ;
  4070. --bs-card-border-width: var(--bs-border-width);
  4071. --bs-card-border-color: var(--bs-border-color-translucent);
  4072. --bs-card-border-radius: var(--bs-border-radius);
  4073. --bs-card-box-shadow: ;
  4074. --bs-card-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  4075. --bs-card-cap-padding-y: 0.5rem;
  4076. --bs-card-cap-padding-x: 1rem;
  4077. --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03);
  4078. --bs-card-cap-color: ;
  4079. --bs-card-height: ;
  4080. --bs-card-color: ;
  4081. --bs-card-bg: var(--bs-body-bg);
  4082. --bs-card-img-overlay-padding: 1rem;
  4083. --bs-card-group-margin: 0.75rem;
  4084. position: relative;
  4085. display: flex;
  4086. flex-direction: column;
  4087. min-width: 0;
  4088. height: var(--bs-card-height);
  4089. word-wrap: break-word;
  4090. background-color: var(--bs-card-bg);
  4091. background-clip: border-box;
  4092. border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  4093. border-radius: var(--bs-card-border-radius);
  4094. }
  4095. .card > hr {
  4096. margin-right: 0;
  4097. margin-left: 0;
  4098. }
  4099. .card > .list-group {
  4100. border-top: inherit;
  4101. border-bottom: inherit;
  4102. }
  4103. .card > .list-group:first-child {
  4104. border-top-width: 0;
  4105. border-top-left-radius: var(--bs-card-inner-border-radius);
  4106. border-top-right-radius: var(--bs-card-inner-border-radius);
  4107. }
  4108. .card > .list-group:last-child {
  4109. border-bottom-width: 0;
  4110. border-bottom-right-radius: var(--bs-card-inner-border-radius);
  4111. border-bottom-left-radius: var(--bs-card-inner-border-radius);
  4112. }
  4113. .card > .card-header + .list-group,
  4114. .card > .list-group + .card-footer {
  4115. border-top: 0;
  4116. }
  4117. .card-body {
  4118. flex: 1 1 auto;
  4119. padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  4120. color: var(--bs-card-color);
  4121. }
  4122. .card-title {
  4123. margin-bottom: var(--bs-card-title-spacer-y);
  4124. color: var(--bs-card-title-color);
  4125. }
  4126. .card-subtitle {
  4127. margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
  4128. margin-bottom: 0;
  4129. color: var(--bs-card-subtitle-color);
  4130. }
  4131. .card-text:last-child {
  4132. margin-bottom: 0;
  4133. }
  4134. .card-link + .card-link {
  4135. margin-left: var(--bs-card-spacer-x);
  4136. }
  4137. .card-header {
  4138. padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  4139. margin-bottom: 0;
  4140. color: var(--bs-card-cap-color);
  4141. background-color: var(--bs-card-cap-bg);
  4142. border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
  4143. }
  4144. .card-header:first-child {
  4145. border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
  4146. }
  4147. .card-footer {
  4148. padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  4149. color: var(--bs-card-cap-color);
  4150. background-color: var(--bs-card-cap-bg);
  4151. border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
  4152. }
  4153. .card-footer:last-child {
  4154. border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
  4155. }
  4156. .card-header-tabs {
  4157. margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  4158. margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
  4159. margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
  4160. border-bottom: 0;
  4161. }
  4162. .card-header-tabs .nav-link.active {
  4163. background-color: var(--bs-card-bg);
  4164. border-bottom-color: var(--bs-card-bg);
  4165. }
  4166. .card-header-pills {
  4167. margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  4168. margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
  4169. }
  4170. .card-img-overlay {
  4171. position: absolute;
  4172. top: 0;
  4173. right: 0;
  4174. bottom: 0;
  4175. left: 0;
  4176. padding: var(--bs-card-img-overlay-padding);
  4177. border-radius: var(--bs-card-inner-border-radius);
  4178. }
  4179. .card-img,
  4180. .card-img-top,
  4181. .card-img-bottom {
  4182. width: 100%;
  4183. }
  4184. .card-img,
  4185. .card-img-top {
  4186. border-top-left-radius: var(--bs-card-inner-border-radius);
  4187. border-top-right-radius: var(--bs-card-inner-border-radius);
  4188. }
  4189. .card-img,
  4190. .card-img-bottom {
  4191. border-bottom-right-radius: var(--bs-card-inner-border-radius);
  4192. border-bottom-left-radius: var(--bs-card-inner-border-radius);
  4193. }
  4194. .card-group > .card {
  4195. margin-bottom: var(--bs-card-group-margin);
  4196. }
  4197. @media (min-width: 576px) {
  4198. .card-group {
  4199. display: flex;
  4200. flex-flow: row wrap;
  4201. }
  4202. .card-group > .card {
  4203. flex: 1 0 0%;
  4204. margin-bottom: 0;
  4205. }
  4206. .card-group > .card + .card {
  4207. margin-left: 0;
  4208. border-left: 0;
  4209. }
  4210. .card-group > .card:not(:last-child) {
  4211. border-top-right-radius: 0;
  4212. border-bottom-right-radius: 0;
  4213. }
  4214. .card-group > .card:not(:last-child) .card-img-top,
  4215. .card-group > .card:not(:last-child) .card-header {
  4216. border-top-right-radius: 0;
  4217. }
  4218. .card-group > .card:not(:last-child) .card-img-bottom,
  4219. .card-group > .card:not(:last-child) .card-footer {
  4220. border-bottom-right-radius: 0;
  4221. }
  4222. .card-group > .card:not(:first-child) {
  4223. border-top-left-radius: 0;
  4224. border-bottom-left-radius: 0;
  4225. }
  4226. .card-group > .card:not(:first-child) .card-img-top,
  4227. .card-group > .card:not(:first-child) .card-header {
  4228. border-top-left-radius: 0;
  4229. }
  4230. .card-group > .card:not(:first-child) .card-img-bottom,
  4231. .card-group > .card:not(:first-child) .card-footer {
  4232. border-bottom-left-radius: 0;
  4233. }
  4234. }
  4235. .accordion {
  4236. --bs-accordion-color: var(--bs-body-color);
  4237. --bs-accordion-bg: var(--bs-body-bg);
  4238. --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;
  4239. --bs-accordion-border-color: var(--bs-border-color);
  4240. --bs-accordion-border-width: var(--bs-border-width);
  4241. --bs-accordion-border-radius: var(--bs-border-radius);
  4242. --bs-accordion-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  4243. --bs-accordion-btn-padding-x: 1.25rem;
  4244. --bs-accordion-btn-padding-y: 1rem;
  4245. --bs-accordion-btn-color: var(--bs-body-color);
  4246. --bs-accordion-btn-bg: var(--bs-accordion-bg);
  4247. --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  4248. --bs-accordion-btn-icon-width: 1.25rem;
  4249. --bs-accordion-btn-icon-transform: rotate(-180deg);
  4250. --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  4251. --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230a58ca'%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");
  4252. --bs-accordion-btn-focus-border-color: #86b7fe;
  4253. --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  4254. --bs-accordion-body-padding-x: 1.25rem;
  4255. --bs-accordion-body-padding-y: 1rem;
  4256. --bs-accordion-active-color: var(--bs-primary-text);
  4257. --bs-accordion-active-bg: var(--bs-primary-bg-subtle);
  4258. }
  4259. .accordion-button {
  4260. position: relative;
  4261. display: flex;
  4262. align-items: center;
  4263. width: 100%;
  4264. padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  4265. font-size: 1rem;
  4266. color: var(--bs-accordion-btn-color);
  4267. text-align: left;
  4268. background-color: var(--bs-accordion-btn-bg);
  4269. border: 0;
  4270. border-radius: 0;
  4271. overflow-anchor: none;
  4272. transition: var(--bs-accordion-transition);
  4273. }
  4274. @media (prefers-reduced-motion: reduce) {
  4275. .accordion-button {
  4276. transition: none;
  4277. }
  4278. }
  4279. .accordion-button:not(.collapsed) {
  4280. color: var(--bs-accordion-active-color);
  4281. background-color: var(--bs-accordion-active-bg);
  4282. box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
  4283. }
  4284. .accordion-button:not(.collapsed)::after {
  4285. background-image: var(--bs-accordion-btn-active-icon);
  4286. transform: var(--bs-accordion-btn-icon-transform);
  4287. }
  4288. .accordion-button::after {
  4289. flex-shrink: 0;
  4290. width: var(--bs-accordion-btn-icon-width);
  4291. height: var(--bs-accordion-btn-icon-width);
  4292. margin-left: auto;
  4293. content: "";
  4294. background-image: var(--bs-accordion-btn-icon);
  4295. background-repeat: no-repeat;
  4296. background-size: var(--bs-accordion-btn-icon-width);
  4297. transition: var(--bs-accordion-btn-icon-transition);
  4298. }
  4299. @media (prefers-reduced-motion: reduce) {
  4300. .accordion-button::after {
  4301. transition: none;
  4302. }
  4303. }
  4304. .accordion-button:hover {
  4305. z-index: 2;
  4306. }
  4307. .accordion-button:focus {
  4308. z-index: 3;
  4309. border-color: var(--bs-accordion-btn-focus-border-color);
  4310. outline: 0;
  4311. box-shadow: var(--bs-accordion-btn-focus-box-shadow);
  4312. }
  4313. .accordion-header {
  4314. margin-bottom: 0;
  4315. }
  4316. .accordion-item {
  4317. color: var(--bs-accordion-color);
  4318. background-color: var(--bs-accordion-bg);
  4319. border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
  4320. }
  4321. .accordion-item:first-of-type {
  4322. border-top-left-radius: var(--bs-accordion-border-radius);
  4323. border-top-right-radius: var(--bs-accordion-border-radius);
  4324. }
  4325. .accordion-item:first-of-type .accordion-button {
  4326. border-top-left-radius: var(--bs-accordion-inner-border-radius);
  4327. border-top-right-radius: var(--bs-accordion-inner-border-radius);
  4328. }
  4329. .accordion-item:not(:first-of-type) {
  4330. border-top: 0;
  4331. }
  4332. .accordion-item:last-of-type {
  4333. border-bottom-right-radius: var(--bs-accordion-border-radius);
  4334. border-bottom-left-radius: var(--bs-accordion-border-radius);
  4335. }
  4336. .accordion-item:last-of-type .accordion-button.collapsed {
  4337. border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
  4338. border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
  4339. }
  4340. .accordion-item:last-of-type .accordion-collapse {
  4341. border-bottom-right-radius: var(--bs-accordion-border-radius);
  4342. border-bottom-left-radius: var(--bs-accordion-border-radius);
  4343. }
  4344. .accordion-body {
  4345. padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
  4346. }
  4347. .accordion-flush .accordion-collapse {
  4348. border-width: 0;
  4349. }
  4350. .accordion-flush .accordion-item {
  4351. border-right: 0;
  4352. border-left: 0;
  4353. border-radius: 0;
  4354. }
  4355. .accordion-flush .accordion-item:first-child {
  4356. border-top: 0;
  4357. }
  4358. .accordion-flush .accordion-item:last-child {
  4359. border-bottom: 0;
  4360. }
  4361. .accordion-flush .accordion-item .accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {
  4362. border-radius: 0;
  4363. }
  4364. [data-bs-theme=dark] .accordion-button::after {
  4365. --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");
  4366. --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");
  4367. }
  4368. .breadcrumb {
  4369. --bs-breadcrumb-padding-x: 0;
  4370. --bs-breadcrumb-padding-y: 0;
  4371. --bs-breadcrumb-margin-bottom: 1rem;
  4372. --bs-breadcrumb-bg: ;
  4373. --bs-breadcrumb-border-radius: ;
  4374. --bs-breadcrumb-divider-color: var(--bs-secondary-color);
  4375. --bs-breadcrumb-item-padding-x: 0.5rem;
  4376. --bs-breadcrumb-item-active-color: var(--bs-secondary-color);
  4377. display: flex;
  4378. flex-wrap: wrap;
  4379. padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
  4380. margin-bottom: var(--bs-breadcrumb-margin-bottom);
  4381. font-size: var(--bs-breadcrumb-font-size);
  4382. list-style: none;
  4383. background-color: var(--bs-breadcrumb-bg);
  4384. border-radius: var(--bs-breadcrumb-border-radius);
  4385. }
  4386. .breadcrumb-item + .breadcrumb-item {
  4387. padding-left: var(--bs-breadcrumb-item-padding-x);
  4388. }
  4389. .breadcrumb-item + .breadcrumb-item::before {
  4390. float: left;
  4391. padding-right: var(--bs-breadcrumb-item-padding-x);
  4392. color: var(--bs-breadcrumb-divider-color);
  4393. content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
  4394. }
  4395. .breadcrumb-item.active {
  4396. color: var(--bs-breadcrumb-item-active-color);
  4397. }
  4398. .pagination {
  4399. --bs-pagination-padding-x: 0.75rem;
  4400. --bs-pagination-padding-y: 0.375rem;
  4401. --bs-pagination-font-size: 1rem;
  4402. --bs-pagination-color: var(--bs-link-color);
  4403. --bs-pagination-bg: var(--bs-body-bg);
  4404. --bs-pagination-border-width: var(--bs-border-width);
  4405. --bs-pagination-border-color: var(--bs-border-color);
  4406. --bs-pagination-border-radius: var(--bs-border-radius);
  4407. --bs-pagination-hover-color: var(--bs-link-hover-color);
  4408. --bs-pagination-hover-bg: var(--bs-tertiary-bg);
  4409. --bs-pagination-hover-border-color: var(--bs-border-color);
  4410. --bs-pagination-focus-color: var(--bs-link-hover-color);
  4411. --bs-pagination-focus-bg: var(--bs-secondary-bg);
  4412. --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  4413. --bs-pagination-active-color: #fff;
  4414. --bs-pagination-active-bg: #0d6efd;
  4415. --bs-pagination-active-border-color: #0d6efd;
  4416. --bs-pagination-disabled-color: var(--bs-secondary-color);
  4417. --bs-pagination-disabled-bg: var(--bs-secondary-bg);
  4418. --bs-pagination-disabled-border-color: var(--bs-border-color);
  4419. display: flex;
  4420. padding-left: 0;
  4421. list-style: none;
  4422. }
  4423. .page-link {
  4424. position: relative;
  4425. display: block;
  4426. padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  4427. font-size: var(--bs-pagination-font-size);
  4428. color: var(--bs-pagination-color);
  4429. text-decoration: none;
  4430. background-color: var(--bs-pagination-bg);
  4431. border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
  4432. 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;
  4433. }
  4434. @media (prefers-reduced-motion: reduce) {
  4435. .page-link {
  4436. transition: none;
  4437. }
  4438. }
  4439. .page-link:hover {
  4440. z-index: 2;
  4441. color: var(--bs-pagination-hover-color);
  4442. background-color: var(--bs-pagination-hover-bg);
  4443. border-color: var(--bs-pagination-hover-border-color);
  4444. }
  4445. .page-link:focus {
  4446. z-index: 3;
  4447. color: var(--bs-pagination-focus-color);
  4448. background-color: var(--bs-pagination-focus-bg);
  4449. outline: 0;
  4450. box-shadow: var(--bs-pagination-focus-box-shadow);
  4451. }
  4452. .page-link.active, .active > .page-link {
  4453. z-index: 3;
  4454. color: var(--bs-pagination-active-color);
  4455. background-color: var(--bs-pagination-active-bg);
  4456. border-color: var(--bs-pagination-active-border-color);
  4457. }
  4458. .page-link.disabled, .disabled > .page-link {
  4459. color: var(--bs-pagination-disabled-color);
  4460. pointer-events: none;
  4461. background-color: var(--bs-pagination-disabled-bg);
  4462. border-color: var(--bs-pagination-disabled-border-color);
  4463. }
  4464. .page-item:not(:first-child) .page-link {
  4465. margin-left: calc(var(--bs-border-width) * -1);
  4466. }
  4467. .page-item:first-child .page-link {
  4468. border-top-left-radius: var(--bs-pagination-border-radius);
  4469. border-bottom-left-radius: var(--bs-pagination-border-radius);
  4470. }
  4471. .page-item:last-child .page-link {
  4472. border-top-right-radius: var(--bs-pagination-border-radius);
  4473. border-bottom-right-radius: var(--bs-pagination-border-radius);
  4474. }
  4475. .pagination-lg {
  4476. --bs-pagination-padding-x: 1.5rem;
  4477. --bs-pagination-padding-y: 0.75rem;
  4478. --bs-pagination-font-size: 1.25rem;
  4479. --bs-pagination-border-radius: 0.5rem;
  4480. }
  4481. .pagination-sm {
  4482. --bs-pagination-padding-x: 0.5rem;
  4483. --bs-pagination-padding-y: 0.25rem;
  4484. --bs-pagination-font-size: 0.875rem;
  4485. --bs-pagination-border-radius: 0.25rem;
  4486. }
  4487. .badge {
  4488. --bs-badge-padding-x: 0.65em;
  4489. --bs-badge-padding-y: 0.35em;
  4490. --bs-badge-font-size: 0.75em;
  4491. --bs-badge-font-weight: 700;
  4492. --bs-badge-color: #fff;
  4493. --bs-badge-border-radius: 0.375rem;
  4494. display: inline-block;
  4495. padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
  4496. font-size: var(--bs-badge-font-size);
  4497. font-weight: var(--bs-badge-font-weight);
  4498. line-height: 1;
  4499. color: var(--bs-badge-color);
  4500. text-align: center;
  4501. white-space: nowrap;
  4502. vertical-align: baseline;
  4503. border-radius: var(--bs-badge-border-radius);
  4504. }
  4505. .badge:empty {
  4506. display: none;
  4507. }
  4508. .btn .badge {
  4509. position: relative;
  4510. top: -1px;
  4511. }
  4512. .alert {
  4513. --bs-alert-bg: transparent;
  4514. --bs-alert-padding-x: 1rem;
  4515. --bs-alert-padding-y: 1rem;
  4516. --bs-alert-margin-bottom: 1rem;
  4517. --bs-alert-color: inherit;
  4518. --bs-alert-border-color: transparent;
  4519. --bs-alert-border: var(--bs-border-width) solid var(--bs-alert-border-color);
  4520. --bs-alert-border-radius: 0.375rem;
  4521. --bs-alert-link-color: inherit;
  4522. position: relative;
  4523. padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
  4524. margin-bottom: var(--bs-alert-margin-bottom);
  4525. color: var(--bs-alert-color);
  4526. background-color: var(--bs-alert-bg);
  4527. border: var(--bs-alert-border);
  4528. border-radius: var(--bs-alert-border-radius);
  4529. }
  4530. .alert-heading {
  4531. color: inherit;
  4532. }
  4533. .alert-link {
  4534. font-weight: 700;
  4535. color: var(--bs-alert-link-color);
  4536. }
  4537. .alert-dismissible {
  4538. padding-right: 3rem;
  4539. }
  4540. .alert-dismissible .btn-close {
  4541. position: absolute;
  4542. top: 0;
  4543. right: 0;
  4544. z-index: 2;
  4545. padding: 1.25rem 1rem;
  4546. }
  4547. .alert-primary {
  4548. --bs-alert-color: var(--bs-primary-text);
  4549. --bs-alert-bg: var(--bs-primary-bg-subtle);
  4550. --bs-alert-border-color: var(--bs-primary-border-subtle);
  4551. --bs-alert-link-color: var(--bs-primary-text);
  4552. }
  4553. .alert-secondary {
  4554. --bs-alert-color: var(--bs-secondary-text);
  4555. --bs-alert-bg: var(--bs-secondary-bg-subtle);
  4556. --bs-alert-border-color: var(--bs-secondary-border-subtle);
  4557. --bs-alert-link-color: var(--bs-secondary-text);
  4558. }
  4559. .alert-success {
  4560. --bs-alert-color: var(--bs-success-text);
  4561. --bs-alert-bg: var(--bs-success-bg-subtle);
  4562. --bs-alert-border-color: var(--bs-success-border-subtle);
  4563. --bs-alert-link-color: var(--bs-success-text);
  4564. }
  4565. .alert-info {
  4566. --bs-alert-color: var(--bs-info-text);
  4567. --bs-alert-bg: var(--bs-info-bg-subtle);
  4568. --bs-alert-border-color: var(--bs-info-border-subtle);
  4569. --bs-alert-link-color: var(--bs-info-text);
  4570. }
  4571. .alert-warning {
  4572. --bs-alert-color: var(--bs-warning-text);
  4573. --bs-alert-bg: var(--bs-warning-bg-subtle);
  4574. --bs-alert-border-color: var(--bs-warning-border-subtle);
  4575. --bs-alert-link-color: var(--bs-warning-text);
  4576. }
  4577. .alert-danger {
  4578. --bs-alert-color: var(--bs-danger-text);
  4579. --bs-alert-bg: var(--bs-danger-bg-subtle);
  4580. --bs-alert-border-color: var(--bs-danger-border-subtle);
  4581. --bs-alert-link-color: var(--bs-danger-text);
  4582. }
  4583. .alert-light {
  4584. --bs-alert-color: var(--bs-light-text);
  4585. --bs-alert-bg: var(--bs-light-bg-subtle);
  4586. --bs-alert-border-color: var(--bs-light-border-subtle);
  4587. --bs-alert-link-color: var(--bs-light-text);
  4588. }
  4589. .alert-dark {
  4590. --bs-alert-color: var(--bs-dark-text);
  4591. --bs-alert-bg: var(--bs-dark-bg-subtle);
  4592. --bs-alert-border-color: var(--bs-dark-border-subtle);
  4593. --bs-alert-link-color: var(--bs-dark-text);
  4594. }
  4595. @keyframes progress-bar-stripes {
  4596. 0% {
  4597. background-position-x: 1rem;
  4598. }
  4599. }
  4600. .progress,
  4601. .progress-stacked {
  4602. --bs-progress-height: 1rem;
  4603. --bs-progress-font-size: 0.75rem;
  4604. --bs-progress-bg: var(--bs-secondary-bg);
  4605. --bs-progress-border-radius: var(--bs-border-radius);
  4606. --bs-progress-box-shadow: var(--bs-box-shadow-inset);
  4607. --bs-progress-bar-color: #fff;
  4608. --bs-progress-bar-bg: #0d6efd;
  4609. --bs-progress-bar-transition: width 0.6s ease;
  4610. display: flex;
  4611. height: var(--bs-progress-height);
  4612. overflow: hidden;
  4613. font-size: var(--bs-progress-font-size);
  4614. background-color: var(--bs-progress-bg);
  4615. border-radius: var(--bs-progress-border-radius);
  4616. }
  4617. .progress-bar {
  4618. display: flex;
  4619. flex-direction: column;
  4620. justify-content: center;
  4621. overflow: hidden;
  4622. color: var(--bs-progress-bar-color);
  4623. text-align: center;
  4624. white-space: nowrap;
  4625. background-color: var(--bs-progress-bar-bg);
  4626. transition: var(--bs-progress-bar-transition);
  4627. }
  4628. @media (prefers-reduced-motion: reduce) {
  4629. .progress-bar {
  4630. transition: none;
  4631. }
  4632. }
  4633. .progress-bar-striped {
  4634. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4635. background-size: var(--bs-progress-height) var(--bs-progress-height);
  4636. }
  4637. .progress-stacked > .progress {
  4638. overflow: visible;
  4639. }
  4640. .progress-stacked > .progress > .progress-bar {
  4641. width: 100%;
  4642. }
  4643. .progress-bar-animated {
  4644. animation: 1s linear infinite progress-bar-stripes;
  4645. }
  4646. @media (prefers-reduced-motion: reduce) {
  4647. .progress-bar-animated {
  4648. animation: none;
  4649. }
  4650. }
  4651. .list-group {
  4652. --bs-list-group-color: var(--bs-body-color);
  4653. --bs-list-group-bg: var(--bs-body-bg);
  4654. --bs-list-group-border-color: var(--bs-border-color);
  4655. --bs-list-group-border-width: var(--bs-border-width);
  4656. --bs-list-group-border-radius: var(--bs-border-radius);
  4657. --bs-list-group-item-padding-x: 1rem;
  4658. --bs-list-group-item-padding-y: 0.5rem;
  4659. --bs-list-group-action-color: var(--bs-secondary-color);
  4660. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4661. --bs-list-group-action-hover-bg: var(--bs-tertiary-bg);
  4662. --bs-list-group-action-active-color: var(--bs-body-color);
  4663. --bs-list-group-action-active-bg: var(--bs-secondary-bg);
  4664. --bs-list-group-disabled-color: var(--bs-secondary-color);
  4665. --bs-list-group-disabled-bg: var(--bs-body-bg);
  4666. --bs-list-group-active-color: #fff;
  4667. --bs-list-group-active-bg: #0d6efd;
  4668. --bs-list-group-active-border-color: #0d6efd;
  4669. display: flex;
  4670. flex-direction: column;
  4671. padding-left: 0;
  4672. margin-bottom: 0;
  4673. border-radius: var(--bs-list-group-border-radius);
  4674. }
  4675. .list-group-numbered {
  4676. list-style-type: none;
  4677. counter-reset: section;
  4678. }
  4679. .list-group-numbered > .list-group-item::before {
  4680. content: counters(section, ".") ". ";
  4681. counter-increment: section;
  4682. }
  4683. .list-group-item-action {
  4684. width: 100%;
  4685. color: var(--bs-list-group-action-color);
  4686. text-align: inherit;
  4687. }
  4688. .list-group-item-action:hover, .list-group-item-action:focus {
  4689. z-index: 1;
  4690. color: var(--bs-list-group-action-hover-color);
  4691. text-decoration: none;
  4692. background-color: var(--bs-list-group-action-hover-bg);
  4693. }
  4694. .list-group-item-action:active {
  4695. color: var(--bs-list-group-action-active-color);
  4696. background-color: var(--bs-list-group-action-active-bg);
  4697. }
  4698. .list-group-item {
  4699. position: relative;
  4700. display: block;
  4701. padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
  4702. color: var(--bs-list-group-color);
  4703. text-decoration: none;
  4704. background-color: var(--bs-list-group-bg);
  4705. border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
  4706. }
  4707. .list-group-item:first-child {
  4708. border-top-left-radius: inherit;
  4709. border-top-right-radius: inherit;
  4710. }
  4711. .list-group-item:last-child {
  4712. border-bottom-right-radius: inherit;
  4713. border-bottom-left-radius: inherit;
  4714. }
  4715. .list-group-item.disabled, .list-group-item:disabled {
  4716. color: var(--bs-list-group-disabled-color);
  4717. pointer-events: none;
  4718. background-color: var(--bs-list-group-disabled-bg);
  4719. }
  4720. .list-group-item.active {
  4721. z-index: 2;
  4722. color: var(--bs-list-group-active-color);
  4723. background-color: var(--bs-list-group-active-bg);
  4724. border-color: var(--bs-list-group-active-border-color);
  4725. }
  4726. .list-group-item + .list-group-item {
  4727. border-top-width: 0;
  4728. }
  4729. .list-group-item + .list-group-item.active {
  4730. margin-top: calc(-1 * var(--bs-list-group-border-width));
  4731. border-top-width: var(--bs-list-group-border-width);
  4732. }
  4733. .list-group-horizontal {
  4734. flex-direction: row;
  4735. }
  4736. .list-group-horizontal > .list-group-item:first-child:not(:last-child) {
  4737. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4738. border-top-right-radius: 0;
  4739. }
  4740. .list-group-horizontal > .list-group-item:last-child:not(:first-child) {
  4741. border-top-right-radius: var(--bs-list-group-border-radius);
  4742. border-bottom-left-radius: 0;
  4743. }
  4744. .list-group-horizontal > .list-group-item.active {
  4745. margin-top: 0;
  4746. }
  4747. .list-group-horizontal > .list-group-item + .list-group-item {
  4748. border-top-width: var(--bs-list-group-border-width);
  4749. border-left-width: 0;
  4750. }
  4751. .list-group-horizontal > .list-group-item + .list-group-item.active {
  4752. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4753. border-left-width: var(--bs-list-group-border-width);
  4754. }
  4755. @media (min-width: 576px) {
  4756. .list-group-horizontal-sm {
  4757. flex-direction: row;
  4758. }
  4759. .list-group-horizontal-sm > .list-group-item:first-child:not(:last-child) {
  4760. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4761. border-top-right-radius: 0;
  4762. }
  4763. .list-group-horizontal-sm > .list-group-item:last-child:not(:first-child) {
  4764. border-top-right-radius: var(--bs-list-group-border-radius);
  4765. border-bottom-left-radius: 0;
  4766. }
  4767. .list-group-horizontal-sm > .list-group-item.active {
  4768. margin-top: 0;
  4769. }
  4770. .list-group-horizontal-sm > .list-group-item + .list-group-item {
  4771. border-top-width: var(--bs-list-group-border-width);
  4772. border-left-width: 0;
  4773. }
  4774. .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
  4775. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4776. border-left-width: var(--bs-list-group-border-width);
  4777. }
  4778. }
  4779. @media (min-width: 768px) {
  4780. .list-group-horizontal-md {
  4781. flex-direction: row;
  4782. }
  4783. .list-group-horizontal-md > .list-group-item:first-child:not(:last-child) {
  4784. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4785. border-top-right-radius: 0;
  4786. }
  4787. .list-group-horizontal-md > .list-group-item:last-child:not(:first-child) {
  4788. border-top-right-radius: var(--bs-list-group-border-radius);
  4789. border-bottom-left-radius: 0;
  4790. }
  4791. .list-group-horizontal-md > .list-group-item.active {
  4792. margin-top: 0;
  4793. }
  4794. .list-group-horizontal-md > .list-group-item + .list-group-item {
  4795. border-top-width: var(--bs-list-group-border-width);
  4796. border-left-width: 0;
  4797. }
  4798. .list-group-horizontal-md > .list-group-item + .list-group-item.active {
  4799. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4800. border-left-width: var(--bs-list-group-border-width);
  4801. }
  4802. }
  4803. @media (min-width: 992px) {
  4804. .list-group-horizontal-lg {
  4805. flex-direction: row;
  4806. }
  4807. .list-group-horizontal-lg > .list-group-item:first-child:not(:last-child) {
  4808. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4809. border-top-right-radius: 0;
  4810. }
  4811. .list-group-horizontal-lg > .list-group-item:last-child:not(:first-child) {
  4812. border-top-right-radius: var(--bs-list-group-border-radius);
  4813. border-bottom-left-radius: 0;
  4814. }
  4815. .list-group-horizontal-lg > .list-group-item.active {
  4816. margin-top: 0;
  4817. }
  4818. .list-group-horizontal-lg > .list-group-item + .list-group-item {
  4819. border-top-width: var(--bs-list-group-border-width);
  4820. border-left-width: 0;
  4821. }
  4822. .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
  4823. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4824. border-left-width: var(--bs-list-group-border-width);
  4825. }
  4826. }
  4827. @media (min-width: 1200px) {
  4828. .list-group-horizontal-xl {
  4829. flex-direction: row;
  4830. }
  4831. .list-group-horizontal-xl > .list-group-item:first-child:not(:last-child) {
  4832. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4833. border-top-right-radius: 0;
  4834. }
  4835. .list-group-horizontal-xl > .list-group-item:last-child:not(:first-child) {
  4836. border-top-right-radius: var(--bs-list-group-border-radius);
  4837. border-bottom-left-radius: 0;
  4838. }
  4839. .list-group-horizontal-xl > .list-group-item.active {
  4840. margin-top: 0;
  4841. }
  4842. .list-group-horizontal-xl > .list-group-item + .list-group-item {
  4843. border-top-width: var(--bs-list-group-border-width);
  4844. border-left-width: 0;
  4845. }
  4846. .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
  4847. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4848. border-left-width: var(--bs-list-group-border-width);
  4849. }
  4850. }
  4851. @media (min-width: 1400px) {
  4852. .list-group-horizontal-xxl {
  4853. flex-direction: row;
  4854. }
  4855. .list-group-horizontal-xxl > .list-group-item:first-child:not(:last-child) {
  4856. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4857. border-top-right-radius: 0;
  4858. }
  4859. .list-group-horizontal-xxl > .list-group-item:last-child:not(:first-child) {
  4860. border-top-right-radius: var(--bs-list-group-border-radius);
  4861. border-bottom-left-radius: 0;
  4862. }
  4863. .list-group-horizontal-xxl > .list-group-item.active {
  4864. margin-top: 0;
  4865. }
  4866. .list-group-horizontal-xxl > .list-group-item + .list-group-item {
  4867. border-top-width: var(--bs-list-group-border-width);
  4868. border-left-width: 0;
  4869. }
  4870. .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
  4871. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4872. border-left-width: var(--bs-list-group-border-width);
  4873. }
  4874. }
  4875. .list-group-flush {
  4876. border-radius: 0;
  4877. }
  4878. .list-group-flush > .list-group-item {
  4879. border-width: 0 0 var(--bs-list-group-border-width);
  4880. }
  4881. .list-group-flush > .list-group-item:last-child {
  4882. border-bottom-width: 0;
  4883. }
  4884. .list-group-item-primary {
  4885. --bs-list-group-color: var(--bs-primary-text);
  4886. --bs-list-group-bg: var(--bs-primary-bg-subtle);
  4887. --bs-list-group-border-color: var(--bs-primary-border-subtle);
  4888. }
  4889. .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  4890. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4891. --bs-list-group-action-hover-bg: var(--bs-primary-border-subtle);
  4892. }
  4893. .list-group-item-primary.list-group-item-action:active {
  4894. --bs-list-group-active-color: var(--bs-emphasis-color);
  4895. --bs-list-group-active-bg: var(--bs-primary-text);
  4896. --bs-list-group-active-border-color: var(--bs-primary-text);
  4897. }
  4898. .list-group-item-secondary {
  4899. --bs-list-group-color: var(--bs-secondary-text);
  4900. --bs-list-group-bg: var(--bs-secondary-bg-subtle);
  4901. --bs-list-group-border-color: var(--bs-secondary-border-subtle);
  4902. }
  4903. .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  4904. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4905. --bs-list-group-action-hover-bg: var(--bs-secondary-border-subtle);
  4906. }
  4907. .list-group-item-secondary.list-group-item-action:active {
  4908. --bs-list-group-active-color: var(--bs-emphasis-color);
  4909. --bs-list-group-active-bg: var(--bs-secondary-text);
  4910. --bs-list-group-active-border-color: var(--bs-secondary-text);
  4911. }
  4912. .list-group-item-success {
  4913. --bs-list-group-color: var(--bs-success-text);
  4914. --bs-list-group-bg: var(--bs-success-bg-subtle);
  4915. --bs-list-group-border-color: var(--bs-success-border-subtle);
  4916. }
  4917. .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  4918. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4919. --bs-list-group-action-hover-bg: var(--bs-success-border-subtle);
  4920. }
  4921. .list-group-item-success.list-group-item-action:active {
  4922. --bs-list-group-active-color: var(--bs-emphasis-color);
  4923. --bs-list-group-active-bg: var(--bs-success-text);
  4924. --bs-list-group-active-border-color: var(--bs-success-text);
  4925. }
  4926. .list-group-item-info {
  4927. --bs-list-group-color: var(--bs-info-text);
  4928. --bs-list-group-bg: var(--bs-info-bg-subtle);
  4929. --bs-list-group-border-color: var(--bs-info-border-subtle);
  4930. }
  4931. .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  4932. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4933. --bs-list-group-action-hover-bg: var(--bs-info-border-subtle);
  4934. }
  4935. .list-group-item-info.list-group-item-action:active {
  4936. --bs-list-group-active-color: var(--bs-emphasis-color);
  4937. --bs-list-group-active-bg: var(--bs-info-text);
  4938. --bs-list-group-active-border-color: var(--bs-info-text);
  4939. }
  4940. .list-group-item-warning {
  4941. --bs-list-group-color: var(--bs-warning-text);
  4942. --bs-list-group-bg: var(--bs-warning-bg-subtle);
  4943. --bs-list-group-border-color: var(--bs-warning-border-subtle);
  4944. }
  4945. .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  4946. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4947. --bs-list-group-action-hover-bg: var(--bs-warning-border-subtle);
  4948. }
  4949. .list-group-item-warning.list-group-item-action:active {
  4950. --bs-list-group-active-color: var(--bs-emphasis-color);
  4951. --bs-list-group-active-bg: var(--bs-warning-text);
  4952. --bs-list-group-active-border-color: var(--bs-warning-text);
  4953. }
  4954. .list-group-item-danger {
  4955. --bs-list-group-color: var(--bs-danger-text);
  4956. --bs-list-group-bg: var(--bs-danger-bg-subtle);
  4957. --bs-list-group-border-color: var(--bs-danger-border-subtle);
  4958. }
  4959. .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  4960. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4961. --bs-list-group-action-hover-bg: var(--bs-danger-border-subtle);
  4962. }
  4963. .list-group-item-danger.list-group-item-action:active {
  4964. --bs-list-group-active-color: var(--bs-emphasis-color);
  4965. --bs-list-group-active-bg: var(--bs-danger-text);
  4966. --bs-list-group-active-border-color: var(--bs-danger-text);
  4967. }
  4968. .list-group-item-light {
  4969. --bs-list-group-color: var(--bs-light-text);
  4970. --bs-list-group-bg: var(--bs-light-bg-subtle);
  4971. --bs-list-group-border-color: var(--bs-light-border-subtle);
  4972. }
  4973. .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  4974. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4975. --bs-list-group-action-hover-bg: var(--bs-light-border-subtle);
  4976. }
  4977. .list-group-item-light.list-group-item-action:active {
  4978. --bs-list-group-active-color: var(--bs-emphasis-color);
  4979. --bs-list-group-active-bg: var(--bs-light-text);
  4980. --bs-list-group-active-border-color: var(--bs-light-text);
  4981. }
  4982. .list-group-item-dark {
  4983. --bs-list-group-color: var(--bs-dark-text);
  4984. --bs-list-group-bg: var(--bs-dark-bg-subtle);
  4985. --bs-list-group-border-color: var(--bs-dark-border-subtle);
  4986. }
  4987. .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  4988. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4989. --bs-list-group-action-hover-bg: var(--bs-dark-border-subtle);
  4990. }
  4991. .list-group-item-dark.list-group-item-action:active {
  4992. --bs-list-group-active-color: var(--bs-emphasis-color);
  4993. --bs-list-group-active-bg: var(--bs-dark-text);
  4994. --bs-list-group-active-border-color: var(--bs-dark-text);
  4995. }
  4996. .btn-close {
  4997. --bs-btn-close-color: #000;
  4998. --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");
  4999. --bs-btn-close-opacity: 0.5;
  5000. --bs-btn-close-hover-opacity: 0.75;
  5001. --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  5002. --bs-btn-close-focus-opacity: 1;
  5003. --bs-btn-close-disabled-opacity: 0.25;
  5004. --bs-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%);
  5005. box-sizing: content-box;
  5006. width: 1em;
  5007. height: 1em;
  5008. padding: 0.25em 0.25em;
  5009. color: var(--bs-btn-close-color);
  5010. background: transparent var(--bs-btn-close-bg) center/1em auto no-repeat;
  5011. border: 0;
  5012. border-radius: 0.375rem;
  5013. opacity: var(--bs-btn-close-opacity);
  5014. }
  5015. .btn-close:hover {
  5016. color: var(--bs-btn-close-color);
  5017. text-decoration: none;
  5018. opacity: var(--bs-btn-close-hover-opacity);
  5019. }
  5020. .btn-close:focus {
  5021. outline: 0;
  5022. box-shadow: var(--bs-btn-close-focus-shadow);
  5023. opacity: var(--bs-btn-close-focus-opacity);
  5024. }
  5025. .btn-close:disabled, .btn-close.disabled {
  5026. pointer-events: none;
  5027. -webkit-user-select: none;
  5028. -moz-user-select: none;
  5029. user-select: none;
  5030. opacity: var(--bs-btn-close-disabled-opacity);
  5031. }
  5032. .btn-close-white {
  5033. filter: var(--bs-btn-close-white-filter);
  5034. }
  5035. [data-bs-theme=dark] .btn-close {
  5036. filter: var(--bs-btn-close-white-filter);
  5037. }
  5038. .toast {
  5039. --bs-toast-zindex: 1090;
  5040. --bs-toast-padding-x: 0.75rem;
  5041. --bs-toast-padding-y: 0.5rem;
  5042. --bs-toast-spacing: 1.5rem;
  5043. --bs-toast-max-width: 350px;
  5044. --bs-toast-font-size: 0.875rem;
  5045. --bs-toast-color: ;
  5046. --bs-toast-bg: rgba(var(--bs-body-bg-rgb), 0.85);
  5047. --bs-toast-border-width: var(--bs-border-width);
  5048. --bs-toast-border-color: var(--bs-border-color-translucent);
  5049. --bs-toast-border-radius: var(--bs-border-radius);
  5050. --bs-toast-box-shadow: var(--bs-box-shadow);
  5051. --bs-toast-header-color: var(--bs-secondary-color);
  5052. --bs-toast-header-bg: rgba(var(--bs-body-bg-rgb), 0.85);
  5053. --bs-toast-header-border-color: var(--bs-border-color-translucent);
  5054. width: var(--bs-toast-max-width);
  5055. max-width: 100%;
  5056. font-size: var(--bs-toast-font-size);
  5057. color: var(--bs-toast-color);
  5058. pointer-events: auto;
  5059. background-color: var(--bs-toast-bg);
  5060. background-clip: padding-box;
  5061. border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
  5062. box-shadow: var(--bs-toast-box-shadow);
  5063. border-radius: var(--bs-toast-border-radius);
  5064. }
  5065. .toast.showing {
  5066. opacity: 0;
  5067. }
  5068. .toast:not(.show) {
  5069. display: none;
  5070. }
  5071. .toast-container {
  5072. --bs-toast-zindex: 1090;
  5073. position: absolute;
  5074. z-index: var(--bs-toast-zindex);
  5075. width: -webkit-max-content;
  5076. width: -moz-max-content;
  5077. width: max-content;
  5078. max-width: 100%;
  5079. pointer-events: none;
  5080. }
  5081. .toast-container > :not(:last-child) {
  5082. margin-bottom: var(--bs-toast-spacing);
  5083. }
  5084. .toast-header {
  5085. display: flex;
  5086. align-items: center;
  5087. padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
  5088. color: var(--bs-toast-header-color);
  5089. background-color: var(--bs-toast-header-bg);
  5090. background-clip: padding-box;
  5091. border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
  5092. border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
  5093. border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
  5094. }
  5095. .toast-header .btn-close {
  5096. margin-right: calc(-0.5 * var(--bs-toast-padding-x));
  5097. margin-left: var(--bs-toast-padding-x);
  5098. }
  5099. .toast-body {
  5100. padding: var(--bs-toast-padding-x);
  5101. word-wrap: break-word;
  5102. }
  5103. .modal {
  5104. --bs-modal-zindex: 1055;
  5105. --bs-modal-width: 500px;
  5106. --bs-modal-padding: 1rem;
  5107. --bs-modal-margin: 0.5rem;
  5108. --bs-modal-color: ;
  5109. --bs-modal-bg: var(--bs-body-bg);
  5110. --bs-modal-border-color: var(--bs-border-color-translucent);
  5111. --bs-modal-border-width: var(--bs-border-width);
  5112. --bs-modal-border-radius: var(--bs-border-radius-lg);
  5113. --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(var(--bs-body-color-rgb), 0.075);
  5114. --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
  5115. --bs-modal-header-padding-x: 1rem;
  5116. --bs-modal-header-padding-y: 1rem;
  5117. --bs-modal-header-padding: 1rem 1rem;
  5118. --bs-modal-header-border-color: var(--bs-border-color);
  5119. --bs-modal-header-border-width: var(--bs-border-width);
  5120. --bs-modal-title-line-height: 1.5;
  5121. --bs-modal-footer-gap: 0.5rem;
  5122. --bs-modal-footer-bg: ;
  5123. --bs-modal-footer-border-color: var(--bs-border-color);
  5124. --bs-modal-footer-border-width: var(--bs-border-width);
  5125. position: fixed;
  5126. top: 0;
  5127. left: 0;
  5128. z-index: var(--bs-modal-zindex);
  5129. display: none;
  5130. width: 100%;
  5131. height: 100%;
  5132. overflow-x: hidden;
  5133. overflow-y: auto;
  5134. outline: 0;
  5135. }
  5136. .modal-dialog {
  5137. position: relative;
  5138. width: auto;
  5139. margin: var(--bs-modal-margin);
  5140. pointer-events: none;
  5141. }
  5142. .modal.fade .modal-dialog {
  5143. transition: transform 0.3s ease-out;
  5144. transform: translate(0, -50px);
  5145. }
  5146. @media (prefers-reduced-motion: reduce) {
  5147. .modal.fade .modal-dialog {
  5148. transition: none;
  5149. }
  5150. }
  5151. .modal.show .modal-dialog {
  5152. transform: none;
  5153. }
  5154. .modal.modal-static .modal-dialog {
  5155. transform: scale(1.02);
  5156. }
  5157. .modal-dialog-scrollable {
  5158. height: calc(100% - var(--bs-modal-margin) * 2);
  5159. }
  5160. .modal-dialog-scrollable .modal-content {
  5161. max-height: 100%;
  5162. overflow: hidden;
  5163. }
  5164. .modal-dialog-scrollable .modal-body {
  5165. overflow-y: auto;
  5166. }
  5167. .modal-dialog-centered {
  5168. display: flex;
  5169. align-items: center;
  5170. min-height: calc(100% - var(--bs-modal-margin) * 2);
  5171. }
  5172. .modal-content {
  5173. position: relative;
  5174. display: flex;
  5175. flex-direction: column;
  5176. width: 100%;
  5177. color: var(--bs-modal-color);
  5178. pointer-events: auto;
  5179. background-color: var(--bs-modal-bg);
  5180. background-clip: padding-box;
  5181. border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  5182. border-radius: var(--bs-modal-border-radius);
  5183. outline: 0;
  5184. }
  5185. .modal-backdrop {
  5186. --bs-backdrop-zindex: 1050;
  5187. --bs-backdrop-bg: #000;
  5188. --bs-backdrop-opacity: 0.5;
  5189. position: fixed;
  5190. top: 0;
  5191. left: 0;
  5192. z-index: var(--bs-backdrop-zindex);
  5193. width: 100vw;
  5194. height: 100vh;
  5195. background-color: var(--bs-backdrop-bg);
  5196. }
  5197. .modal-backdrop.fade {
  5198. opacity: 0;
  5199. }
  5200. .modal-backdrop.show {
  5201. opacity: var(--bs-backdrop-opacity);
  5202. }
  5203. .modal-header {
  5204. display: flex;
  5205. flex-shrink: 0;
  5206. align-items: center;
  5207. justify-content: space-between;
  5208. padding: var(--bs-modal-header-padding);
  5209. border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  5210. border-top-left-radius: var(--bs-modal-inner-border-radius);
  5211. border-top-right-radius: var(--bs-modal-inner-border-radius);
  5212. }
  5213. .modal-header .btn-close {
  5214. padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  5215. margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
  5216. }
  5217. .modal-title {
  5218. margin-bottom: 0;
  5219. line-height: var(--bs-modal-title-line-height);
  5220. }
  5221. .modal-body {
  5222. position: relative;
  5223. flex: 1 1 auto;
  5224. padding: var(--bs-modal-padding);
  5225. }
  5226. .modal-footer {
  5227. display: flex;
  5228. flex-shrink: 0;
  5229. flex-wrap: wrap;
  5230. align-items: center;
  5231. justify-content: flex-end;
  5232. padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
  5233. background-color: var(--bs-modal-footer-bg);
  5234. border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  5235. border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  5236. border-bottom-left-radius: var(--bs-modal-inner-border-radius);
  5237. }
  5238. .modal-footer > * {
  5239. margin: calc(var(--bs-modal-footer-gap) * 0.5);
  5240. }
  5241. @media (min-width: 576px) {
  5242. .modal {
  5243. --bs-modal-margin: 1.75rem;
  5244. --bs-modal-box-shadow: 0 0.5rem 1rem rgba(var(--bs-body-color-rgb), 0.15);
  5245. }
  5246. .modal-dialog {
  5247. max-width: var(--bs-modal-width);
  5248. margin-right: auto;
  5249. margin-left: auto;
  5250. }
  5251. .modal-sm {
  5252. --bs-modal-width: 300px;
  5253. }
  5254. }
  5255. @media (min-width: 992px) {
  5256. .modal-lg,
  5257. .modal-xl {
  5258. --bs-modal-width: 800px;
  5259. }
  5260. }
  5261. @media (min-width: 1200px) {
  5262. .modal-xl {
  5263. --bs-modal-width: 1140px;
  5264. }
  5265. }
  5266. .modal-fullscreen {
  5267. width: 100vw;
  5268. max-width: none;
  5269. height: 100%;
  5270. margin: 0;
  5271. }
  5272. .modal-fullscreen .modal-content {
  5273. height: 100%;
  5274. border: 0;
  5275. border-radius: 0;
  5276. }
  5277. .modal-fullscreen .modal-header,
  5278. .modal-fullscreen .modal-footer {
  5279. border-radius: 0;
  5280. }
  5281. .modal-fullscreen .modal-body {
  5282. overflow-y: auto;
  5283. }
  5284. @media (max-width: 575.98px) {
  5285. .modal-fullscreen-sm-down {
  5286. width: 100vw;
  5287. max-width: none;
  5288. height: 100%;
  5289. margin: 0;
  5290. }
  5291. .modal-fullscreen-sm-down .modal-content {
  5292. height: 100%;
  5293. border: 0;
  5294. border-radius: 0;
  5295. }
  5296. .modal-fullscreen-sm-down .modal-header,
  5297. .modal-fullscreen-sm-down .modal-footer {
  5298. border-radius: 0;
  5299. }
  5300. .modal-fullscreen-sm-down .modal-body {
  5301. overflow-y: auto;
  5302. }
  5303. }
  5304. @media (max-width: 767.98px) {
  5305. .modal-fullscreen-md-down {
  5306. width: 100vw;
  5307. max-width: none;
  5308. height: 100%;
  5309. margin: 0;
  5310. }
  5311. .modal-fullscreen-md-down .modal-content {
  5312. height: 100%;
  5313. border: 0;
  5314. border-radius: 0;
  5315. }
  5316. .modal-fullscreen-md-down .modal-header,
  5317. .modal-fullscreen-md-down .modal-footer {
  5318. border-radius: 0;
  5319. }
  5320. .modal-fullscreen-md-down .modal-body {
  5321. overflow-y: auto;
  5322. }
  5323. }
  5324. @media (max-width: 991.98px) {
  5325. .modal-fullscreen-lg-down {
  5326. width: 100vw;
  5327. max-width: none;
  5328. height: 100%;
  5329. margin: 0;
  5330. }
  5331. .modal-fullscreen-lg-down .modal-content {
  5332. height: 100%;
  5333. border: 0;
  5334. border-radius: 0;
  5335. }
  5336. .modal-fullscreen-lg-down .modal-header,
  5337. .modal-fullscreen-lg-down .modal-footer {
  5338. border-radius: 0;
  5339. }
  5340. .modal-fullscreen-lg-down .modal-body {
  5341. overflow-y: auto;
  5342. }
  5343. }
  5344. @media (max-width: 1199.98px) {
  5345. .modal-fullscreen-xl-down {
  5346. width: 100vw;
  5347. max-width: none;
  5348. height: 100%;
  5349. margin: 0;
  5350. }
  5351. .modal-fullscreen-xl-down .modal-content {
  5352. height: 100%;
  5353. border: 0;
  5354. border-radius: 0;
  5355. }
  5356. .modal-fullscreen-xl-down .modal-header,
  5357. .modal-fullscreen-xl-down .modal-footer {
  5358. border-radius: 0;
  5359. }
  5360. .modal-fullscreen-xl-down .modal-body {
  5361. overflow-y: auto;
  5362. }
  5363. }
  5364. @media (max-width: 1399.98px) {
  5365. .modal-fullscreen-xxl-down {
  5366. width: 100vw;
  5367. max-width: none;
  5368. height: 100%;
  5369. margin: 0;
  5370. }
  5371. .modal-fullscreen-xxl-down .modal-content {
  5372. height: 100%;
  5373. border: 0;
  5374. border-radius: 0;
  5375. }
  5376. .modal-fullscreen-xxl-down .modal-header,
  5377. .modal-fullscreen-xxl-down .modal-footer {
  5378. border-radius: 0;
  5379. }
  5380. .modal-fullscreen-xxl-down .modal-body {
  5381. overflow-y: auto;
  5382. }
  5383. }
  5384. .tooltip {
  5385. --bs-tooltip-zindex: 1080;
  5386. --bs-tooltip-max-width: 200px;
  5387. --bs-tooltip-padding-x: 0.5rem;
  5388. --bs-tooltip-padding-y: 0.25rem;
  5389. --bs-tooltip-margin: ;
  5390. --bs-tooltip-font-size: 0.875rem;
  5391. --bs-tooltip-color: var(--bs-body-bg);
  5392. --bs-tooltip-bg: var(--bs-emphasis-color);
  5393. --bs-tooltip-border-radius: var(--bs-border-radius);
  5394. --bs-tooltip-opacity: 0.9;
  5395. --bs-tooltip-arrow-width: 0.8rem;
  5396. --bs-tooltip-arrow-height: 0.4rem;
  5397. z-index: var(--bs-tooltip-zindex);
  5398. display: block;
  5399. padding: var(--bs-tooltip-arrow-height);
  5400. margin: var(--bs-tooltip-margin);
  5401. font-family: var(--bs-font-sans-serif);
  5402. font-style: normal;
  5403. font-weight: 400;
  5404. line-height: 1.5;
  5405. text-align: left;
  5406. text-align: start;
  5407. text-decoration: none;
  5408. text-shadow: none;
  5409. text-transform: none;
  5410. letter-spacing: normal;
  5411. word-break: normal;
  5412. white-space: normal;
  5413. word-spacing: normal;
  5414. line-break: auto;
  5415. font-size: var(--bs-tooltip-font-size);
  5416. word-wrap: break-word;
  5417. opacity: 0;
  5418. }
  5419. .tooltip.show {
  5420. opacity: var(--bs-tooltip-opacity);
  5421. }
  5422. .tooltip .tooltip-arrow {
  5423. display: block;
  5424. width: var(--bs-tooltip-arrow-width);
  5425. height: var(--bs-tooltip-arrow-height);
  5426. }
  5427. .tooltip .tooltip-arrow::before {
  5428. position: absolute;
  5429. content: "";
  5430. border-color: transparent;
  5431. border-style: solid;
  5432. }
  5433. .bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  5434. bottom: 0;
  5435. }
  5436. .bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  5437. top: -1px;
  5438. border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  5439. border-top-color: var(--bs-tooltip-bg);
  5440. }
  5441. /* rtl:begin:ignore */
  5442. .bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  5443. left: 0;
  5444. width: var(--bs-tooltip-arrow-height);
  5445. height: var(--bs-tooltip-arrow-width);
  5446. }
  5447. .bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  5448. right: -1px;
  5449. border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  5450. border-right-color: var(--bs-tooltip-bg);
  5451. }
  5452. /* rtl:end:ignore */
  5453. .bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  5454. top: 0;
  5455. }
  5456. .bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  5457. bottom: -1px;
  5458. border-width: 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
  5459. border-bottom-color: var(--bs-tooltip-bg);
  5460. }
  5461. /* rtl:begin:ignore */
  5462. .bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  5463. right: 0;
  5464. width: var(--bs-tooltip-arrow-height);
  5465. height: var(--bs-tooltip-arrow-width);
  5466. }
  5467. .bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  5468. left: -1px;
  5469. border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
  5470. border-left-color: var(--bs-tooltip-bg);
  5471. }
  5472. /* rtl:end:ignore */
  5473. .tooltip-inner {
  5474. max-width: var(--bs-tooltip-max-width);
  5475. padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
  5476. color: var(--bs-tooltip-color);
  5477. text-align: center;
  5478. background-color: var(--bs-tooltip-bg);
  5479. border-radius: var(--bs-tooltip-border-radius);
  5480. }
  5481. .popover {
  5482. --bs-popover-zindex: 1070;
  5483. --bs-popover-max-width: 276px;
  5484. --bs-popover-font-size: 0.875rem;
  5485. --bs-popover-bg: var(--bs-body-bg);
  5486. --bs-popover-border-width: var(--bs-border-width);
  5487. --bs-popover-border-color: var(--bs-border-color-translucent);
  5488. --bs-popover-border-radius: var(--bs-border-radius-lg);
  5489. --bs-popover-inner-border-radius: calc(var(--bs-border-radius-lg) - var(--bs-border-width));
  5490. --bs-popover-box-shadow: 0 0.5rem 1rem rgba(var(--bs-body-color-rgb), 0.15);
  5491. --bs-popover-header-padding-x: 1rem;
  5492. --bs-popover-header-padding-y: 0.5rem;
  5493. --bs-popover-header-font-size: 1rem;
  5494. --bs-popover-header-color: ;
  5495. --bs-popover-header-bg: var(--bs-secondary-bg);
  5496. --bs-popover-body-padding-x: 1rem;
  5497. --bs-popover-body-padding-y: 1rem;
  5498. --bs-popover-body-color: var(--bs-body-color);
  5499. --bs-popover-arrow-width: 1rem;
  5500. --bs-popover-arrow-height: 0.5rem;
  5501. --bs-popover-arrow-border: var(--bs-popover-border-color);
  5502. z-index: var(--bs-popover-zindex);
  5503. display: block;
  5504. max-width: var(--bs-popover-max-width);
  5505. font-family: var(--bs-font-sans-serif);
  5506. font-style: normal;
  5507. font-weight: 400;
  5508. line-height: 1.5;
  5509. text-align: left;
  5510. text-align: start;
  5511. text-decoration: none;
  5512. text-shadow: none;
  5513. text-transform: none;
  5514. letter-spacing: normal;
  5515. word-break: normal;
  5516. white-space: normal;
  5517. word-spacing: normal;
  5518. line-break: auto;
  5519. font-size: var(--bs-popover-font-size);
  5520. word-wrap: break-word;
  5521. background-color: var(--bs-popover-bg);
  5522. background-clip: padding-box;
  5523. border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  5524. border-radius: var(--bs-popover-border-radius);
  5525. }
  5526. .popover .popover-arrow {
  5527. display: block;
  5528. width: var(--bs-popover-arrow-width);
  5529. height: var(--bs-popover-arrow-height);
  5530. }
  5531. .popover .popover-arrow::before, .popover .popover-arrow::after {
  5532. position: absolute;
  5533. display: block;
  5534. content: "";
  5535. border-color: transparent;
  5536. border-style: solid;
  5537. border-width: 0;
  5538. }
  5539. .bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  5540. bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  5541. }
  5542. .bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before, .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  5543. border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
  5544. }
  5545. .bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  5546. bottom: 0;
  5547. border-top-color: var(--bs-popover-arrow-border);
  5548. }
  5549. .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  5550. bottom: var(--bs-popover-border-width);
  5551. border-top-color: var(--bs-popover-bg);
  5552. }
  5553. /* rtl:begin:ignore */
  5554. .bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  5555. left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  5556. width: var(--bs-popover-arrow-height);
  5557. height: var(--bs-popover-arrow-width);
  5558. }
  5559. .bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before, .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  5560. border-width: calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
  5561. }
  5562. .bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  5563. left: 0;
  5564. border-right-color: var(--bs-popover-arrow-border);
  5565. }
  5566. .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  5567. left: var(--bs-popover-border-width);
  5568. border-right-color: var(--bs-popover-bg);
  5569. }
  5570. /* rtl:end:ignore */
  5571. .bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  5572. top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  5573. }
  5574. .bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before, .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  5575. border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
  5576. }
  5577. .bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  5578. top: 0;
  5579. border-bottom-color: var(--bs-popover-arrow-border);
  5580. }
  5581. .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  5582. top: var(--bs-popover-border-width);
  5583. border-bottom-color: var(--bs-popover-bg);
  5584. }
  5585. .bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  5586. position: absolute;
  5587. top: 0;
  5588. left: 50%;
  5589. display: block;
  5590. width: var(--bs-popover-arrow-width);
  5591. margin-left: calc(-0.5 * var(--bs-popover-arrow-width));
  5592. content: "";
  5593. border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
  5594. }
  5595. /* rtl:begin:ignore */
  5596. .bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  5597. right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  5598. width: var(--bs-popover-arrow-height);
  5599. height: var(--bs-popover-arrow-width);
  5600. }
  5601. .bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before, .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  5602. border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
  5603. }
  5604. .bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  5605. right: 0;
  5606. border-left-color: var(--bs-popover-arrow-border);
  5607. }
  5608. .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  5609. right: var(--bs-popover-border-width);
  5610. border-left-color: var(--bs-popover-bg);
  5611. }
  5612. /* rtl:end:ignore */
  5613. .popover-header {
  5614. padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
  5615. margin-bottom: 0;
  5616. font-size: var(--bs-popover-header-font-size);
  5617. color: var(--bs-popover-header-color);
  5618. background-color: var(--bs-popover-header-bg);
  5619. border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  5620. border-top-left-radius: var(--bs-popover-inner-border-radius);
  5621. border-top-right-radius: var(--bs-popover-inner-border-radius);
  5622. }
  5623. .popover-header:empty {
  5624. display: none;
  5625. }
  5626. .popover-body {
  5627. padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
  5628. color: var(--bs-popover-body-color);
  5629. }
  5630. .carousel {
  5631. position: relative;
  5632. }
  5633. .carousel.pointer-event {
  5634. touch-action: pan-y;
  5635. }
  5636. .carousel-inner {
  5637. position: relative;
  5638. width: 100%;
  5639. overflow: hidden;
  5640. }
  5641. .carousel-inner::after {
  5642. display: block;
  5643. clear: both;
  5644. content: "";
  5645. }
  5646. .carousel-item {
  5647. position: relative;
  5648. display: none;
  5649. float: left;
  5650. width: 100%;
  5651. margin-right: -100%;
  5652. -webkit-backface-visibility: hidden;
  5653. backface-visibility: hidden;
  5654. transition: transform 0.6s ease-in-out;
  5655. }
  5656. @media (prefers-reduced-motion: reduce) {
  5657. .carousel-item {
  5658. transition: none;
  5659. }
  5660. }
  5661. .carousel-item.active,
  5662. .carousel-item-next,
  5663. .carousel-item-prev {
  5664. display: block;
  5665. }
  5666. .carousel-item-next:not(.carousel-item-start),
  5667. .active.carousel-item-end {
  5668. transform: translateX(100%);
  5669. }
  5670. .carousel-item-prev:not(.carousel-item-end),
  5671. .active.carousel-item-start {
  5672. transform: translateX(-100%);
  5673. }
  5674. .carousel-fade .carousel-item {
  5675. opacity: 0;
  5676. transition-property: opacity;
  5677. transform: none;
  5678. }
  5679. .carousel-fade .carousel-item.active,
  5680. .carousel-fade .carousel-item-next.carousel-item-start,
  5681. .carousel-fade .carousel-item-prev.carousel-item-end {
  5682. z-index: 1;
  5683. opacity: 1;
  5684. }
  5685. .carousel-fade .active.carousel-item-start,
  5686. .carousel-fade .active.carousel-item-end {
  5687. z-index: 0;
  5688. opacity: 0;
  5689. transition: opacity 0s 0.6s;
  5690. }
  5691. @media (prefers-reduced-motion: reduce) {
  5692. .carousel-fade .active.carousel-item-start,
  5693. .carousel-fade .active.carousel-item-end {
  5694. transition: none;
  5695. }
  5696. }
  5697. .carousel-control-prev,
  5698. .carousel-control-next {
  5699. position: absolute;
  5700. top: 0;
  5701. bottom: 0;
  5702. z-index: 1;
  5703. display: flex;
  5704. align-items: center;
  5705. justify-content: center;
  5706. width: 15%;
  5707. padding: 0;
  5708. color: #fff;
  5709. text-align: center;
  5710. background: none;
  5711. border: 0;
  5712. opacity: 0.5;
  5713. transition: opacity 0.15s ease;
  5714. }
  5715. @media (prefers-reduced-motion: reduce) {
  5716. .carousel-control-prev,
  5717. .carousel-control-next {
  5718. transition: none;
  5719. }
  5720. }
  5721. .carousel-control-prev:hover, .carousel-control-prev:focus,
  5722. .carousel-control-next:hover,
  5723. .carousel-control-next:focus {
  5724. color: #fff;
  5725. text-decoration: none;
  5726. outline: 0;
  5727. opacity: 0.9;
  5728. }
  5729. .carousel-control-prev {
  5730. left: 0;
  5731. }
  5732. .carousel-control-next {
  5733. right: 0;
  5734. }
  5735. .carousel-control-prev-icon,
  5736. .carousel-control-next-icon {
  5737. display: inline-block;
  5738. width: 2rem;
  5739. height: 2rem;
  5740. background-repeat: no-repeat;
  5741. background-position: 50%;
  5742. background-size: 100% 100%;
  5743. }
  5744. /* rtl:options: {
  5745. "autoRename": true,
  5746. "stringMap":[ {
  5747. "name" : "prev-next",
  5748. "search" : "prev",
  5749. "replace" : "next"
  5750. } ]
  5751. } */
  5752. .carousel-control-prev-icon {
  5753. 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");
  5754. }
  5755. .carousel-control-next-icon {
  5756. 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");
  5757. }
  5758. .carousel-indicators {
  5759. position: absolute;
  5760. right: 0;
  5761. bottom: 0;
  5762. left: 0;
  5763. z-index: 2;
  5764. display: flex;
  5765. justify-content: center;
  5766. padding: 0;
  5767. margin-right: 15%;
  5768. margin-bottom: 1rem;
  5769. margin-left: 15%;
  5770. list-style: none;
  5771. }
  5772. .carousel-indicators [data-bs-target] {
  5773. box-sizing: content-box;
  5774. flex: 0 1 auto;
  5775. width: 30px;
  5776. height: 3px;
  5777. padding: 0;
  5778. margin-right: 3px;
  5779. margin-left: 3px;
  5780. text-indent: -999px;
  5781. cursor: pointer;
  5782. background-color: #fff;
  5783. background-clip: padding-box;
  5784. border: 0;
  5785. border-top: 10px solid transparent;
  5786. border-bottom: 10px solid transparent;
  5787. opacity: 0.5;
  5788. transition: opacity 0.6s ease;
  5789. }
  5790. @media (prefers-reduced-motion: reduce) {
  5791. .carousel-indicators [data-bs-target] {
  5792. transition: none;
  5793. }
  5794. }
  5795. .carousel-indicators .active {
  5796. opacity: 1;
  5797. }
  5798. .carousel-caption {
  5799. position: absolute;
  5800. right: 15%;
  5801. bottom: 1.25rem;
  5802. left: 15%;
  5803. padding-top: 1.25rem;
  5804. padding-bottom: 1.25rem;
  5805. color: #fff;
  5806. text-align: center;
  5807. }
  5808. .carousel-dark .carousel-control-prev-icon,
  5809. .carousel-dark .carousel-control-next-icon {
  5810. filter: invert(1) grayscale(100);
  5811. }
  5812. .carousel-dark .carousel-indicators [data-bs-target] {
  5813. background-color: #000;
  5814. }
  5815. .carousel-dark .carousel-caption {
  5816. color: #000;
  5817. }
  5818. [data-bs-theme=dark] .carousel .carousel-control-prev-icon,
  5819. [data-bs-theme=dark] .carousel .carousel-control-next-icon {
  5820. filter: invert(1) grayscale(100);
  5821. }
  5822. [data-bs-theme=dark] .carousel .carousel-indicators [data-bs-target] {
  5823. background-color: #000;
  5824. }
  5825. [data-bs-theme=dark] .carousel .carousel-caption {
  5826. color: #000;
  5827. }
  5828. .spinner-grow,
  5829. .spinner-border {
  5830. display: inline-block;
  5831. width: var(--bs-spinner-width);
  5832. height: var(--bs-spinner-height);
  5833. vertical-align: var(--bs-spinner-vertical-align);
  5834. border-radius: 50%;
  5835. animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
  5836. }
  5837. @keyframes spinner-border {
  5838. to {
  5839. transform: rotate(360deg) /* rtl:ignore */;
  5840. }
  5841. }
  5842. .spinner-border {
  5843. --bs-spinner-width: 2rem;
  5844. --bs-spinner-height: 2rem;
  5845. --bs-spinner-vertical-align: -0.125em;
  5846. --bs-spinner-border-width: 0.25em;
  5847. --bs-spinner-animation-speed: 0.75s;
  5848. --bs-spinner-animation-name: spinner-border;
  5849. border: var(--bs-spinner-border-width) solid currentcolor;
  5850. border-right-color: transparent;
  5851. }
  5852. .spinner-border-sm {
  5853. --bs-spinner-width: 1rem;
  5854. --bs-spinner-height: 1rem;
  5855. --bs-spinner-border-width: 0.2em;
  5856. }
  5857. @keyframes spinner-grow {
  5858. 0% {
  5859. transform: scale(0);
  5860. }
  5861. 50% {
  5862. opacity: 1;
  5863. transform: none;
  5864. }
  5865. }
  5866. .spinner-grow {
  5867. --bs-spinner-width: 2rem;
  5868. --bs-spinner-height: 2rem;
  5869. --bs-spinner-vertical-align: -0.125em;
  5870. --bs-spinner-animation-speed: 0.75s;
  5871. --bs-spinner-animation-name: spinner-grow;
  5872. background-color: currentcolor;
  5873. opacity: 0;
  5874. }
  5875. .spinner-grow-sm {
  5876. --bs-spinner-width: 1rem;
  5877. --bs-spinner-height: 1rem;
  5878. }
  5879. @media (prefers-reduced-motion: reduce) {
  5880. .spinner-border,
  5881. .spinner-grow {
  5882. --bs-spinner-animation-speed: 1.5s;
  5883. }
  5884. }
  5885. .offcanvas, .offcanvas-xxl, .offcanvas-xl, .offcanvas-lg, .offcanvas-md, .offcanvas-sm {
  5886. --bs-offcanvas-zindex: 1045;
  5887. --bs-offcanvas-width: 400px;
  5888. --bs-offcanvas-height: 30vh;
  5889. --bs-offcanvas-padding-x: 1rem;
  5890. --bs-offcanvas-padding-y: 1rem;
  5891. --bs-offcanvas-color: var(--bs-body-color);
  5892. --bs-offcanvas-bg: var(--bs-body-bg);
  5893. --bs-offcanvas-border-width: var(--bs-border-width);
  5894. --bs-offcanvas-border-color: var(--bs-border-color-translucent);
  5895. --bs-offcanvas-box-shadow: 0 0.125rem 0.25rem rgba(var(--bs-body-color-rgb), 0.075);
  5896. --bs-offcanvas-transition: transform 0.3s ease-in-out;
  5897. --bs-offcanvas-title-line-height: 1.5;
  5898. }
  5899. @media (max-width: 575.98px) {
  5900. .offcanvas-sm {
  5901. position: fixed;
  5902. bottom: 0;
  5903. z-index: var(--bs-offcanvas-zindex);
  5904. display: flex;
  5905. flex-direction: column;
  5906. max-width: 100%;
  5907. color: var(--bs-offcanvas-color);
  5908. visibility: hidden;
  5909. background-color: var(--bs-offcanvas-bg);
  5910. background-clip: padding-box;
  5911. outline: 0;
  5912. transition: var(--bs-offcanvas-transition);
  5913. }
  5914. }
  5915. @media (max-width: 575.98px) and (prefers-reduced-motion: reduce) {
  5916. .offcanvas-sm {
  5917. transition: none;
  5918. }
  5919. }
  5920. @media (max-width: 575.98px) {
  5921. .offcanvas-sm.offcanvas-start {
  5922. top: 0;
  5923. left: 0;
  5924. width: var(--bs-offcanvas-width);
  5925. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5926. transform: translateX(-100%);
  5927. }
  5928. }
  5929. @media (max-width: 575.98px) {
  5930. .offcanvas-sm.offcanvas-end {
  5931. top: 0;
  5932. right: 0;
  5933. width: var(--bs-offcanvas-width);
  5934. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5935. transform: translateX(100%);
  5936. }
  5937. }
  5938. @media (max-width: 575.98px) {
  5939. .offcanvas-sm.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. }
  5949. @media (max-width: 575.98px) {
  5950. .offcanvas-sm.offcanvas-bottom {
  5951. right: 0;
  5952. left: 0;
  5953. height: var(--bs-offcanvas-height);
  5954. max-height: 100%;
  5955. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5956. transform: translateY(100%);
  5957. }
  5958. }
  5959. @media (max-width: 575.98px) {
  5960. .offcanvas-sm.showing, .offcanvas-sm.show:not(.hiding) {
  5961. transform: none;
  5962. }
  5963. }
  5964. @media (max-width: 575.98px) {
  5965. .offcanvas-sm.showing, .offcanvas-sm.hiding, .offcanvas-sm.show {
  5966. visibility: visible;
  5967. }
  5968. }
  5969. @media (min-width: 576px) {
  5970. .offcanvas-sm {
  5971. --bs-offcanvas-height: auto;
  5972. --bs-offcanvas-border-width: 0;
  5973. background-color: transparent !important;
  5974. }
  5975. .offcanvas-sm .offcanvas-header {
  5976. display: none;
  5977. }
  5978. .offcanvas-sm .offcanvas-body {
  5979. display: flex;
  5980. flex-grow: 0;
  5981. padding: 0;
  5982. overflow-y: visible;
  5983. background-color: transparent !important;
  5984. }
  5985. }
  5986. @media (max-width: 767.98px) {
  5987. .offcanvas-md {
  5988. position: fixed;
  5989. bottom: 0;
  5990. z-index: var(--bs-offcanvas-zindex);
  5991. display: flex;
  5992. flex-direction: column;
  5993. max-width: 100%;
  5994. color: var(--bs-offcanvas-color);
  5995. visibility: hidden;
  5996. background-color: var(--bs-offcanvas-bg);
  5997. background-clip: padding-box;
  5998. outline: 0;
  5999. transition: var(--bs-offcanvas-transition);
  6000. }
  6001. }
  6002. @media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
  6003. .offcanvas-md {
  6004. transition: none;
  6005. }
  6006. }
  6007. @media (max-width: 767.98px) {
  6008. .offcanvas-md.offcanvas-start {
  6009. top: 0;
  6010. left: 0;
  6011. width: var(--bs-offcanvas-width);
  6012. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6013. transform: translateX(-100%);
  6014. }
  6015. }
  6016. @media (max-width: 767.98px) {
  6017. .offcanvas-md.offcanvas-end {
  6018. top: 0;
  6019. right: 0;
  6020. width: var(--bs-offcanvas-width);
  6021. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6022. transform: translateX(100%);
  6023. }
  6024. }
  6025. @media (max-width: 767.98px) {
  6026. .offcanvas-md.offcanvas-top {
  6027. top: 0;
  6028. right: 0;
  6029. left: 0;
  6030. height: var(--bs-offcanvas-height);
  6031. max-height: 100%;
  6032. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6033. transform: translateY(-100%);
  6034. }
  6035. }
  6036. @media (max-width: 767.98px) {
  6037. .offcanvas-md.offcanvas-bottom {
  6038. right: 0;
  6039. left: 0;
  6040. height: var(--bs-offcanvas-height);
  6041. max-height: 100%;
  6042. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6043. transform: translateY(100%);
  6044. }
  6045. }
  6046. @media (max-width: 767.98px) {
  6047. .offcanvas-md.showing, .offcanvas-md.show:not(.hiding) {
  6048. transform: none;
  6049. }
  6050. }
  6051. @media (max-width: 767.98px) {
  6052. .offcanvas-md.showing, .offcanvas-md.hiding, .offcanvas-md.show {
  6053. visibility: visible;
  6054. }
  6055. }
  6056. @media (min-width: 768px) {
  6057. .offcanvas-md {
  6058. --bs-offcanvas-height: auto;
  6059. --bs-offcanvas-border-width: 0;
  6060. background-color: transparent !important;
  6061. }
  6062. .offcanvas-md .offcanvas-header {
  6063. display: none;
  6064. }
  6065. .offcanvas-md .offcanvas-body {
  6066. display: flex;
  6067. flex-grow: 0;
  6068. padding: 0;
  6069. overflow-y: visible;
  6070. background-color: transparent !important;
  6071. }
  6072. }
  6073. @media (max-width: 991.98px) {
  6074. .offcanvas-lg {
  6075. position: fixed;
  6076. bottom: 0;
  6077. z-index: var(--bs-offcanvas-zindex);
  6078. display: flex;
  6079. flex-direction: column;
  6080. max-width: 100%;
  6081. color: var(--bs-offcanvas-color);
  6082. visibility: hidden;
  6083. background-color: var(--bs-offcanvas-bg);
  6084. background-clip: padding-box;
  6085. outline: 0;
  6086. transition: var(--bs-offcanvas-transition);
  6087. }
  6088. }
  6089. @media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
  6090. .offcanvas-lg {
  6091. transition: none;
  6092. }
  6093. }
  6094. @media (max-width: 991.98px) {
  6095. .offcanvas-lg.offcanvas-start {
  6096. top: 0;
  6097. left: 0;
  6098. width: var(--bs-offcanvas-width);
  6099. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6100. transform: translateX(-100%);
  6101. }
  6102. }
  6103. @media (max-width: 991.98px) {
  6104. .offcanvas-lg.offcanvas-end {
  6105. top: 0;
  6106. right: 0;
  6107. width: var(--bs-offcanvas-width);
  6108. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6109. transform: translateX(100%);
  6110. }
  6111. }
  6112. @media (max-width: 991.98px) {
  6113. .offcanvas-lg.offcanvas-top {
  6114. top: 0;
  6115. right: 0;
  6116. left: 0;
  6117. height: var(--bs-offcanvas-height);
  6118. max-height: 100%;
  6119. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6120. transform: translateY(-100%);
  6121. }
  6122. }
  6123. @media (max-width: 991.98px) {
  6124. .offcanvas-lg.offcanvas-bottom {
  6125. right: 0;
  6126. left: 0;
  6127. height: var(--bs-offcanvas-height);
  6128. max-height: 100%;
  6129. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6130. transform: translateY(100%);
  6131. }
  6132. }
  6133. @media (max-width: 991.98px) {
  6134. .offcanvas-lg.showing, .offcanvas-lg.show:not(.hiding) {
  6135. transform: none;
  6136. }
  6137. }
  6138. @media (max-width: 991.98px) {
  6139. .offcanvas-lg.showing, .offcanvas-lg.hiding, .offcanvas-lg.show {
  6140. visibility: visible;
  6141. }
  6142. }
  6143. @media (min-width: 992px) {
  6144. .offcanvas-lg {
  6145. --bs-offcanvas-height: auto;
  6146. --bs-offcanvas-border-width: 0;
  6147. background-color: transparent !important;
  6148. }
  6149. .offcanvas-lg .offcanvas-header {
  6150. display: none;
  6151. }
  6152. .offcanvas-lg .offcanvas-body {
  6153. display: flex;
  6154. flex-grow: 0;
  6155. padding: 0;
  6156. overflow-y: visible;
  6157. background-color: transparent !important;
  6158. }
  6159. }
  6160. @media (max-width: 1199.98px) {
  6161. .offcanvas-xl {
  6162. position: fixed;
  6163. bottom: 0;
  6164. z-index: var(--bs-offcanvas-zindex);
  6165. display: flex;
  6166. flex-direction: column;
  6167. max-width: 100%;
  6168. color: var(--bs-offcanvas-color);
  6169. visibility: hidden;
  6170. background-color: var(--bs-offcanvas-bg);
  6171. background-clip: padding-box;
  6172. outline: 0;
  6173. transition: var(--bs-offcanvas-transition);
  6174. }
  6175. }
  6176. @media (max-width: 1199.98px) and (prefers-reduced-motion: reduce) {
  6177. .offcanvas-xl {
  6178. transition: none;
  6179. }
  6180. }
  6181. @media (max-width: 1199.98px) {
  6182. .offcanvas-xl.offcanvas-start {
  6183. top: 0;
  6184. left: 0;
  6185. width: var(--bs-offcanvas-width);
  6186. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6187. transform: translateX(-100%);
  6188. }
  6189. }
  6190. @media (max-width: 1199.98px) {
  6191. .offcanvas-xl.offcanvas-end {
  6192. top: 0;
  6193. right: 0;
  6194. width: var(--bs-offcanvas-width);
  6195. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6196. transform: translateX(100%);
  6197. }
  6198. }
  6199. @media (max-width: 1199.98px) {
  6200. .offcanvas-xl.offcanvas-top {
  6201. top: 0;
  6202. right: 0;
  6203. left: 0;
  6204. height: var(--bs-offcanvas-height);
  6205. max-height: 100%;
  6206. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6207. transform: translateY(-100%);
  6208. }
  6209. }
  6210. @media (max-width: 1199.98px) {
  6211. .offcanvas-xl.offcanvas-bottom {
  6212. right: 0;
  6213. left: 0;
  6214. height: var(--bs-offcanvas-height);
  6215. max-height: 100%;
  6216. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6217. transform: translateY(100%);
  6218. }
  6219. }
  6220. @media (max-width: 1199.98px) {
  6221. .offcanvas-xl.showing, .offcanvas-xl.show:not(.hiding) {
  6222. transform: none;
  6223. }
  6224. }
  6225. @media (max-width: 1199.98px) {
  6226. .offcanvas-xl.showing, .offcanvas-xl.hiding, .offcanvas-xl.show {
  6227. visibility: visible;
  6228. }
  6229. }
  6230. @media (min-width: 1200px) {
  6231. .offcanvas-xl {
  6232. --bs-offcanvas-height: auto;
  6233. --bs-offcanvas-border-width: 0;
  6234. background-color: transparent !important;
  6235. }
  6236. .offcanvas-xl .offcanvas-header {
  6237. display: none;
  6238. }
  6239. .offcanvas-xl .offcanvas-body {
  6240. display: flex;
  6241. flex-grow: 0;
  6242. padding: 0;
  6243. overflow-y: visible;
  6244. background-color: transparent !important;
  6245. }
  6246. }
  6247. @media (max-width: 1399.98px) {
  6248. .offcanvas-xxl {
  6249. position: fixed;
  6250. bottom: 0;
  6251. z-index: var(--bs-offcanvas-zindex);
  6252. display: flex;
  6253. flex-direction: column;
  6254. max-width: 100%;
  6255. color: var(--bs-offcanvas-color);
  6256. visibility: hidden;
  6257. background-color: var(--bs-offcanvas-bg);
  6258. background-clip: padding-box;
  6259. outline: 0;
  6260. transition: var(--bs-offcanvas-transition);
  6261. }
  6262. }
  6263. @media (max-width: 1399.98px) and (prefers-reduced-motion: reduce) {
  6264. .offcanvas-xxl {
  6265. transition: none;
  6266. }
  6267. }
  6268. @media (max-width: 1399.98px) {
  6269. .offcanvas-xxl.offcanvas-start {
  6270. top: 0;
  6271. left: 0;
  6272. width: var(--bs-offcanvas-width);
  6273. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6274. transform: translateX(-100%);
  6275. }
  6276. }
  6277. @media (max-width: 1399.98px) {
  6278. .offcanvas-xxl.offcanvas-end {
  6279. top: 0;
  6280. right: 0;
  6281. width: var(--bs-offcanvas-width);
  6282. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6283. transform: translateX(100%);
  6284. }
  6285. }
  6286. @media (max-width: 1399.98px) {
  6287. .offcanvas-xxl.offcanvas-top {
  6288. top: 0;
  6289. right: 0;
  6290. left: 0;
  6291. height: var(--bs-offcanvas-height);
  6292. max-height: 100%;
  6293. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6294. transform: translateY(-100%);
  6295. }
  6296. }
  6297. @media (max-width: 1399.98px) {
  6298. .offcanvas-xxl.offcanvas-bottom {
  6299. right: 0;
  6300. left: 0;
  6301. height: var(--bs-offcanvas-height);
  6302. max-height: 100%;
  6303. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6304. transform: translateY(100%);
  6305. }
  6306. }
  6307. @media (max-width: 1399.98px) {
  6308. .offcanvas-xxl.showing, .offcanvas-xxl.show:not(.hiding) {
  6309. transform: none;
  6310. }
  6311. }
  6312. @media (max-width: 1399.98px) {
  6313. .offcanvas-xxl.showing, .offcanvas-xxl.hiding, .offcanvas-xxl.show {
  6314. visibility: visible;
  6315. }
  6316. }
  6317. @media (min-width: 1400px) {
  6318. .offcanvas-xxl {
  6319. --bs-offcanvas-height: auto;
  6320. --bs-offcanvas-border-width: 0;
  6321. background-color: transparent !important;
  6322. }
  6323. .offcanvas-xxl .offcanvas-header {
  6324. display: none;
  6325. }
  6326. .offcanvas-xxl .offcanvas-body {
  6327. display: flex;
  6328. flex-grow: 0;
  6329. padding: 0;
  6330. overflow-y: visible;
  6331. background-color: transparent !important;
  6332. }
  6333. }
  6334. .offcanvas {
  6335. position: fixed;
  6336. bottom: 0;
  6337. z-index: var(--bs-offcanvas-zindex);
  6338. display: flex;
  6339. flex-direction: column;
  6340. max-width: 100%;
  6341. color: var(--bs-offcanvas-color);
  6342. visibility: hidden;
  6343. background-color: var(--bs-offcanvas-bg);
  6344. background-clip: padding-box;
  6345. outline: 0;
  6346. transition: var(--bs-offcanvas-transition);
  6347. }
  6348. @media (prefers-reduced-motion: reduce) {
  6349. .offcanvas {
  6350. transition: none;
  6351. }
  6352. }
  6353. .offcanvas.offcanvas-start {
  6354. top: 0;
  6355. left: 0;
  6356. width: var(--bs-offcanvas-width);
  6357. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6358. transform: translateX(-100%);
  6359. }
  6360. .offcanvas.offcanvas-end {
  6361. top: 0;
  6362. right: 0;
  6363. width: var(--bs-offcanvas-width);
  6364. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6365. transform: translateX(100%);
  6366. }
  6367. .offcanvas.offcanvas-top {
  6368. top: 0;
  6369. right: 0;
  6370. left: 0;
  6371. height: var(--bs-offcanvas-height);
  6372. max-height: 100%;
  6373. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6374. transform: translateY(-100%);
  6375. }
  6376. .offcanvas.offcanvas-bottom {
  6377. right: 0;
  6378. left: 0;
  6379. height: var(--bs-offcanvas-height);
  6380. max-height: 100%;
  6381. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6382. transform: translateY(100%);
  6383. }
  6384. .offcanvas.showing, .offcanvas.show:not(.hiding) {
  6385. transform: none;
  6386. }
  6387. .offcanvas.showing, .offcanvas.hiding, .offcanvas.show {
  6388. visibility: visible;
  6389. }
  6390. .offcanvas-backdrop {
  6391. position: fixed;
  6392. top: 0;
  6393. left: 0;
  6394. z-index: 1040;
  6395. width: 100vw;
  6396. height: 100vh;
  6397. background-color: #000;
  6398. }
  6399. .offcanvas-backdrop.fade {
  6400. opacity: 0;
  6401. }
  6402. .offcanvas-backdrop.show {
  6403. opacity: 0.5;
  6404. }
  6405. .offcanvas-header {
  6406. display: flex;
  6407. align-items: center;
  6408. justify-content: space-between;
  6409. padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  6410. }
  6411. .offcanvas-header .btn-close {
  6412. padding: calc(var(--bs-offcanvas-padding-y) * 0.5) calc(var(--bs-offcanvas-padding-x) * 0.5);
  6413. margin-top: calc(-0.5 * var(--bs-offcanvas-padding-y));
  6414. margin-right: calc(-0.5 * var(--bs-offcanvas-padding-x));
  6415. margin-bottom: calc(-0.5 * var(--bs-offcanvas-padding-y));
  6416. }
  6417. .offcanvas-title {
  6418. margin-bottom: 0;
  6419. line-height: var(--bs-offcanvas-title-line-height);
  6420. }
  6421. .offcanvas-body {
  6422. flex-grow: 1;
  6423. padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  6424. overflow-y: auto;
  6425. }
  6426. .placeholder {
  6427. display: inline-block;
  6428. min-height: 1em;
  6429. vertical-align: middle;
  6430. cursor: wait;
  6431. background-color: currentcolor;
  6432. opacity: 0.5;
  6433. }
  6434. .placeholder.btn::before {
  6435. display: inline-block;
  6436. content: "";
  6437. }
  6438. .placeholder-xs {
  6439. min-height: 0.6em;
  6440. }
  6441. .placeholder-sm {
  6442. min-height: 0.8em;
  6443. }
  6444. .placeholder-lg {
  6445. min-height: 1.2em;
  6446. }
  6447. .placeholder-glow .placeholder {
  6448. animation: placeholder-glow 2s ease-in-out infinite;
  6449. }
  6450. @keyframes placeholder-glow {
  6451. 50% {
  6452. opacity: 0.2;
  6453. }
  6454. }
  6455. .placeholder-wave {
  6456. -webkit-mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  6457. mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  6458. -webkit-mask-size: 200% 100%;
  6459. mask-size: 200% 100%;
  6460. animation: placeholder-wave 2s linear infinite;
  6461. }
  6462. @keyframes placeholder-wave {
  6463. 100% {
  6464. -webkit-mask-position: -200% 0%;
  6465. mask-position: -200% 0%;
  6466. }
  6467. }
  6468. .clearfix::after {
  6469. display: block;
  6470. clear: both;
  6471. content: "";
  6472. }
  6473. .text-bg-primary {
  6474. color: #fff !important;
  6475. background-color: RGBA(13, 110, 253, var(--bs-bg-opacity, 1)) !important;
  6476. }
  6477. .text-bg-secondary {
  6478. color: #fff !important;
  6479. background-color: RGBA(108, 117, 125, var(--bs-bg-opacity, 1)) !important;
  6480. }
  6481. .text-bg-success {
  6482. color: #fff !important;
  6483. background-color: RGBA(25, 135, 84, var(--bs-bg-opacity, 1)) !important;
  6484. }
  6485. .text-bg-info {
  6486. color: #000 !important;
  6487. background-color: RGBA(13, 202, 240, var(--bs-bg-opacity, 1)) !important;
  6488. }
  6489. .text-bg-warning {
  6490. color: #000 !important;
  6491. background-color: RGBA(255, 193, 7, var(--bs-bg-opacity, 1)) !important;
  6492. }
  6493. .text-bg-danger {
  6494. color: #fff !important;
  6495. background-color: RGBA(220, 53, 69, var(--bs-bg-opacity, 1)) !important;
  6496. }
  6497. .text-bg-light {
  6498. color: #000 !important;
  6499. background-color: RGBA(248, 249, 250, var(--bs-bg-opacity, 1)) !important;
  6500. }
  6501. .text-bg-dark {
  6502. color: #fff !important;
  6503. background-color: RGBA(33, 37, 41, var(--bs-bg-opacity, 1)) !important;
  6504. }
  6505. .link-primary {
  6506. color: #0d6efd !important;
  6507. }
  6508. .link-primary:hover, .link-primary:focus {
  6509. color: #0a58ca !important;
  6510. }
  6511. .link-secondary {
  6512. color: #6c757d !important;
  6513. }
  6514. .link-secondary:hover, .link-secondary:focus {
  6515. color: #565e64 !important;
  6516. }
  6517. .link-success {
  6518. color: #198754 !important;
  6519. }
  6520. .link-success:hover, .link-success:focus {
  6521. color: #146c43 !important;
  6522. }
  6523. .link-info {
  6524. color: #0dcaf0 !important;
  6525. }
  6526. .link-info:hover, .link-info:focus {
  6527. color: #3dd5f3 !important;
  6528. }
  6529. .link-warning {
  6530. color: #ffc107 !important;
  6531. }
  6532. .link-warning:hover, .link-warning:focus {
  6533. color: #ffcd39 !important;
  6534. }
  6535. .link-danger {
  6536. color: #dc3545 !important;
  6537. }
  6538. .link-danger:hover, .link-danger:focus {
  6539. color: #b02a37 !important;
  6540. }
  6541. .link-light {
  6542. color: #f8f9fa !important;
  6543. }
  6544. .link-light:hover, .link-light:focus {
  6545. color: #f9fafb !important;
  6546. }
  6547. .link-dark {
  6548. color: #212529 !important;
  6549. }
  6550. .link-dark:hover, .link-dark:focus {
  6551. color: #1a1e21 !important;
  6552. }
  6553. .ratio {
  6554. position: relative;
  6555. width: 100%;
  6556. }
  6557. .ratio::before {
  6558. display: block;
  6559. padding-top: var(--bs-aspect-ratio);
  6560. content: "";
  6561. }
  6562. .ratio > * {
  6563. position: absolute;
  6564. top: 0;
  6565. left: 0;
  6566. width: 100%;
  6567. height: 100%;
  6568. }
  6569. .ratio-1x1 {
  6570. --bs-aspect-ratio: 100%;
  6571. }
  6572. .ratio-4x3 {
  6573. --bs-aspect-ratio: 75%;
  6574. }
  6575. .ratio-16x9 {
  6576. --bs-aspect-ratio: 56.25%;
  6577. }
  6578. .ratio-21x9 {
  6579. --bs-aspect-ratio: 42.8571428571%;
  6580. }
  6581. .fixed-top {
  6582. position: fixed;
  6583. top: 0;
  6584. right: 0;
  6585. left: 0;
  6586. z-index: 1030;
  6587. }
  6588. .fixed-bottom {
  6589. position: fixed;
  6590. right: 0;
  6591. bottom: 0;
  6592. left: 0;
  6593. z-index: 1030;
  6594. }
  6595. .sticky-top {
  6596. position: -webkit-sticky;
  6597. position: sticky;
  6598. top: 0;
  6599. z-index: 1020;
  6600. }
  6601. .sticky-bottom {
  6602. position: -webkit-sticky;
  6603. position: sticky;
  6604. bottom: 0;
  6605. z-index: 1020;
  6606. }
  6607. @media (min-width: 576px) {
  6608. .sticky-sm-top {
  6609. position: -webkit-sticky;
  6610. position: sticky;
  6611. top: 0;
  6612. z-index: 1020;
  6613. }
  6614. .sticky-sm-bottom {
  6615. position: -webkit-sticky;
  6616. position: sticky;
  6617. bottom: 0;
  6618. z-index: 1020;
  6619. }
  6620. }
  6621. @media (min-width: 768px) {
  6622. .sticky-md-top {
  6623. position: -webkit-sticky;
  6624. position: sticky;
  6625. top: 0;
  6626. z-index: 1020;
  6627. }
  6628. .sticky-md-bottom {
  6629. position: -webkit-sticky;
  6630. position: sticky;
  6631. bottom: 0;
  6632. z-index: 1020;
  6633. }
  6634. }
  6635. @media (min-width: 992px) {
  6636. .sticky-lg-top {
  6637. position: -webkit-sticky;
  6638. position: sticky;
  6639. top: 0;
  6640. z-index: 1020;
  6641. }
  6642. .sticky-lg-bottom {
  6643. position: -webkit-sticky;
  6644. position: sticky;
  6645. bottom: 0;
  6646. z-index: 1020;
  6647. }
  6648. }
  6649. @media (min-width: 1200px) {
  6650. .sticky-xl-top {
  6651. position: -webkit-sticky;
  6652. position: sticky;
  6653. top: 0;
  6654. z-index: 1020;
  6655. }
  6656. .sticky-xl-bottom {
  6657. position: -webkit-sticky;
  6658. position: sticky;
  6659. bottom: 0;
  6660. z-index: 1020;
  6661. }
  6662. }
  6663. @media (min-width: 1400px) {
  6664. .sticky-xxl-top {
  6665. position: -webkit-sticky;
  6666. position: sticky;
  6667. top: 0;
  6668. z-index: 1020;
  6669. }
  6670. .sticky-xxl-bottom {
  6671. position: -webkit-sticky;
  6672. position: sticky;
  6673. bottom: 0;
  6674. z-index: 1020;
  6675. }
  6676. }
  6677. .hstack {
  6678. display: flex;
  6679. flex-direction: row;
  6680. align-items: center;
  6681. align-self: stretch;
  6682. }
  6683. .vstack {
  6684. display: flex;
  6685. flex: 1 1 auto;
  6686. flex-direction: column;
  6687. align-self: stretch;
  6688. }
  6689. .visually-hidden,
  6690. .visually-hidden-focusable:not(:focus):not(:focus-within) {
  6691. position: absolute !important;
  6692. width: 1px !important;
  6693. height: 1px !important;
  6694. padding: 0 !important;
  6695. margin: -1px !important;
  6696. overflow: hidden !important;
  6697. clip: rect(0, 0, 0, 0) !important;
  6698. white-space: nowrap !important;
  6699. border: 0 !important;
  6700. }
  6701. .stretched-link::after {
  6702. position: absolute;
  6703. top: 0;
  6704. right: 0;
  6705. bottom: 0;
  6706. left: 0;
  6707. z-index: 1;
  6708. content: "";
  6709. }
  6710. .text-truncate {
  6711. overflow: hidden;
  6712. text-overflow: ellipsis;
  6713. white-space: nowrap;
  6714. }
  6715. .vr {
  6716. display: inline-block;
  6717. align-self: stretch;
  6718. width: 1px;
  6719. min-height: 1em;
  6720. background-color: currentcolor;
  6721. opacity: 0.25;
  6722. }
  6723. .align-baseline {
  6724. vertical-align: baseline !important;
  6725. }
  6726. .align-top {
  6727. vertical-align: top !important;
  6728. }
  6729. .align-middle {
  6730. vertical-align: middle !important;
  6731. }
  6732. .align-bottom {
  6733. vertical-align: bottom !important;
  6734. }
  6735. .align-text-bottom {
  6736. vertical-align: text-bottom !important;
  6737. }
  6738. .align-text-top {
  6739. vertical-align: text-top !important;
  6740. }
  6741. .float-start {
  6742. float: left !important;
  6743. }
  6744. .float-end {
  6745. float: right !important;
  6746. }
  6747. .float-none {
  6748. float: none !important;
  6749. }
  6750. .object-fit-contain {
  6751. -o-object-fit: contain !important;
  6752. object-fit: contain !important;
  6753. }
  6754. .object-fit-cover {
  6755. -o-object-fit: cover !important;
  6756. object-fit: cover !important;
  6757. }
  6758. .object-fit-fill {
  6759. -o-object-fit: fill !important;
  6760. object-fit: fill !important;
  6761. }
  6762. .object-fit-scale {
  6763. -o-object-fit: scale-down !important;
  6764. object-fit: scale-down !important;
  6765. }
  6766. .object-fit-none {
  6767. -o-object-fit: none !important;
  6768. object-fit: none !important;
  6769. }
  6770. .opacity-0 {
  6771. opacity: 0 !important;
  6772. }
  6773. .opacity-25 {
  6774. opacity: 0.25 !important;
  6775. }
  6776. .opacity-50 {
  6777. opacity: 0.5 !important;
  6778. }
  6779. .opacity-75 {
  6780. opacity: 0.75 !important;
  6781. }
  6782. .opacity-100 {
  6783. opacity: 1 !important;
  6784. }
  6785. .overflow-auto {
  6786. overflow: auto !important;
  6787. }
  6788. .overflow-hidden {
  6789. overflow: hidden !important;
  6790. }
  6791. .overflow-visible {
  6792. overflow: visible !important;
  6793. }
  6794. .overflow-scroll {
  6795. overflow: scroll !important;
  6796. }
  6797. .overflow-x-auto {
  6798. overflow-x: auto !important;
  6799. }
  6800. .overflow-x-hidden {
  6801. overflow-x: hidden !important;
  6802. }
  6803. .overflow-x-visible {
  6804. overflow-x: visible !important;
  6805. }
  6806. .overflow-x-scroll {
  6807. overflow-x: scroll !important;
  6808. }
  6809. .overflow-y-auto {
  6810. overflow-y: auto !important;
  6811. }
  6812. .overflow-y-hidden {
  6813. overflow-y: hidden !important;
  6814. }
  6815. .overflow-y-visible {
  6816. overflow-y: visible !important;
  6817. }
  6818. .overflow-y-scroll {
  6819. overflow-y: scroll !important;
  6820. }
  6821. .d-inline {
  6822. display: inline !important;
  6823. }
  6824. .d-inline-block {
  6825. display: inline-block !important;
  6826. }
  6827. .d-block {
  6828. display: block !important;
  6829. }
  6830. .d-grid {
  6831. display: grid !important;
  6832. }
  6833. .d-table {
  6834. display: table !important;
  6835. }
  6836. .d-table-row {
  6837. display: table-row !important;
  6838. }
  6839. .d-table-cell {
  6840. display: table-cell !important;
  6841. }
  6842. .d-flex {
  6843. display: flex !important;
  6844. }
  6845. .d-inline-flex {
  6846. display: inline-flex !important;
  6847. }
  6848. .d-none {
  6849. display: none !important;
  6850. }
  6851. .shadow {
  6852. box-shadow: 0 0.5rem 1rem rgba(var(--bs-body-color-rgb), 0.15) !important;
  6853. }
  6854. .shadow-sm {
  6855. box-shadow: 0 0.125rem 0.25rem rgba(var(--bs-body-color-rgb), 0.075) !important;
  6856. }
  6857. .shadow-lg {
  6858. box-shadow: 0 1rem 3rem rgba(var(--bs-body-color-rgb), 0.175) !important;
  6859. }
  6860. .shadow-none {
  6861. box-shadow: none !important;
  6862. }
  6863. .position-static {
  6864. position: static !important;
  6865. }
  6866. .position-relative {
  6867. position: relative !important;
  6868. }
  6869. .position-absolute {
  6870. position: absolute !important;
  6871. }
  6872. .position-fixed {
  6873. position: fixed !important;
  6874. }
  6875. .position-sticky {
  6876. position: -webkit-sticky !important;
  6877. position: sticky !important;
  6878. }
  6879. .top-0 {
  6880. top: 0 !important;
  6881. }
  6882. .top-50 {
  6883. top: 50% !important;
  6884. }
  6885. .top-100 {
  6886. top: 100% !important;
  6887. }
  6888. .bottom-0 {
  6889. bottom: 0 !important;
  6890. }
  6891. .bottom-50 {
  6892. bottom: 50% !important;
  6893. }
  6894. .bottom-100 {
  6895. bottom: 100% !important;
  6896. }
  6897. .start-0 {
  6898. left: 0 !important;
  6899. }
  6900. .start-50 {
  6901. left: 50% !important;
  6902. }
  6903. .start-100 {
  6904. left: 100% !important;
  6905. }
  6906. .end-0 {
  6907. right: 0 !important;
  6908. }
  6909. .end-50 {
  6910. right: 50% !important;
  6911. }
  6912. .end-100 {
  6913. right: 100% !important;
  6914. }
  6915. .translate-middle {
  6916. transform: translate(-50%, -50%) !important;
  6917. }
  6918. .translate-middle-x {
  6919. transform: translateX(-50%) !important;
  6920. }
  6921. .translate-middle-y {
  6922. transform: translateY(-50%) !important;
  6923. }
  6924. .border {
  6925. border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  6926. }
  6927. .border-0 {
  6928. border: 0 !important;
  6929. }
  6930. .border-top {
  6931. border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  6932. }
  6933. .border-top-0 {
  6934. border-top: 0 !important;
  6935. }
  6936. .border-end {
  6937. border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  6938. }
  6939. .border-end-0 {
  6940. border-right: 0 !important;
  6941. }
  6942. .border-bottom {
  6943. border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  6944. }
  6945. .border-bottom-0 {
  6946. border-bottom: 0 !important;
  6947. }
  6948. .border-start {
  6949. border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  6950. }
  6951. .border-start-0 {
  6952. border-left: 0 !important;
  6953. }
  6954. .border-primary {
  6955. --bs-border-opacity: 1;
  6956. border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
  6957. }
  6958. .border-secondary {
  6959. --bs-border-opacity: 1;
  6960. border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
  6961. }
  6962. .border-success {
  6963. --bs-border-opacity: 1;
  6964. border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
  6965. }
  6966. .border-info {
  6967. --bs-border-opacity: 1;
  6968. border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
  6969. }
  6970. .border-warning {
  6971. --bs-border-opacity: 1;
  6972. border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
  6973. }
  6974. .border-danger {
  6975. --bs-border-opacity: 1;
  6976. border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
  6977. }
  6978. .border-light {
  6979. --bs-border-opacity: 1;
  6980. border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
  6981. }
  6982. .border-dark {
  6983. --bs-border-opacity: 1;
  6984. border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
  6985. }
  6986. .border-white {
  6987. --bs-border-opacity: 1;
  6988. border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
  6989. }
  6990. .border-primary-subtle {
  6991. border-color: var(--bs-primary-border-subtle) !important;
  6992. }
  6993. .border-secondary-subtle {
  6994. border-color: var(--bs-secondary-border-subtle) !important;
  6995. }
  6996. .border-success-subtle {
  6997. border-color: var(--bs-success-border-subtle) !important;
  6998. }
  6999. .border-info-subtle {
  7000. border-color: var(--bs-info-border-subtle) !important;
  7001. }
  7002. .border-warning-subtle {
  7003. border-color: var(--bs-warning-border-subtle) !important;
  7004. }
  7005. .border-danger-subtle {
  7006. border-color: var(--bs-danger-border-subtle) !important;
  7007. }
  7008. .border-light-subtle {
  7009. border-color: var(--bs-light-border-subtle) !important;
  7010. }
  7011. .border-dark-subtle {
  7012. border-color: var(--bs-dark-border-subtle) !important;
  7013. }
  7014. .border-1 {
  7015. --bs-border-width: 1px;
  7016. }
  7017. .border-2 {
  7018. --bs-border-width: 2px;
  7019. }
  7020. .border-3 {
  7021. --bs-border-width: 3px;
  7022. }
  7023. .border-4 {
  7024. --bs-border-width: 4px;
  7025. }
  7026. .border-5 {
  7027. --bs-border-width: 5px;
  7028. }
  7029. .border-opacity-10 {
  7030. --bs-border-opacity: 0.1;
  7031. }
  7032. .border-opacity-25 {
  7033. --bs-border-opacity: 0.25;
  7034. }
  7035. .border-opacity-50 {
  7036. --bs-border-opacity: 0.5;
  7037. }
  7038. .border-opacity-75 {
  7039. --bs-border-opacity: 0.75;
  7040. }
  7041. .border-opacity-100 {
  7042. --bs-border-opacity: 1;
  7043. }
  7044. .w-25 {
  7045. width: 25% !important;
  7046. }
  7047. .w-50 {
  7048. width: 50% !important;
  7049. }
  7050. .w-75 {
  7051. width: 75% !important;
  7052. }
  7053. .w-100 {
  7054. width: 100% !important;
  7055. }
  7056. .w-auto {
  7057. width: auto !important;
  7058. }
  7059. .mw-100 {
  7060. max-width: 100% !important;
  7061. }
  7062. .vw-100 {
  7063. width: 100vw !important;
  7064. }
  7065. .min-vw-100 {
  7066. min-width: 100vw !important;
  7067. }
  7068. .h-25 {
  7069. height: 25% !important;
  7070. }
  7071. .h-50 {
  7072. height: 50% !important;
  7073. }
  7074. .h-75 {
  7075. height: 75% !important;
  7076. }
  7077. .h-100 {
  7078. height: 100% !important;
  7079. }
  7080. .h-auto {
  7081. height: auto !important;
  7082. }
  7083. .mh-100 {
  7084. max-height: 100% !important;
  7085. }
  7086. .vh-100 {
  7087. height: 100vh !important;
  7088. }
  7089. .min-vh-100 {
  7090. min-height: 100vh !important;
  7091. }
  7092. .flex-fill {
  7093. flex: 1 1 auto !important;
  7094. }
  7095. .flex-row {
  7096. flex-direction: row !important;
  7097. }
  7098. .flex-column {
  7099. flex-direction: column !important;
  7100. }
  7101. .flex-row-reverse {
  7102. flex-direction: row-reverse !important;
  7103. }
  7104. .flex-column-reverse {
  7105. flex-direction: column-reverse !important;
  7106. }
  7107. .flex-grow-0 {
  7108. flex-grow: 0 !important;
  7109. }
  7110. .flex-grow-1 {
  7111. flex-grow: 1 !important;
  7112. }
  7113. .flex-shrink-0 {
  7114. flex-shrink: 0 !important;
  7115. }
  7116. .flex-shrink-1 {
  7117. flex-shrink: 1 !important;
  7118. }
  7119. .flex-wrap {
  7120. flex-wrap: wrap !important;
  7121. }
  7122. .flex-nowrap {
  7123. flex-wrap: nowrap !important;
  7124. }
  7125. .flex-wrap-reverse {
  7126. flex-wrap: wrap-reverse !important;
  7127. }
  7128. .justify-content-start {
  7129. justify-content: flex-start !important;
  7130. }
  7131. .justify-content-end {
  7132. justify-content: flex-end !important;
  7133. }
  7134. .justify-content-center {
  7135. justify-content: center !important;
  7136. }
  7137. .justify-content-between {
  7138. justify-content: space-between !important;
  7139. }
  7140. .justify-content-around {
  7141. justify-content: space-around !important;
  7142. }
  7143. .justify-content-evenly {
  7144. justify-content: space-evenly !important;
  7145. }
  7146. .align-items-start {
  7147. align-items: flex-start !important;
  7148. }
  7149. .align-items-end {
  7150. align-items: flex-end !important;
  7151. }
  7152. .align-items-center {
  7153. align-items: center !important;
  7154. }
  7155. .align-items-baseline {
  7156. align-items: baseline !important;
  7157. }
  7158. .align-items-stretch {
  7159. align-items: stretch !important;
  7160. }
  7161. .align-content-start {
  7162. align-content: flex-start !important;
  7163. }
  7164. .align-content-end {
  7165. align-content: flex-end !important;
  7166. }
  7167. .align-content-center {
  7168. align-content: center !important;
  7169. }
  7170. .align-content-between {
  7171. align-content: space-between !important;
  7172. }
  7173. .align-content-around {
  7174. align-content: space-around !important;
  7175. }
  7176. .align-content-stretch {
  7177. align-content: stretch !important;
  7178. }
  7179. .align-self-auto {
  7180. align-self: auto !important;
  7181. }
  7182. .align-self-start {
  7183. align-self: flex-start !important;
  7184. }
  7185. .align-self-end {
  7186. align-self: flex-end !important;
  7187. }
  7188. .align-self-center {
  7189. align-self: center !important;
  7190. }
  7191. .align-self-baseline {
  7192. align-self: baseline !important;
  7193. }
  7194. .align-self-stretch {
  7195. align-self: stretch !important;
  7196. }
  7197. .order-first {
  7198. order: -1 !important;
  7199. }
  7200. .order-0 {
  7201. order: 0 !important;
  7202. }
  7203. .order-1 {
  7204. order: 1 !important;
  7205. }
  7206. .order-2 {
  7207. order: 2 !important;
  7208. }
  7209. .order-3 {
  7210. order: 3 !important;
  7211. }
  7212. .order-4 {
  7213. order: 4 !important;
  7214. }
  7215. .order-5 {
  7216. order: 5 !important;
  7217. }
  7218. .order-last {
  7219. order: 6 !important;
  7220. }
  7221. .m-0 {
  7222. margin: 0 !important;
  7223. }
  7224. .m-1 {
  7225. margin: 0.25rem !important;
  7226. }
  7227. .m-2 {
  7228. margin: 0.5rem !important;
  7229. }
  7230. .m-3 {
  7231. margin: 1rem !important;
  7232. }
  7233. .m-4 {
  7234. margin: 1.5rem !important;
  7235. }
  7236. .m-5 {
  7237. margin: 3rem !important;
  7238. }
  7239. .m-auto {
  7240. margin: auto !important;
  7241. }
  7242. .mx-0 {
  7243. margin-right: 0 !important;
  7244. margin-left: 0 !important;
  7245. }
  7246. .mx-1 {
  7247. margin-right: 0.25rem !important;
  7248. margin-left: 0.25rem !important;
  7249. }
  7250. .mx-2 {
  7251. margin-right: 0.5rem !important;
  7252. margin-left: 0.5rem !important;
  7253. }
  7254. .mx-3 {
  7255. margin-right: 1rem !important;
  7256. margin-left: 1rem !important;
  7257. }
  7258. .mx-4 {
  7259. margin-right: 1.5rem !important;
  7260. margin-left: 1.5rem !important;
  7261. }
  7262. .mx-5 {
  7263. margin-right: 3rem !important;
  7264. margin-left: 3rem !important;
  7265. }
  7266. .mx-auto {
  7267. margin-right: auto !important;
  7268. margin-left: auto !important;
  7269. }
  7270. .my-0 {
  7271. margin-top: 0 !important;
  7272. margin-bottom: 0 !important;
  7273. }
  7274. .my-1 {
  7275. margin-top: 0.25rem !important;
  7276. margin-bottom: 0.25rem !important;
  7277. }
  7278. .my-2 {
  7279. margin-top: 0.5rem !important;
  7280. margin-bottom: 0.5rem !important;
  7281. }
  7282. .my-3 {
  7283. margin-top: 1rem !important;
  7284. margin-bottom: 1rem !important;
  7285. }
  7286. .my-4 {
  7287. margin-top: 1.5rem !important;
  7288. margin-bottom: 1.5rem !important;
  7289. }
  7290. .my-5 {
  7291. margin-top: 3rem !important;
  7292. margin-bottom: 3rem !important;
  7293. }
  7294. .my-auto {
  7295. margin-top: auto !important;
  7296. margin-bottom: auto !important;
  7297. }
  7298. .mt-0 {
  7299. margin-top: 0 !important;
  7300. }
  7301. .mt-1 {
  7302. margin-top: 0.25rem !important;
  7303. }
  7304. .mt-2 {
  7305. margin-top: 0.5rem !important;
  7306. }
  7307. .mt-3 {
  7308. margin-top: 1rem !important;
  7309. }
  7310. .mt-4 {
  7311. margin-top: 1.5rem !important;
  7312. }
  7313. .mt-5 {
  7314. margin-top: 3rem !important;
  7315. }
  7316. .mt-auto {
  7317. margin-top: auto !important;
  7318. }
  7319. .me-0 {
  7320. margin-right: 0 !important;
  7321. }
  7322. .me-1 {
  7323. margin-right: 0.25rem !important;
  7324. }
  7325. .me-2 {
  7326. margin-right: 0.5rem !important;
  7327. }
  7328. .me-3 {
  7329. margin-right: 1rem !important;
  7330. }
  7331. .me-4 {
  7332. margin-right: 1.5rem !important;
  7333. }
  7334. .me-5 {
  7335. margin-right: 3rem !important;
  7336. }
  7337. .me-auto {
  7338. margin-right: auto !important;
  7339. }
  7340. .mb-0 {
  7341. margin-bottom: 0 !important;
  7342. }
  7343. .mb-1 {
  7344. margin-bottom: 0.25rem !important;
  7345. }
  7346. .mb-2 {
  7347. margin-bottom: 0.5rem !important;
  7348. }
  7349. .mb-3 {
  7350. margin-bottom: 1rem !important;
  7351. }
  7352. .mb-4 {
  7353. margin-bottom: 1.5rem !important;
  7354. }
  7355. .mb-5 {
  7356. margin-bottom: 3rem !important;
  7357. }
  7358. .mb-auto {
  7359. margin-bottom: auto !important;
  7360. }
  7361. .ms-0 {
  7362. margin-left: 0 !important;
  7363. }
  7364. .ms-1 {
  7365. margin-left: 0.25rem !important;
  7366. }
  7367. .ms-2 {
  7368. margin-left: 0.5rem !important;
  7369. }
  7370. .ms-3 {
  7371. margin-left: 1rem !important;
  7372. }
  7373. .ms-4 {
  7374. margin-left: 1.5rem !important;
  7375. }
  7376. .ms-5 {
  7377. margin-left: 3rem !important;
  7378. }
  7379. .ms-auto {
  7380. margin-left: auto !important;
  7381. }
  7382. .p-0 {
  7383. padding: 0 !important;
  7384. }
  7385. .p-1 {
  7386. padding: 0.25rem !important;
  7387. }
  7388. .p-2 {
  7389. padding: 0.5rem !important;
  7390. }
  7391. .p-3 {
  7392. padding: 1rem !important;
  7393. }
  7394. .p-4 {
  7395. padding: 1.5rem !important;
  7396. }
  7397. .p-5 {
  7398. padding: 3rem !important;
  7399. }
  7400. .px-0 {
  7401. padding-right: 0 !important;
  7402. padding-left: 0 !important;
  7403. }
  7404. .px-1 {
  7405. padding-right: 0.25rem !important;
  7406. padding-left: 0.25rem !important;
  7407. }
  7408. .px-2 {
  7409. padding-right: 0.5rem !important;
  7410. padding-left: 0.5rem !important;
  7411. }
  7412. .px-3 {
  7413. padding-right: 1rem !important;
  7414. padding-left: 1rem !important;
  7415. }
  7416. .px-4 {
  7417. padding-right: 1.5rem !important;
  7418. padding-left: 1.5rem !important;
  7419. }
  7420. .px-5 {
  7421. padding-right: 3rem !important;
  7422. padding-left: 3rem !important;
  7423. }
  7424. .py-0 {
  7425. padding-top: 0 !important;
  7426. padding-bottom: 0 !important;
  7427. }
  7428. .py-1 {
  7429. padding-top: 0.25rem !important;
  7430. padding-bottom: 0.25rem !important;
  7431. }
  7432. .py-2 {
  7433. padding-top: 0.5rem !important;
  7434. padding-bottom: 0.5rem !important;
  7435. }
  7436. .py-3 {
  7437. padding-top: 1rem !important;
  7438. padding-bottom: 1rem !important;
  7439. }
  7440. .py-4 {
  7441. padding-top: 1.5rem !important;
  7442. padding-bottom: 1.5rem !important;
  7443. }
  7444. .py-5 {
  7445. padding-top: 3rem !important;
  7446. padding-bottom: 3rem !important;
  7447. }
  7448. .pt-0 {
  7449. padding-top: 0 !important;
  7450. }
  7451. .pt-1 {
  7452. padding-top: 0.25rem !important;
  7453. }
  7454. .pt-2 {
  7455. padding-top: 0.5rem !important;
  7456. }
  7457. .pt-3 {
  7458. padding-top: 1rem !important;
  7459. }
  7460. .pt-4 {
  7461. padding-top: 1.5rem !important;
  7462. }
  7463. .pt-5 {
  7464. padding-top: 3rem !important;
  7465. }
  7466. .pe-0 {
  7467. padding-right: 0 !important;
  7468. }
  7469. .pe-1 {
  7470. padding-right: 0.25rem !important;
  7471. }
  7472. .pe-2 {
  7473. padding-right: 0.5rem !important;
  7474. }
  7475. .pe-3 {
  7476. padding-right: 1rem !important;
  7477. }
  7478. .pe-4 {
  7479. padding-right: 1.5rem !important;
  7480. }
  7481. .pe-5 {
  7482. padding-right: 3rem !important;
  7483. }
  7484. .pb-0 {
  7485. padding-bottom: 0 !important;
  7486. }
  7487. .pb-1 {
  7488. padding-bottom: 0.25rem !important;
  7489. }
  7490. .pb-2 {
  7491. padding-bottom: 0.5rem !important;
  7492. }
  7493. .pb-3 {
  7494. padding-bottom: 1rem !important;
  7495. }
  7496. .pb-4 {
  7497. padding-bottom: 1.5rem !important;
  7498. }
  7499. .pb-5 {
  7500. padding-bottom: 3rem !important;
  7501. }
  7502. .ps-0 {
  7503. padding-left: 0 !important;
  7504. }
  7505. .ps-1 {
  7506. padding-left: 0.25rem !important;
  7507. }
  7508. .ps-2 {
  7509. padding-left: 0.5rem !important;
  7510. }
  7511. .ps-3 {
  7512. padding-left: 1rem !important;
  7513. }
  7514. .ps-4 {
  7515. padding-left: 1.5rem !important;
  7516. }
  7517. .ps-5 {
  7518. padding-left: 3rem !important;
  7519. }
  7520. .gap-0 {
  7521. gap: 0 !important;
  7522. }
  7523. .gap-1 {
  7524. gap: 0.25rem !important;
  7525. }
  7526. .gap-2 {
  7527. gap: 0.5rem !important;
  7528. }
  7529. .gap-3 {
  7530. gap: 1rem !important;
  7531. }
  7532. .gap-4 {
  7533. gap: 1.5rem !important;
  7534. }
  7535. .gap-5 {
  7536. gap: 3rem !important;
  7537. }
  7538. .row-gap-0 {
  7539. row-gap: 0 !important;
  7540. }
  7541. .row-gap-1 {
  7542. row-gap: 0.25rem !important;
  7543. }
  7544. .row-gap-2 {
  7545. row-gap: 0.5rem !important;
  7546. }
  7547. .row-gap-3 {
  7548. row-gap: 1rem !important;
  7549. }
  7550. .row-gap-4 {
  7551. row-gap: 1.5rem !important;
  7552. }
  7553. .row-gap-5 {
  7554. row-gap: 3rem !important;
  7555. }
  7556. .column-gap-0 {
  7557. -moz-column-gap: 0 !important;
  7558. column-gap: 0 !important;
  7559. }
  7560. .column-gap-1 {
  7561. -moz-column-gap: 0.25rem !important;
  7562. column-gap: 0.25rem !important;
  7563. }
  7564. .column-gap-2 {
  7565. -moz-column-gap: 0.5rem !important;
  7566. column-gap: 0.5rem !important;
  7567. }
  7568. .column-gap-3 {
  7569. -moz-column-gap: 1rem !important;
  7570. column-gap: 1rem !important;
  7571. }
  7572. .column-gap-4 {
  7573. -moz-column-gap: 1.5rem !important;
  7574. column-gap: 1.5rem !important;
  7575. }
  7576. .column-gap-5 {
  7577. -moz-column-gap: 3rem !important;
  7578. column-gap: 3rem !important;
  7579. }
  7580. .font-monospace {
  7581. font-family: var(--bs-font-monospace) !important;
  7582. }
  7583. .fs-1 {
  7584. font-size: calc(1.375rem + 1.5vw) !important;
  7585. }
  7586. .fs-2 {
  7587. font-size: calc(1.325rem + 0.9vw) !important;
  7588. }
  7589. .fs-3 {
  7590. font-size: calc(1.3rem + 0.6vw) !important;
  7591. }
  7592. .fs-4 {
  7593. font-size: calc(1.275rem + 0.3vw) !important;
  7594. }
  7595. .fs-5 {
  7596. font-size: 1.25rem !important;
  7597. }
  7598. .fs-6 {
  7599. font-size: 1rem !important;
  7600. }
  7601. .fst-italic {
  7602. font-style: italic !important;
  7603. }
  7604. .fst-normal {
  7605. font-style: normal !important;
  7606. }
  7607. .fw-lighter {
  7608. font-weight: lighter !important;
  7609. }
  7610. .fw-light {
  7611. font-weight: 300 !important;
  7612. }
  7613. .fw-normal {
  7614. font-weight: 400 !important;
  7615. }
  7616. .fw-medium {
  7617. font-weight: 500 !important;
  7618. }
  7619. .fw-semibold {
  7620. font-weight: 600 !important;
  7621. }
  7622. .fw-bold {
  7623. font-weight: 700 !important;
  7624. }
  7625. .fw-bolder {
  7626. font-weight: bolder !important;
  7627. }
  7628. .lh-1 {
  7629. line-height: 1 !important;
  7630. }
  7631. .lh-sm {
  7632. line-height: 1.25 !important;
  7633. }
  7634. .lh-base {
  7635. line-height: 1.5 !important;
  7636. }
  7637. .lh-lg {
  7638. line-height: 2 !important;
  7639. }
  7640. .text-start {
  7641. text-align: left !important;
  7642. }
  7643. .text-end {
  7644. text-align: right !important;
  7645. }
  7646. .text-center {
  7647. text-align: center !important;
  7648. }
  7649. .text-decoration-none {
  7650. text-decoration: none !important;
  7651. }
  7652. .text-decoration-underline {
  7653. text-decoration: underline !important;
  7654. }
  7655. .text-decoration-line-through {
  7656. text-decoration: line-through !important;
  7657. }
  7658. .text-lowercase {
  7659. text-transform: lowercase !important;
  7660. }
  7661. .text-uppercase {
  7662. text-transform: uppercase !important;
  7663. }
  7664. .text-capitalize {
  7665. text-transform: capitalize !important;
  7666. }
  7667. .text-wrap {
  7668. white-space: normal !important;
  7669. }
  7670. .text-nowrap {
  7671. white-space: nowrap !important;
  7672. }
  7673. /* rtl:begin:remove */
  7674. .text-break {
  7675. word-wrap: break-word !important;
  7676. word-break: break-word !important;
  7677. }
  7678. /* rtl:end:remove */
  7679. .text-primary {
  7680. --bs-text-opacity: 1;
  7681. color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
  7682. }
  7683. .text-secondary {
  7684. --bs-text-opacity: 1;
  7685. color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
  7686. }
  7687. .text-success {
  7688. --bs-text-opacity: 1;
  7689. color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
  7690. }
  7691. .text-info {
  7692. --bs-text-opacity: 1;
  7693. color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
  7694. }
  7695. .text-warning {
  7696. --bs-text-opacity: 1;
  7697. color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
  7698. }
  7699. .text-danger {
  7700. --bs-text-opacity: 1;
  7701. color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
  7702. }
  7703. .text-light {
  7704. --bs-text-opacity: 1;
  7705. color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
  7706. }
  7707. .text-dark {
  7708. --bs-text-opacity: 1;
  7709. color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
  7710. }
  7711. .text-black {
  7712. --bs-text-opacity: 1;
  7713. color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
  7714. }
  7715. .text-white {
  7716. --bs-text-opacity: 1;
  7717. color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
  7718. }
  7719. .text-body {
  7720. --bs-text-opacity: 1;
  7721. color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
  7722. }
  7723. .text-muted {
  7724. --bs-text-opacity: 1;
  7725. color: var(--bs-secondary-color) !important;
  7726. }
  7727. .text-black-50 {
  7728. --bs-text-opacity: 1;
  7729. color: rgba(0, 0, 0, 0.5) !important;
  7730. }
  7731. .text-white-50 {
  7732. --bs-text-opacity: 1;
  7733. color: rgba(255, 255, 255, 0.5) !important;
  7734. }
  7735. .text-body-secondary {
  7736. --bs-text-opacity: 1;
  7737. color: var(--bs-secondary-color) !important;
  7738. }
  7739. .text-body-tertiary {
  7740. --bs-text-opacity: 1;
  7741. color: var(--bs-tertiary-color) !important;
  7742. }
  7743. .text-body-emphasis {
  7744. --bs-text-opacity: 1;
  7745. color: var(--bs-emphasis-color) !important;
  7746. }
  7747. .text-reset {
  7748. --bs-text-opacity: 1;
  7749. color: inherit !important;
  7750. }
  7751. .text-opacity-25 {
  7752. --bs-text-opacity: 0.25;
  7753. }
  7754. .text-opacity-50 {
  7755. --bs-text-opacity: 0.5;
  7756. }
  7757. .text-opacity-75 {
  7758. --bs-text-opacity: 0.75;
  7759. }
  7760. .text-opacity-100 {
  7761. --bs-text-opacity: 1;
  7762. }
  7763. .text-primary-emphasis {
  7764. color: var(--bs-primary-text) !important;
  7765. }
  7766. .text-secondary-emphasis {
  7767. color: var(--bs-secondary-text) !important;
  7768. }
  7769. .text-success-emphasis {
  7770. color: var(--bs-success-text) !important;
  7771. }
  7772. .text-info-emphasis {
  7773. color: var(--bs-info-text) !important;
  7774. }
  7775. .text-warning-emphasis {
  7776. color: var(--bs-warning-text) !important;
  7777. }
  7778. .text-danger-emphasis {
  7779. color: var(--bs-danger-text) !important;
  7780. }
  7781. .text-light-emphasis {
  7782. color: var(--bs-light-text) !important;
  7783. }
  7784. .text-dark-emphasis {
  7785. color: var(--bs-dark-text) !important;
  7786. }
  7787. .bg-primary {
  7788. --bs-bg-opacity: 1;
  7789. background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
  7790. }
  7791. .bg-secondary {
  7792. --bs-bg-opacity: 1;
  7793. background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
  7794. }
  7795. .bg-success {
  7796. --bs-bg-opacity: 1;
  7797. background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
  7798. }
  7799. .bg-info {
  7800. --bs-bg-opacity: 1;
  7801. background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
  7802. }
  7803. .bg-warning {
  7804. --bs-bg-opacity: 1;
  7805. background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
  7806. }
  7807. .bg-danger {
  7808. --bs-bg-opacity: 1;
  7809. background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
  7810. }
  7811. .bg-light {
  7812. --bs-bg-opacity: 1;
  7813. background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
  7814. }
  7815. .bg-dark {
  7816. --bs-bg-opacity: 1;
  7817. background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
  7818. }
  7819. .bg-black {
  7820. --bs-bg-opacity: 1;
  7821. background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
  7822. }
  7823. .bg-white {
  7824. --bs-bg-opacity: 1;
  7825. background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
  7826. }
  7827. .bg-body {
  7828. --bs-bg-opacity: 1;
  7829. background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
  7830. }
  7831. .bg-transparent {
  7832. --bs-bg-opacity: 1;
  7833. background-color: transparent !important;
  7834. }
  7835. .bg-body-secondary {
  7836. --bs-bg-opacity: 1;
  7837. background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important;
  7838. }
  7839. .bg-body-tertiary {
  7840. --bs-bg-opacity: 1;
  7841. background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important;
  7842. }
  7843. .bg-body-emphasis {
  7844. --bs-bg-opacity: 1;
  7845. background-color: rgba(var(--bs-emphasis-bg-rgb), var(--bs-bg-opacity)) !important;
  7846. }
  7847. .bg-opacity-10 {
  7848. --bs-bg-opacity: 0.1;
  7849. }
  7850. .bg-opacity-25 {
  7851. --bs-bg-opacity: 0.25;
  7852. }
  7853. .bg-opacity-50 {
  7854. --bs-bg-opacity: 0.5;
  7855. }
  7856. .bg-opacity-75 {
  7857. --bs-bg-opacity: 0.75;
  7858. }
  7859. .bg-opacity-100 {
  7860. --bs-bg-opacity: 1;
  7861. }
  7862. .bg-primary-subtle {
  7863. background-color: var(--bs-primary-bg-subtle) !important;
  7864. }
  7865. .bg-secondary-subtle {
  7866. background-color: var(--bs-secondary-bg-subtle) !important;
  7867. }
  7868. .bg-success-subtle {
  7869. background-color: var(--bs-success-bg-subtle) !important;
  7870. }
  7871. .bg-info-subtle {
  7872. background-color: var(--bs-info-bg-subtle) !important;
  7873. }
  7874. .bg-warning-subtle {
  7875. background-color: var(--bs-warning-bg-subtle) !important;
  7876. }
  7877. .bg-danger-subtle {
  7878. background-color: var(--bs-danger-bg-subtle) !important;
  7879. }
  7880. .bg-light-subtle {
  7881. background-color: var(--bs-light-bg-subtle) !important;
  7882. }
  7883. .bg-dark-subtle {
  7884. background-color: var(--bs-dark-bg-subtle) !important;
  7885. }
  7886. .bg-gradient {
  7887. background-image: var(--bs-gradient) !important;
  7888. }
  7889. .user-select-all {
  7890. -webkit-user-select: all !important;
  7891. -moz-user-select: all !important;
  7892. user-select: all !important;
  7893. }
  7894. .user-select-auto {
  7895. -webkit-user-select: auto !important;
  7896. -moz-user-select: auto !important;
  7897. user-select: auto !important;
  7898. }
  7899. .user-select-none {
  7900. -webkit-user-select: none !important;
  7901. -moz-user-select: none !important;
  7902. user-select: none !important;
  7903. }
  7904. .pe-none {
  7905. pointer-events: none !important;
  7906. }
  7907. .pe-auto {
  7908. pointer-events: auto !important;
  7909. }
  7910. .rounded {
  7911. border-radius: var(--bs-border-radius) !important;
  7912. }
  7913. .rounded-0 {
  7914. border-radius: 0 !important;
  7915. }
  7916. .rounded-1 {
  7917. border-radius: var(--bs-border-radius-sm) !important;
  7918. }
  7919. .rounded-2 {
  7920. border-radius: var(--bs-border-radius) !important;
  7921. }
  7922. .rounded-3 {
  7923. border-radius: var(--bs-border-radius-lg) !important;
  7924. }
  7925. .rounded-4 {
  7926. border-radius: var(--bs-border-radius-xl) !important;
  7927. }
  7928. .rounded-5 {
  7929. border-radius: var(--bs-border-radius-2xl) !important;
  7930. }
  7931. .rounded-circle {
  7932. border-radius: 50% !important;
  7933. }
  7934. .rounded-pill {
  7935. border-radius: var(--bs-border-radius-pill) !important;
  7936. }
  7937. .rounded-top {
  7938. border-top-left-radius: var(--bs-border-radius) !important;
  7939. border-top-right-radius: var(--bs-border-radius) !important;
  7940. }
  7941. .rounded-top-0 {
  7942. border-top-left-radius: 0 !important;
  7943. border-top-right-radius: 0 !important;
  7944. }
  7945. .rounded-top-1 {
  7946. border-top-left-radius: var(--bs-border-radius-sm) !important;
  7947. border-top-right-radius: var(--bs-border-radius-sm) !important;
  7948. }
  7949. .rounded-top-2 {
  7950. border-top-left-radius: var(--bs-border-radius) !important;
  7951. border-top-right-radius: var(--bs-border-radius) !important;
  7952. }
  7953. .rounded-top-3 {
  7954. border-top-left-radius: var(--bs-border-radius-lg) !important;
  7955. border-top-right-radius: var(--bs-border-radius-lg) !important;
  7956. }
  7957. .rounded-top-4 {
  7958. border-top-left-radius: var(--bs-border-radius-xl) !important;
  7959. border-top-right-radius: var(--bs-border-radius-xl) !important;
  7960. }
  7961. .rounded-top-5 {
  7962. border-top-left-radius: var(--bs-border-radius-2xl) !important;
  7963. border-top-right-radius: var(--bs-border-radius-2xl) !important;
  7964. }
  7965. .rounded-top-circle {
  7966. border-top-left-radius: 50% !important;
  7967. border-top-right-radius: 50% !important;
  7968. }
  7969. .rounded-top-pill {
  7970. border-top-left-radius: var(--bs-border-radius-pill) !important;
  7971. border-top-right-radius: var(--bs-border-radius-pill) !important;
  7972. }
  7973. .rounded-end {
  7974. border-top-right-radius: var(--bs-border-radius) !important;
  7975. border-bottom-right-radius: var(--bs-border-radius) !important;
  7976. }
  7977. .rounded-end-0 {
  7978. border-top-right-radius: 0 !important;
  7979. border-bottom-right-radius: 0 !important;
  7980. }
  7981. .rounded-end-1 {
  7982. border-top-right-radius: var(--bs-border-radius-sm) !important;
  7983. border-bottom-right-radius: var(--bs-border-radius-sm) !important;
  7984. }
  7985. .rounded-end-2 {
  7986. border-top-right-radius: var(--bs-border-radius) !important;
  7987. border-bottom-right-radius: var(--bs-border-radius) !important;
  7988. }
  7989. .rounded-end-3 {
  7990. border-top-right-radius: var(--bs-border-radius-lg) !important;
  7991. border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  7992. }
  7993. .rounded-end-4 {
  7994. border-top-right-radius: var(--bs-border-radius-xl) !important;
  7995. border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  7996. }
  7997. .rounded-end-5 {
  7998. border-top-right-radius: var(--bs-border-radius-2xl) !important;
  7999. border-bottom-right-radius: var(--bs-border-radius-2xl) !important;
  8000. }
  8001. .rounded-end-circle {
  8002. border-top-right-radius: 50% !important;
  8003. border-bottom-right-radius: 50% !important;
  8004. }
  8005. .rounded-end-pill {
  8006. border-top-right-radius: var(--bs-border-radius-pill) !important;
  8007. border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  8008. }
  8009. .rounded-bottom {
  8010. border-bottom-right-radius: var(--bs-border-radius) !important;
  8011. border-bottom-left-radius: var(--bs-border-radius) !important;
  8012. }
  8013. .rounded-bottom-0 {
  8014. border-bottom-right-radius: 0 !important;
  8015. border-bottom-left-radius: 0 !important;
  8016. }
  8017. .rounded-bottom-1 {
  8018. border-bottom-right-radius: var(--bs-border-radius-sm) !important;
  8019. border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  8020. }
  8021. .rounded-bottom-2 {
  8022. border-bottom-right-radius: var(--bs-border-radius) !important;
  8023. border-bottom-left-radius: var(--bs-border-radius) !important;
  8024. }
  8025. .rounded-bottom-3 {
  8026. border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  8027. border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  8028. }
  8029. .rounded-bottom-4 {
  8030. border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  8031. border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  8032. }
  8033. .rounded-bottom-5 {
  8034. border-bottom-right-radius: var(--bs-border-radius-2xl) !important;
  8035. border-bottom-left-radius: var(--bs-border-radius-2xl) !important;
  8036. }
  8037. .rounded-bottom-circle {
  8038. border-bottom-right-radius: 50% !important;
  8039. border-bottom-left-radius: 50% !important;
  8040. }
  8041. .rounded-bottom-pill {
  8042. border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  8043. border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  8044. }
  8045. .rounded-start {
  8046. border-bottom-left-radius: var(--bs-border-radius) !important;
  8047. border-top-left-radius: var(--bs-border-radius) !important;
  8048. }
  8049. .rounded-start-0 {
  8050. border-bottom-left-radius: 0 !important;
  8051. border-top-left-radius: 0 !important;
  8052. }
  8053. .rounded-start-1 {
  8054. border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  8055. border-top-left-radius: var(--bs-border-radius-sm) !important;
  8056. }
  8057. .rounded-start-2 {
  8058. border-bottom-left-radius: var(--bs-border-radius) !important;
  8059. border-top-left-radius: var(--bs-border-radius) !important;
  8060. }
  8061. .rounded-start-3 {
  8062. border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  8063. border-top-left-radius: var(--bs-border-radius-lg) !important;
  8064. }
  8065. .rounded-start-4 {
  8066. border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  8067. border-top-left-radius: var(--bs-border-radius-xl) !important;
  8068. }
  8069. .rounded-start-5 {
  8070. border-bottom-left-radius: var(--bs-border-radius-2xl) !important;
  8071. border-top-left-radius: var(--bs-border-radius-2xl) !important;
  8072. }
  8073. .rounded-start-circle {
  8074. border-bottom-left-radius: 50% !important;
  8075. border-top-left-radius: 50% !important;
  8076. }
  8077. .rounded-start-pill {
  8078. border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  8079. border-top-left-radius: var(--bs-border-radius-pill) !important;
  8080. }
  8081. .visible {
  8082. visibility: visible !important;
  8083. }
  8084. .invisible {
  8085. visibility: hidden !important;
  8086. }
  8087. .z-n1 {
  8088. z-index: -1 !important;
  8089. }
  8090. .z-0 {
  8091. z-index: 0 !important;
  8092. }
  8093. .z-1 {
  8094. z-index: 1 !important;
  8095. }
  8096. .z-2 {
  8097. z-index: 2 !important;
  8098. }
  8099. .z-3 {
  8100. z-index: 3 !important;
  8101. }
  8102. @media (min-width: 576px) {
  8103. .float-sm-start {
  8104. float: left !important;
  8105. }
  8106. .float-sm-end {
  8107. float: right !important;
  8108. }
  8109. .float-sm-none {
  8110. float: none !important;
  8111. }
  8112. .object-fit-sm-contain {
  8113. -o-object-fit: contain !important;
  8114. object-fit: contain !important;
  8115. }
  8116. .object-fit-sm-cover {
  8117. -o-object-fit: cover !important;
  8118. object-fit: cover !important;
  8119. }
  8120. .object-fit-sm-fill {
  8121. -o-object-fit: fill !important;
  8122. object-fit: fill !important;
  8123. }
  8124. .object-fit-sm-scale {
  8125. -o-object-fit: scale-down !important;
  8126. object-fit: scale-down !important;
  8127. }
  8128. .object-fit-sm-none {
  8129. -o-object-fit: none !important;
  8130. object-fit: none !important;
  8131. }
  8132. .d-sm-inline {
  8133. display: inline !important;
  8134. }
  8135. .d-sm-inline-block {
  8136. display: inline-block !important;
  8137. }
  8138. .d-sm-block {
  8139. display: block !important;
  8140. }
  8141. .d-sm-grid {
  8142. display: grid !important;
  8143. }
  8144. .d-sm-table {
  8145. display: table !important;
  8146. }
  8147. .d-sm-table-row {
  8148. display: table-row !important;
  8149. }
  8150. .d-sm-table-cell {
  8151. display: table-cell !important;
  8152. }
  8153. .d-sm-flex {
  8154. display: flex !important;
  8155. }
  8156. .d-sm-inline-flex {
  8157. display: inline-flex !important;
  8158. }
  8159. .d-sm-none {
  8160. display: none !important;
  8161. }
  8162. .flex-sm-fill {
  8163. flex: 1 1 auto !important;
  8164. }
  8165. .flex-sm-row {
  8166. flex-direction: row !important;
  8167. }
  8168. .flex-sm-column {
  8169. flex-direction: column !important;
  8170. }
  8171. .flex-sm-row-reverse {
  8172. flex-direction: row-reverse !important;
  8173. }
  8174. .flex-sm-column-reverse {
  8175. flex-direction: column-reverse !important;
  8176. }
  8177. .flex-sm-grow-0 {
  8178. flex-grow: 0 !important;
  8179. }
  8180. .flex-sm-grow-1 {
  8181. flex-grow: 1 !important;
  8182. }
  8183. .flex-sm-shrink-0 {
  8184. flex-shrink: 0 !important;
  8185. }
  8186. .flex-sm-shrink-1 {
  8187. flex-shrink: 1 !important;
  8188. }
  8189. .flex-sm-wrap {
  8190. flex-wrap: wrap !important;
  8191. }
  8192. .flex-sm-nowrap {
  8193. flex-wrap: nowrap !important;
  8194. }
  8195. .flex-sm-wrap-reverse {
  8196. flex-wrap: wrap-reverse !important;
  8197. }
  8198. .justify-content-sm-start {
  8199. justify-content: flex-start !important;
  8200. }
  8201. .justify-content-sm-end {
  8202. justify-content: flex-end !important;
  8203. }
  8204. .justify-content-sm-center {
  8205. justify-content: center !important;
  8206. }
  8207. .justify-content-sm-between {
  8208. justify-content: space-between !important;
  8209. }
  8210. .justify-content-sm-around {
  8211. justify-content: space-around !important;
  8212. }
  8213. .justify-content-sm-evenly {
  8214. justify-content: space-evenly !important;
  8215. }
  8216. .align-items-sm-start {
  8217. align-items: flex-start !important;
  8218. }
  8219. .align-items-sm-end {
  8220. align-items: flex-end !important;
  8221. }
  8222. .align-items-sm-center {
  8223. align-items: center !important;
  8224. }
  8225. .align-items-sm-baseline {
  8226. align-items: baseline !important;
  8227. }
  8228. .align-items-sm-stretch {
  8229. align-items: stretch !important;
  8230. }
  8231. .align-content-sm-start {
  8232. align-content: flex-start !important;
  8233. }
  8234. .align-content-sm-end {
  8235. align-content: flex-end !important;
  8236. }
  8237. .align-content-sm-center {
  8238. align-content: center !important;
  8239. }
  8240. .align-content-sm-between {
  8241. align-content: space-between !important;
  8242. }
  8243. .align-content-sm-around {
  8244. align-content: space-around !important;
  8245. }
  8246. .align-content-sm-stretch {
  8247. align-content: stretch !important;
  8248. }
  8249. .align-self-sm-auto {
  8250. align-self: auto !important;
  8251. }
  8252. .align-self-sm-start {
  8253. align-self: flex-start !important;
  8254. }
  8255. .align-self-sm-end {
  8256. align-self: flex-end !important;
  8257. }
  8258. .align-self-sm-center {
  8259. align-self: center !important;
  8260. }
  8261. .align-self-sm-baseline {
  8262. align-self: baseline !important;
  8263. }
  8264. .align-self-sm-stretch {
  8265. align-self: stretch !important;
  8266. }
  8267. .order-sm-first {
  8268. order: -1 !important;
  8269. }
  8270. .order-sm-0 {
  8271. order: 0 !important;
  8272. }
  8273. .order-sm-1 {
  8274. order: 1 !important;
  8275. }
  8276. .order-sm-2 {
  8277. order: 2 !important;
  8278. }
  8279. .order-sm-3 {
  8280. order: 3 !important;
  8281. }
  8282. .order-sm-4 {
  8283. order: 4 !important;
  8284. }
  8285. .order-sm-5 {
  8286. order: 5 !important;
  8287. }
  8288. .order-sm-last {
  8289. order: 6 !important;
  8290. }
  8291. .m-sm-0 {
  8292. margin: 0 !important;
  8293. }
  8294. .m-sm-1 {
  8295. margin: 0.25rem !important;
  8296. }
  8297. .m-sm-2 {
  8298. margin: 0.5rem !important;
  8299. }
  8300. .m-sm-3 {
  8301. margin: 1rem !important;
  8302. }
  8303. .m-sm-4 {
  8304. margin: 1.5rem !important;
  8305. }
  8306. .m-sm-5 {
  8307. margin: 3rem !important;
  8308. }
  8309. .m-sm-auto {
  8310. margin: auto !important;
  8311. }
  8312. .mx-sm-0 {
  8313. margin-right: 0 !important;
  8314. margin-left: 0 !important;
  8315. }
  8316. .mx-sm-1 {
  8317. margin-right: 0.25rem !important;
  8318. margin-left: 0.25rem !important;
  8319. }
  8320. .mx-sm-2 {
  8321. margin-right: 0.5rem !important;
  8322. margin-left: 0.5rem !important;
  8323. }
  8324. .mx-sm-3 {
  8325. margin-right: 1rem !important;
  8326. margin-left: 1rem !important;
  8327. }
  8328. .mx-sm-4 {
  8329. margin-right: 1.5rem !important;
  8330. margin-left: 1.5rem !important;
  8331. }
  8332. .mx-sm-5 {
  8333. margin-right: 3rem !important;
  8334. margin-left: 3rem !important;
  8335. }
  8336. .mx-sm-auto {
  8337. margin-right: auto !important;
  8338. margin-left: auto !important;
  8339. }
  8340. .my-sm-0 {
  8341. margin-top: 0 !important;
  8342. margin-bottom: 0 !important;
  8343. }
  8344. .my-sm-1 {
  8345. margin-top: 0.25rem !important;
  8346. margin-bottom: 0.25rem !important;
  8347. }
  8348. .my-sm-2 {
  8349. margin-top: 0.5rem !important;
  8350. margin-bottom: 0.5rem !important;
  8351. }
  8352. .my-sm-3 {
  8353. margin-top: 1rem !important;
  8354. margin-bottom: 1rem !important;
  8355. }
  8356. .my-sm-4 {
  8357. margin-top: 1.5rem !important;
  8358. margin-bottom: 1.5rem !important;
  8359. }
  8360. .my-sm-5 {
  8361. margin-top: 3rem !important;
  8362. margin-bottom: 3rem !important;
  8363. }
  8364. .my-sm-auto {
  8365. margin-top: auto !important;
  8366. margin-bottom: auto !important;
  8367. }
  8368. .mt-sm-0 {
  8369. margin-top: 0 !important;
  8370. }
  8371. .mt-sm-1 {
  8372. margin-top: 0.25rem !important;
  8373. }
  8374. .mt-sm-2 {
  8375. margin-top: 0.5rem !important;
  8376. }
  8377. .mt-sm-3 {
  8378. margin-top: 1rem !important;
  8379. }
  8380. .mt-sm-4 {
  8381. margin-top: 1.5rem !important;
  8382. }
  8383. .mt-sm-5 {
  8384. margin-top: 3rem !important;
  8385. }
  8386. .mt-sm-auto {
  8387. margin-top: auto !important;
  8388. }
  8389. .me-sm-0 {
  8390. margin-right: 0 !important;
  8391. }
  8392. .me-sm-1 {
  8393. margin-right: 0.25rem !important;
  8394. }
  8395. .me-sm-2 {
  8396. margin-right: 0.5rem !important;
  8397. }
  8398. .me-sm-3 {
  8399. margin-right: 1rem !important;
  8400. }
  8401. .me-sm-4 {
  8402. margin-right: 1.5rem !important;
  8403. }
  8404. .me-sm-5 {
  8405. margin-right: 3rem !important;
  8406. }
  8407. .me-sm-auto {
  8408. margin-right: auto !important;
  8409. }
  8410. .mb-sm-0 {
  8411. margin-bottom: 0 !important;
  8412. }
  8413. .mb-sm-1 {
  8414. margin-bottom: 0.25rem !important;
  8415. }
  8416. .mb-sm-2 {
  8417. margin-bottom: 0.5rem !important;
  8418. }
  8419. .mb-sm-3 {
  8420. margin-bottom: 1rem !important;
  8421. }
  8422. .mb-sm-4 {
  8423. margin-bottom: 1.5rem !important;
  8424. }
  8425. .mb-sm-5 {
  8426. margin-bottom: 3rem !important;
  8427. }
  8428. .mb-sm-auto {
  8429. margin-bottom: auto !important;
  8430. }
  8431. .ms-sm-0 {
  8432. margin-left: 0 !important;
  8433. }
  8434. .ms-sm-1 {
  8435. margin-left: 0.25rem !important;
  8436. }
  8437. .ms-sm-2 {
  8438. margin-left: 0.5rem !important;
  8439. }
  8440. .ms-sm-3 {
  8441. margin-left: 1rem !important;
  8442. }
  8443. .ms-sm-4 {
  8444. margin-left: 1.5rem !important;
  8445. }
  8446. .ms-sm-5 {
  8447. margin-left: 3rem !important;
  8448. }
  8449. .ms-sm-auto {
  8450. margin-left: auto !important;
  8451. }
  8452. .p-sm-0 {
  8453. padding: 0 !important;
  8454. }
  8455. .p-sm-1 {
  8456. padding: 0.25rem !important;
  8457. }
  8458. .p-sm-2 {
  8459. padding: 0.5rem !important;
  8460. }
  8461. .p-sm-3 {
  8462. padding: 1rem !important;
  8463. }
  8464. .p-sm-4 {
  8465. padding: 1.5rem !important;
  8466. }
  8467. .p-sm-5 {
  8468. padding: 3rem !important;
  8469. }
  8470. .px-sm-0 {
  8471. padding-right: 0 !important;
  8472. padding-left: 0 !important;
  8473. }
  8474. .px-sm-1 {
  8475. padding-right: 0.25rem !important;
  8476. padding-left: 0.25rem !important;
  8477. }
  8478. .px-sm-2 {
  8479. padding-right: 0.5rem !important;
  8480. padding-left: 0.5rem !important;
  8481. }
  8482. .px-sm-3 {
  8483. padding-right: 1rem !important;
  8484. padding-left: 1rem !important;
  8485. }
  8486. .px-sm-4 {
  8487. padding-right: 1.5rem !important;
  8488. padding-left: 1.5rem !important;
  8489. }
  8490. .px-sm-5 {
  8491. padding-right: 3rem !important;
  8492. padding-left: 3rem !important;
  8493. }
  8494. .py-sm-0 {
  8495. padding-top: 0 !important;
  8496. padding-bottom: 0 !important;
  8497. }
  8498. .py-sm-1 {
  8499. padding-top: 0.25rem !important;
  8500. padding-bottom: 0.25rem !important;
  8501. }
  8502. .py-sm-2 {
  8503. padding-top: 0.5rem !important;
  8504. padding-bottom: 0.5rem !important;
  8505. }
  8506. .py-sm-3 {
  8507. padding-top: 1rem !important;
  8508. padding-bottom: 1rem !important;
  8509. }
  8510. .py-sm-4 {
  8511. padding-top: 1.5rem !important;
  8512. padding-bottom: 1.5rem !important;
  8513. }
  8514. .py-sm-5 {
  8515. padding-top: 3rem !important;
  8516. padding-bottom: 3rem !important;
  8517. }
  8518. .pt-sm-0 {
  8519. padding-top: 0 !important;
  8520. }
  8521. .pt-sm-1 {
  8522. padding-top: 0.25rem !important;
  8523. }
  8524. .pt-sm-2 {
  8525. padding-top: 0.5rem !important;
  8526. }
  8527. .pt-sm-3 {
  8528. padding-top: 1rem !important;
  8529. }
  8530. .pt-sm-4 {
  8531. padding-top: 1.5rem !important;
  8532. }
  8533. .pt-sm-5 {
  8534. padding-top: 3rem !important;
  8535. }
  8536. .pe-sm-0 {
  8537. padding-right: 0 !important;
  8538. }
  8539. .pe-sm-1 {
  8540. padding-right: 0.25rem !important;
  8541. }
  8542. .pe-sm-2 {
  8543. padding-right: 0.5rem !important;
  8544. }
  8545. .pe-sm-3 {
  8546. padding-right: 1rem !important;
  8547. }
  8548. .pe-sm-4 {
  8549. padding-right: 1.5rem !important;
  8550. }
  8551. .pe-sm-5 {
  8552. padding-right: 3rem !important;
  8553. }
  8554. .pb-sm-0 {
  8555. padding-bottom: 0 !important;
  8556. }
  8557. .pb-sm-1 {
  8558. padding-bottom: 0.25rem !important;
  8559. }
  8560. .pb-sm-2 {
  8561. padding-bottom: 0.5rem !important;
  8562. }
  8563. .pb-sm-3 {
  8564. padding-bottom: 1rem !important;
  8565. }
  8566. .pb-sm-4 {
  8567. padding-bottom: 1.5rem !important;
  8568. }
  8569. .pb-sm-5 {
  8570. padding-bottom: 3rem !important;
  8571. }
  8572. .ps-sm-0 {
  8573. padding-left: 0 !important;
  8574. }
  8575. .ps-sm-1 {
  8576. padding-left: 0.25rem !important;
  8577. }
  8578. .ps-sm-2 {
  8579. padding-left: 0.5rem !important;
  8580. }
  8581. .ps-sm-3 {
  8582. padding-left: 1rem !important;
  8583. }
  8584. .ps-sm-4 {
  8585. padding-left: 1.5rem !important;
  8586. }
  8587. .ps-sm-5 {
  8588. padding-left: 3rem !important;
  8589. }
  8590. .gap-sm-0 {
  8591. gap: 0 !important;
  8592. }
  8593. .gap-sm-1 {
  8594. gap: 0.25rem !important;
  8595. }
  8596. .gap-sm-2 {
  8597. gap: 0.5rem !important;
  8598. }
  8599. .gap-sm-3 {
  8600. gap: 1rem !important;
  8601. }
  8602. .gap-sm-4 {
  8603. gap: 1.5rem !important;
  8604. }
  8605. .gap-sm-5 {
  8606. gap: 3rem !important;
  8607. }
  8608. .row-gap-sm-0 {
  8609. row-gap: 0 !important;
  8610. }
  8611. .row-gap-sm-1 {
  8612. row-gap: 0.25rem !important;
  8613. }
  8614. .row-gap-sm-2 {
  8615. row-gap: 0.5rem !important;
  8616. }
  8617. .row-gap-sm-3 {
  8618. row-gap: 1rem !important;
  8619. }
  8620. .row-gap-sm-4 {
  8621. row-gap: 1.5rem !important;
  8622. }
  8623. .row-gap-sm-5 {
  8624. row-gap: 3rem !important;
  8625. }
  8626. .column-gap-sm-0 {
  8627. -moz-column-gap: 0 !important;
  8628. column-gap: 0 !important;
  8629. }
  8630. .column-gap-sm-1 {
  8631. -moz-column-gap: 0.25rem !important;
  8632. column-gap: 0.25rem !important;
  8633. }
  8634. .column-gap-sm-2 {
  8635. -moz-column-gap: 0.5rem !important;
  8636. column-gap: 0.5rem !important;
  8637. }
  8638. .column-gap-sm-3 {
  8639. -moz-column-gap: 1rem !important;
  8640. column-gap: 1rem !important;
  8641. }
  8642. .column-gap-sm-4 {
  8643. -moz-column-gap: 1.5rem !important;
  8644. column-gap: 1.5rem !important;
  8645. }
  8646. .column-gap-sm-5 {
  8647. -moz-column-gap: 3rem !important;
  8648. column-gap: 3rem !important;
  8649. }
  8650. .text-sm-start {
  8651. text-align: left !important;
  8652. }
  8653. .text-sm-end {
  8654. text-align: right !important;
  8655. }
  8656. .text-sm-center {
  8657. text-align: center !important;
  8658. }
  8659. }
  8660. @media (min-width: 768px) {
  8661. .float-md-start {
  8662. float: left !important;
  8663. }
  8664. .float-md-end {
  8665. float: right !important;
  8666. }
  8667. .float-md-none {
  8668. float: none !important;
  8669. }
  8670. .object-fit-md-contain {
  8671. -o-object-fit: contain !important;
  8672. object-fit: contain !important;
  8673. }
  8674. .object-fit-md-cover {
  8675. -o-object-fit: cover !important;
  8676. object-fit: cover !important;
  8677. }
  8678. .object-fit-md-fill {
  8679. -o-object-fit: fill !important;
  8680. object-fit: fill !important;
  8681. }
  8682. .object-fit-md-scale {
  8683. -o-object-fit: scale-down !important;
  8684. object-fit: scale-down !important;
  8685. }
  8686. .object-fit-md-none {
  8687. -o-object-fit: none !important;
  8688. object-fit: none !important;
  8689. }
  8690. .d-md-inline {
  8691. display: inline !important;
  8692. }
  8693. .d-md-inline-block {
  8694. display: inline-block !important;
  8695. }
  8696. .d-md-block {
  8697. display: block !important;
  8698. }
  8699. .d-md-grid {
  8700. display: grid !important;
  8701. }
  8702. .d-md-table {
  8703. display: table !important;
  8704. }
  8705. .d-md-table-row {
  8706. display: table-row !important;
  8707. }
  8708. .d-md-table-cell {
  8709. display: table-cell !important;
  8710. }
  8711. .d-md-flex {
  8712. display: flex !important;
  8713. }
  8714. .d-md-inline-flex {
  8715. display: inline-flex !important;
  8716. }
  8717. .d-md-none {
  8718. display: none !important;
  8719. }
  8720. .flex-md-fill {
  8721. flex: 1 1 auto !important;
  8722. }
  8723. .flex-md-row {
  8724. flex-direction: row !important;
  8725. }
  8726. .flex-md-column {
  8727. flex-direction: column !important;
  8728. }
  8729. .flex-md-row-reverse {
  8730. flex-direction: row-reverse !important;
  8731. }
  8732. .flex-md-column-reverse {
  8733. flex-direction: column-reverse !important;
  8734. }
  8735. .flex-md-grow-0 {
  8736. flex-grow: 0 !important;
  8737. }
  8738. .flex-md-grow-1 {
  8739. flex-grow: 1 !important;
  8740. }
  8741. .flex-md-shrink-0 {
  8742. flex-shrink: 0 !important;
  8743. }
  8744. .flex-md-shrink-1 {
  8745. flex-shrink: 1 !important;
  8746. }
  8747. .flex-md-wrap {
  8748. flex-wrap: wrap !important;
  8749. }
  8750. .flex-md-nowrap {
  8751. flex-wrap: nowrap !important;
  8752. }
  8753. .flex-md-wrap-reverse {
  8754. flex-wrap: wrap-reverse !important;
  8755. }
  8756. .justify-content-md-start {
  8757. justify-content: flex-start !important;
  8758. }
  8759. .justify-content-md-end {
  8760. justify-content: flex-end !important;
  8761. }
  8762. .justify-content-md-center {
  8763. justify-content: center !important;
  8764. }
  8765. .justify-content-md-between {
  8766. justify-content: space-between !important;
  8767. }
  8768. .justify-content-md-around {
  8769. justify-content: space-around !important;
  8770. }
  8771. .justify-content-md-evenly {
  8772. justify-content: space-evenly !important;
  8773. }
  8774. .align-items-md-start {
  8775. align-items: flex-start !important;
  8776. }
  8777. .align-items-md-end {
  8778. align-items: flex-end !important;
  8779. }
  8780. .align-items-md-center {
  8781. align-items: center !important;
  8782. }
  8783. .align-items-md-baseline {
  8784. align-items: baseline !important;
  8785. }
  8786. .align-items-md-stretch {
  8787. align-items: stretch !important;
  8788. }
  8789. .align-content-md-start {
  8790. align-content: flex-start !important;
  8791. }
  8792. .align-content-md-end {
  8793. align-content: flex-end !important;
  8794. }
  8795. .align-content-md-center {
  8796. align-content: center !important;
  8797. }
  8798. .align-content-md-between {
  8799. align-content: space-between !important;
  8800. }
  8801. .align-content-md-around {
  8802. align-content: space-around !important;
  8803. }
  8804. .align-content-md-stretch {
  8805. align-content: stretch !important;
  8806. }
  8807. .align-self-md-auto {
  8808. align-self: auto !important;
  8809. }
  8810. .align-self-md-start {
  8811. align-self: flex-start !important;
  8812. }
  8813. .align-self-md-end {
  8814. align-self: flex-end !important;
  8815. }
  8816. .align-self-md-center {
  8817. align-self: center !important;
  8818. }
  8819. .align-self-md-baseline {
  8820. align-self: baseline !important;
  8821. }
  8822. .align-self-md-stretch {
  8823. align-self: stretch !important;
  8824. }
  8825. .order-md-first {
  8826. order: -1 !important;
  8827. }
  8828. .order-md-0 {
  8829. order: 0 !important;
  8830. }
  8831. .order-md-1 {
  8832. order: 1 !important;
  8833. }
  8834. .order-md-2 {
  8835. order: 2 !important;
  8836. }
  8837. .order-md-3 {
  8838. order: 3 !important;
  8839. }
  8840. .order-md-4 {
  8841. order: 4 !important;
  8842. }
  8843. .order-md-5 {
  8844. order: 5 !important;
  8845. }
  8846. .order-md-last {
  8847. order: 6 !important;
  8848. }
  8849. .m-md-0 {
  8850. margin: 0 !important;
  8851. }
  8852. .m-md-1 {
  8853. margin: 0.25rem !important;
  8854. }
  8855. .m-md-2 {
  8856. margin: 0.5rem !important;
  8857. }
  8858. .m-md-3 {
  8859. margin: 1rem !important;
  8860. }
  8861. .m-md-4 {
  8862. margin: 1.5rem !important;
  8863. }
  8864. .m-md-5 {
  8865. margin: 3rem !important;
  8866. }
  8867. .m-md-auto {
  8868. margin: auto !important;
  8869. }
  8870. .mx-md-0 {
  8871. margin-right: 0 !important;
  8872. margin-left: 0 !important;
  8873. }
  8874. .mx-md-1 {
  8875. margin-right: 0.25rem !important;
  8876. margin-left: 0.25rem !important;
  8877. }
  8878. .mx-md-2 {
  8879. margin-right: 0.5rem !important;
  8880. margin-left: 0.5rem !important;
  8881. }
  8882. .mx-md-3 {
  8883. margin-right: 1rem !important;
  8884. margin-left: 1rem !important;
  8885. }
  8886. .mx-md-4 {
  8887. margin-right: 1.5rem !important;
  8888. margin-left: 1.5rem !important;
  8889. }
  8890. .mx-md-5 {
  8891. margin-right: 3rem !important;
  8892. margin-left: 3rem !important;
  8893. }
  8894. .mx-md-auto {
  8895. margin-right: auto !important;
  8896. margin-left: auto !important;
  8897. }
  8898. .my-md-0 {
  8899. margin-top: 0 !important;
  8900. margin-bottom: 0 !important;
  8901. }
  8902. .my-md-1 {
  8903. margin-top: 0.25rem !important;
  8904. margin-bottom: 0.25rem !important;
  8905. }
  8906. .my-md-2 {
  8907. margin-top: 0.5rem !important;
  8908. margin-bottom: 0.5rem !important;
  8909. }
  8910. .my-md-3 {
  8911. margin-top: 1rem !important;
  8912. margin-bottom: 1rem !important;
  8913. }
  8914. .my-md-4 {
  8915. margin-top: 1.5rem !important;
  8916. margin-bottom: 1.5rem !important;
  8917. }
  8918. .my-md-5 {
  8919. margin-top: 3rem !important;
  8920. margin-bottom: 3rem !important;
  8921. }
  8922. .my-md-auto {
  8923. margin-top: auto !important;
  8924. margin-bottom: auto !important;
  8925. }
  8926. .mt-md-0 {
  8927. margin-top: 0 !important;
  8928. }
  8929. .mt-md-1 {
  8930. margin-top: 0.25rem !important;
  8931. }
  8932. .mt-md-2 {
  8933. margin-top: 0.5rem !important;
  8934. }
  8935. .mt-md-3 {
  8936. margin-top: 1rem !important;
  8937. }
  8938. .mt-md-4 {
  8939. margin-top: 1.5rem !important;
  8940. }
  8941. .mt-md-5 {
  8942. margin-top: 3rem !important;
  8943. }
  8944. .mt-md-auto {
  8945. margin-top: auto !important;
  8946. }
  8947. .me-md-0 {
  8948. margin-right: 0 !important;
  8949. }
  8950. .me-md-1 {
  8951. margin-right: 0.25rem !important;
  8952. }
  8953. .me-md-2 {
  8954. margin-right: 0.5rem !important;
  8955. }
  8956. .me-md-3 {
  8957. margin-right: 1rem !important;
  8958. }
  8959. .me-md-4 {
  8960. margin-right: 1.5rem !important;
  8961. }
  8962. .me-md-5 {
  8963. margin-right: 3rem !important;
  8964. }
  8965. .me-md-auto {
  8966. margin-right: auto !important;
  8967. }
  8968. .mb-md-0 {
  8969. margin-bottom: 0 !important;
  8970. }
  8971. .mb-md-1 {
  8972. margin-bottom: 0.25rem !important;
  8973. }
  8974. .mb-md-2 {
  8975. margin-bottom: 0.5rem !important;
  8976. }
  8977. .mb-md-3 {
  8978. margin-bottom: 1rem !important;
  8979. }
  8980. .mb-md-4 {
  8981. margin-bottom: 1.5rem !important;
  8982. }
  8983. .mb-md-5 {
  8984. margin-bottom: 3rem !important;
  8985. }
  8986. .mb-md-auto {
  8987. margin-bottom: auto !important;
  8988. }
  8989. .ms-md-0 {
  8990. margin-left: 0 !important;
  8991. }
  8992. .ms-md-1 {
  8993. margin-left: 0.25rem !important;
  8994. }
  8995. .ms-md-2 {
  8996. margin-left: 0.5rem !important;
  8997. }
  8998. .ms-md-3 {
  8999. margin-left: 1rem !important;
  9000. }
  9001. .ms-md-4 {
  9002. margin-left: 1.5rem !important;
  9003. }
  9004. .ms-md-5 {
  9005. margin-left: 3rem !important;
  9006. }
  9007. .ms-md-auto {
  9008. margin-left: auto !important;
  9009. }
  9010. .p-md-0 {
  9011. padding: 0 !important;
  9012. }
  9013. .p-md-1 {
  9014. padding: 0.25rem !important;
  9015. }
  9016. .p-md-2 {
  9017. padding: 0.5rem !important;
  9018. }
  9019. .p-md-3 {
  9020. padding: 1rem !important;
  9021. }
  9022. .p-md-4 {
  9023. padding: 1.5rem !important;
  9024. }
  9025. .p-md-5 {
  9026. padding: 3rem !important;
  9027. }
  9028. .px-md-0 {
  9029. padding-right: 0 !important;
  9030. padding-left: 0 !important;
  9031. }
  9032. .px-md-1 {
  9033. padding-right: 0.25rem !important;
  9034. padding-left: 0.25rem !important;
  9035. }
  9036. .px-md-2 {
  9037. padding-right: 0.5rem !important;
  9038. padding-left: 0.5rem !important;
  9039. }
  9040. .px-md-3 {
  9041. padding-right: 1rem !important;
  9042. padding-left: 1rem !important;
  9043. }
  9044. .px-md-4 {
  9045. padding-right: 1.5rem !important;
  9046. padding-left: 1.5rem !important;
  9047. }
  9048. .px-md-5 {
  9049. padding-right: 3rem !important;
  9050. padding-left: 3rem !important;
  9051. }
  9052. .py-md-0 {
  9053. padding-top: 0 !important;
  9054. padding-bottom: 0 !important;
  9055. }
  9056. .py-md-1 {
  9057. padding-top: 0.25rem !important;
  9058. padding-bottom: 0.25rem !important;
  9059. }
  9060. .py-md-2 {
  9061. padding-top: 0.5rem !important;
  9062. padding-bottom: 0.5rem !important;
  9063. }
  9064. .py-md-3 {
  9065. padding-top: 1rem !important;
  9066. padding-bottom: 1rem !important;
  9067. }
  9068. .py-md-4 {
  9069. padding-top: 1.5rem !important;
  9070. padding-bottom: 1.5rem !important;
  9071. }
  9072. .py-md-5 {
  9073. padding-top: 3rem !important;
  9074. padding-bottom: 3rem !important;
  9075. }
  9076. .pt-md-0 {
  9077. padding-top: 0 !important;
  9078. }
  9079. .pt-md-1 {
  9080. padding-top: 0.25rem !important;
  9081. }
  9082. .pt-md-2 {
  9083. padding-top: 0.5rem !important;
  9084. }
  9085. .pt-md-3 {
  9086. padding-top: 1rem !important;
  9087. }
  9088. .pt-md-4 {
  9089. padding-top: 1.5rem !important;
  9090. }
  9091. .pt-md-5 {
  9092. padding-top: 3rem !important;
  9093. }
  9094. .pe-md-0 {
  9095. padding-right: 0 !important;
  9096. }
  9097. .pe-md-1 {
  9098. padding-right: 0.25rem !important;
  9099. }
  9100. .pe-md-2 {
  9101. padding-right: 0.5rem !important;
  9102. }
  9103. .pe-md-3 {
  9104. padding-right: 1rem !important;
  9105. }
  9106. .pe-md-4 {
  9107. padding-right: 1.5rem !important;
  9108. }
  9109. .pe-md-5 {
  9110. padding-right: 3rem !important;
  9111. }
  9112. .pb-md-0 {
  9113. padding-bottom: 0 !important;
  9114. }
  9115. .pb-md-1 {
  9116. padding-bottom: 0.25rem !important;
  9117. }
  9118. .pb-md-2 {
  9119. padding-bottom: 0.5rem !important;
  9120. }
  9121. .pb-md-3 {
  9122. padding-bottom: 1rem !important;
  9123. }
  9124. .pb-md-4 {
  9125. padding-bottom: 1.5rem !important;
  9126. }
  9127. .pb-md-5 {
  9128. padding-bottom: 3rem !important;
  9129. }
  9130. .ps-md-0 {
  9131. padding-left: 0 !important;
  9132. }
  9133. .ps-md-1 {
  9134. padding-left: 0.25rem !important;
  9135. }
  9136. .ps-md-2 {
  9137. padding-left: 0.5rem !important;
  9138. }
  9139. .ps-md-3 {
  9140. padding-left: 1rem !important;
  9141. }
  9142. .ps-md-4 {
  9143. padding-left: 1.5rem !important;
  9144. }
  9145. .ps-md-5 {
  9146. padding-left: 3rem !important;
  9147. }
  9148. .gap-md-0 {
  9149. gap: 0 !important;
  9150. }
  9151. .gap-md-1 {
  9152. gap: 0.25rem !important;
  9153. }
  9154. .gap-md-2 {
  9155. gap: 0.5rem !important;
  9156. }
  9157. .gap-md-3 {
  9158. gap: 1rem !important;
  9159. }
  9160. .gap-md-4 {
  9161. gap: 1.5rem !important;
  9162. }
  9163. .gap-md-5 {
  9164. gap: 3rem !important;
  9165. }
  9166. .row-gap-md-0 {
  9167. row-gap: 0 !important;
  9168. }
  9169. .row-gap-md-1 {
  9170. row-gap: 0.25rem !important;
  9171. }
  9172. .row-gap-md-2 {
  9173. row-gap: 0.5rem !important;
  9174. }
  9175. .row-gap-md-3 {
  9176. row-gap: 1rem !important;
  9177. }
  9178. .row-gap-md-4 {
  9179. row-gap: 1.5rem !important;
  9180. }
  9181. .row-gap-md-5 {
  9182. row-gap: 3rem !important;
  9183. }
  9184. .column-gap-md-0 {
  9185. -moz-column-gap: 0 !important;
  9186. column-gap: 0 !important;
  9187. }
  9188. .column-gap-md-1 {
  9189. -moz-column-gap: 0.25rem !important;
  9190. column-gap: 0.25rem !important;
  9191. }
  9192. .column-gap-md-2 {
  9193. -moz-column-gap: 0.5rem !important;
  9194. column-gap: 0.5rem !important;
  9195. }
  9196. .column-gap-md-3 {
  9197. -moz-column-gap: 1rem !important;
  9198. column-gap: 1rem !important;
  9199. }
  9200. .column-gap-md-4 {
  9201. -moz-column-gap: 1.5rem !important;
  9202. column-gap: 1.5rem !important;
  9203. }
  9204. .column-gap-md-5 {
  9205. -moz-column-gap: 3rem !important;
  9206. column-gap: 3rem !important;
  9207. }
  9208. .text-md-start {
  9209. text-align: left !important;
  9210. }
  9211. .text-md-end {
  9212. text-align: right !important;
  9213. }
  9214. .text-md-center {
  9215. text-align: center !important;
  9216. }
  9217. }
  9218. @media (min-width: 992px) {
  9219. .float-lg-start {
  9220. float: left !important;
  9221. }
  9222. .float-lg-end {
  9223. float: right !important;
  9224. }
  9225. .float-lg-none {
  9226. float: none !important;
  9227. }
  9228. .object-fit-lg-contain {
  9229. -o-object-fit: contain !important;
  9230. object-fit: contain !important;
  9231. }
  9232. .object-fit-lg-cover {
  9233. -o-object-fit: cover !important;
  9234. object-fit: cover !important;
  9235. }
  9236. .object-fit-lg-fill {
  9237. -o-object-fit: fill !important;
  9238. object-fit: fill !important;
  9239. }
  9240. .object-fit-lg-scale {
  9241. -o-object-fit: scale-down !important;
  9242. object-fit: scale-down !important;
  9243. }
  9244. .object-fit-lg-none {
  9245. -o-object-fit: none !important;
  9246. object-fit: none !important;
  9247. }
  9248. .d-lg-inline {
  9249. display: inline !important;
  9250. }
  9251. .d-lg-inline-block {
  9252. display: inline-block !important;
  9253. }
  9254. .d-lg-block {
  9255. display: block !important;
  9256. }
  9257. .d-lg-grid {
  9258. display: grid !important;
  9259. }
  9260. .d-lg-table {
  9261. display: table !important;
  9262. }
  9263. .d-lg-table-row {
  9264. display: table-row !important;
  9265. }
  9266. .d-lg-table-cell {
  9267. display: table-cell !important;
  9268. }
  9269. .d-lg-flex {
  9270. display: flex !important;
  9271. }
  9272. .d-lg-inline-flex {
  9273. display: inline-flex !important;
  9274. }
  9275. .d-lg-none {
  9276. display: none !important;
  9277. }
  9278. .flex-lg-fill {
  9279. flex: 1 1 auto !important;
  9280. }
  9281. .flex-lg-row {
  9282. flex-direction: row !important;
  9283. }
  9284. .flex-lg-column {
  9285. flex-direction: column !important;
  9286. }
  9287. .flex-lg-row-reverse {
  9288. flex-direction: row-reverse !important;
  9289. }
  9290. .flex-lg-column-reverse {
  9291. flex-direction: column-reverse !important;
  9292. }
  9293. .flex-lg-grow-0 {
  9294. flex-grow: 0 !important;
  9295. }
  9296. .flex-lg-grow-1 {
  9297. flex-grow: 1 !important;
  9298. }
  9299. .flex-lg-shrink-0 {
  9300. flex-shrink: 0 !important;
  9301. }
  9302. .flex-lg-shrink-1 {
  9303. flex-shrink: 1 !important;
  9304. }
  9305. .flex-lg-wrap {
  9306. flex-wrap: wrap !important;
  9307. }
  9308. .flex-lg-nowrap {
  9309. flex-wrap: nowrap !important;
  9310. }
  9311. .flex-lg-wrap-reverse {
  9312. flex-wrap: wrap-reverse !important;
  9313. }
  9314. .justify-content-lg-start {
  9315. justify-content: flex-start !important;
  9316. }
  9317. .justify-content-lg-end {
  9318. justify-content: flex-end !important;
  9319. }
  9320. .justify-content-lg-center {
  9321. justify-content: center !important;
  9322. }
  9323. .justify-content-lg-between {
  9324. justify-content: space-between !important;
  9325. }
  9326. .justify-content-lg-around {
  9327. justify-content: space-around !important;
  9328. }
  9329. .justify-content-lg-evenly {
  9330. justify-content: space-evenly !important;
  9331. }
  9332. .align-items-lg-start {
  9333. align-items: flex-start !important;
  9334. }
  9335. .align-items-lg-end {
  9336. align-items: flex-end !important;
  9337. }
  9338. .align-items-lg-center {
  9339. align-items: center !important;
  9340. }
  9341. .align-items-lg-baseline {
  9342. align-items: baseline !important;
  9343. }
  9344. .align-items-lg-stretch {
  9345. align-items: stretch !important;
  9346. }
  9347. .align-content-lg-start {
  9348. align-content: flex-start !important;
  9349. }
  9350. .align-content-lg-end {
  9351. align-content: flex-end !important;
  9352. }
  9353. .align-content-lg-center {
  9354. align-content: center !important;
  9355. }
  9356. .align-content-lg-between {
  9357. align-content: space-between !important;
  9358. }
  9359. .align-content-lg-around {
  9360. align-content: space-around !important;
  9361. }
  9362. .align-content-lg-stretch {
  9363. align-content: stretch !important;
  9364. }
  9365. .align-self-lg-auto {
  9366. align-self: auto !important;
  9367. }
  9368. .align-self-lg-start {
  9369. align-self: flex-start !important;
  9370. }
  9371. .align-self-lg-end {
  9372. align-self: flex-end !important;
  9373. }
  9374. .align-self-lg-center {
  9375. align-self: center !important;
  9376. }
  9377. .align-self-lg-baseline {
  9378. align-self: baseline !important;
  9379. }
  9380. .align-self-lg-stretch {
  9381. align-self: stretch !important;
  9382. }
  9383. .order-lg-first {
  9384. order: -1 !important;
  9385. }
  9386. .order-lg-0 {
  9387. order: 0 !important;
  9388. }
  9389. .order-lg-1 {
  9390. order: 1 !important;
  9391. }
  9392. .order-lg-2 {
  9393. order: 2 !important;
  9394. }
  9395. .order-lg-3 {
  9396. order: 3 !important;
  9397. }
  9398. .order-lg-4 {
  9399. order: 4 !important;
  9400. }
  9401. .order-lg-5 {
  9402. order: 5 !important;
  9403. }
  9404. .order-lg-last {
  9405. order: 6 !important;
  9406. }
  9407. .m-lg-0 {
  9408. margin: 0 !important;
  9409. }
  9410. .m-lg-1 {
  9411. margin: 0.25rem !important;
  9412. }
  9413. .m-lg-2 {
  9414. margin: 0.5rem !important;
  9415. }
  9416. .m-lg-3 {
  9417. margin: 1rem !important;
  9418. }
  9419. .m-lg-4 {
  9420. margin: 1.5rem !important;
  9421. }
  9422. .m-lg-5 {
  9423. margin: 3rem !important;
  9424. }
  9425. .m-lg-auto {
  9426. margin: auto !important;
  9427. }
  9428. .mx-lg-0 {
  9429. margin-right: 0 !important;
  9430. margin-left: 0 !important;
  9431. }
  9432. .mx-lg-1 {
  9433. margin-right: 0.25rem !important;
  9434. margin-left: 0.25rem !important;
  9435. }
  9436. .mx-lg-2 {
  9437. margin-right: 0.5rem !important;
  9438. margin-left: 0.5rem !important;
  9439. }
  9440. .mx-lg-3 {
  9441. margin-right: 1rem !important;
  9442. margin-left: 1rem !important;
  9443. }
  9444. .mx-lg-4 {
  9445. margin-right: 1.5rem !important;
  9446. margin-left: 1.5rem !important;
  9447. }
  9448. .mx-lg-5 {
  9449. margin-right: 3rem !important;
  9450. margin-left: 3rem !important;
  9451. }
  9452. .mx-lg-auto {
  9453. margin-right: auto !important;
  9454. margin-left: auto !important;
  9455. }
  9456. .my-lg-0 {
  9457. margin-top: 0 !important;
  9458. margin-bottom: 0 !important;
  9459. }
  9460. .my-lg-1 {
  9461. margin-top: 0.25rem !important;
  9462. margin-bottom: 0.25rem !important;
  9463. }
  9464. .my-lg-2 {
  9465. margin-top: 0.5rem !important;
  9466. margin-bottom: 0.5rem !important;
  9467. }
  9468. .my-lg-3 {
  9469. margin-top: 1rem !important;
  9470. margin-bottom: 1rem !important;
  9471. }
  9472. .my-lg-4 {
  9473. margin-top: 1.5rem !important;
  9474. margin-bottom: 1.5rem !important;
  9475. }
  9476. .my-lg-5 {
  9477. margin-top: 3rem !important;
  9478. margin-bottom: 3rem !important;
  9479. }
  9480. .my-lg-auto {
  9481. margin-top: auto !important;
  9482. margin-bottom: auto !important;
  9483. }
  9484. .mt-lg-0 {
  9485. margin-top: 0 !important;
  9486. }
  9487. .mt-lg-1 {
  9488. margin-top: 0.25rem !important;
  9489. }
  9490. .mt-lg-2 {
  9491. margin-top: 0.5rem !important;
  9492. }
  9493. .mt-lg-3 {
  9494. margin-top: 1rem !important;
  9495. }
  9496. .mt-lg-4 {
  9497. margin-top: 1.5rem !important;
  9498. }
  9499. .mt-lg-5 {
  9500. margin-top: 3rem !important;
  9501. }
  9502. .mt-lg-auto {
  9503. margin-top: auto !important;
  9504. }
  9505. .me-lg-0 {
  9506. margin-right: 0 !important;
  9507. }
  9508. .me-lg-1 {
  9509. margin-right: 0.25rem !important;
  9510. }
  9511. .me-lg-2 {
  9512. margin-right: 0.5rem !important;
  9513. }
  9514. .me-lg-3 {
  9515. margin-right: 1rem !important;
  9516. }
  9517. .me-lg-4 {
  9518. margin-right: 1.5rem !important;
  9519. }
  9520. .me-lg-5 {
  9521. margin-right: 3rem !important;
  9522. }
  9523. .me-lg-auto {
  9524. margin-right: auto !important;
  9525. }
  9526. .mb-lg-0 {
  9527. margin-bottom: 0 !important;
  9528. }
  9529. .mb-lg-1 {
  9530. margin-bottom: 0.25rem !important;
  9531. }
  9532. .mb-lg-2 {
  9533. margin-bottom: 0.5rem !important;
  9534. }
  9535. .mb-lg-3 {
  9536. margin-bottom: 1rem !important;
  9537. }
  9538. .mb-lg-4 {
  9539. margin-bottom: 1.5rem !important;
  9540. }
  9541. .mb-lg-5 {
  9542. margin-bottom: 3rem !important;
  9543. }
  9544. .mb-lg-auto {
  9545. margin-bottom: auto !important;
  9546. }
  9547. .ms-lg-0 {
  9548. margin-left: 0 !important;
  9549. }
  9550. .ms-lg-1 {
  9551. margin-left: 0.25rem !important;
  9552. }
  9553. .ms-lg-2 {
  9554. margin-left: 0.5rem !important;
  9555. }
  9556. .ms-lg-3 {
  9557. margin-left: 1rem !important;
  9558. }
  9559. .ms-lg-4 {
  9560. margin-left: 1.5rem !important;
  9561. }
  9562. .ms-lg-5 {
  9563. margin-left: 3rem !important;
  9564. }
  9565. .ms-lg-auto {
  9566. margin-left: auto !important;
  9567. }
  9568. .p-lg-0 {
  9569. padding: 0 !important;
  9570. }
  9571. .p-lg-1 {
  9572. padding: 0.25rem !important;
  9573. }
  9574. .p-lg-2 {
  9575. padding: 0.5rem !important;
  9576. }
  9577. .p-lg-3 {
  9578. padding: 1rem !important;
  9579. }
  9580. .p-lg-4 {
  9581. padding: 1.5rem !important;
  9582. }
  9583. .p-lg-5 {
  9584. padding: 3rem !important;
  9585. }
  9586. .px-lg-0 {
  9587. padding-right: 0 !important;
  9588. padding-left: 0 !important;
  9589. }
  9590. .px-lg-1 {
  9591. padding-right: 0.25rem !important;
  9592. padding-left: 0.25rem !important;
  9593. }
  9594. .px-lg-2 {
  9595. padding-right: 0.5rem !important;
  9596. padding-left: 0.5rem !important;
  9597. }
  9598. .px-lg-3 {
  9599. padding-right: 1rem !important;
  9600. padding-left: 1rem !important;
  9601. }
  9602. .px-lg-4 {
  9603. padding-right: 1.5rem !important;
  9604. padding-left: 1.5rem !important;
  9605. }
  9606. .px-lg-5 {
  9607. padding-right: 3rem !important;
  9608. padding-left: 3rem !important;
  9609. }
  9610. .py-lg-0 {
  9611. padding-top: 0 !important;
  9612. padding-bottom: 0 !important;
  9613. }
  9614. .py-lg-1 {
  9615. padding-top: 0.25rem !important;
  9616. padding-bottom: 0.25rem !important;
  9617. }
  9618. .py-lg-2 {
  9619. padding-top: 0.5rem !important;
  9620. padding-bottom: 0.5rem !important;
  9621. }
  9622. .py-lg-3 {
  9623. padding-top: 1rem !important;
  9624. padding-bottom: 1rem !important;
  9625. }
  9626. .py-lg-4 {
  9627. padding-top: 1.5rem !important;
  9628. padding-bottom: 1.5rem !important;
  9629. }
  9630. .py-lg-5 {
  9631. padding-top: 3rem !important;
  9632. padding-bottom: 3rem !important;
  9633. }
  9634. .pt-lg-0 {
  9635. padding-top: 0 !important;
  9636. }
  9637. .pt-lg-1 {
  9638. padding-top: 0.25rem !important;
  9639. }
  9640. .pt-lg-2 {
  9641. padding-top: 0.5rem !important;
  9642. }
  9643. .pt-lg-3 {
  9644. padding-top: 1rem !important;
  9645. }
  9646. .pt-lg-4 {
  9647. padding-top: 1.5rem !important;
  9648. }
  9649. .pt-lg-5 {
  9650. padding-top: 3rem !important;
  9651. }
  9652. .pe-lg-0 {
  9653. padding-right: 0 !important;
  9654. }
  9655. .pe-lg-1 {
  9656. padding-right: 0.25rem !important;
  9657. }
  9658. .pe-lg-2 {
  9659. padding-right: 0.5rem !important;
  9660. }
  9661. .pe-lg-3 {
  9662. padding-right: 1rem !important;
  9663. }
  9664. .pe-lg-4 {
  9665. padding-right: 1.5rem !important;
  9666. }
  9667. .pe-lg-5 {
  9668. padding-right: 3rem !important;
  9669. }
  9670. .pb-lg-0 {
  9671. padding-bottom: 0 !important;
  9672. }
  9673. .pb-lg-1 {
  9674. padding-bottom: 0.25rem !important;
  9675. }
  9676. .pb-lg-2 {
  9677. padding-bottom: 0.5rem !important;
  9678. }
  9679. .pb-lg-3 {
  9680. padding-bottom: 1rem !important;
  9681. }
  9682. .pb-lg-4 {
  9683. padding-bottom: 1.5rem !important;
  9684. }
  9685. .pb-lg-5 {
  9686. padding-bottom: 3rem !important;
  9687. }
  9688. .ps-lg-0 {
  9689. padding-left: 0 !important;
  9690. }
  9691. .ps-lg-1 {
  9692. padding-left: 0.25rem !important;
  9693. }
  9694. .ps-lg-2 {
  9695. padding-left: 0.5rem !important;
  9696. }
  9697. .ps-lg-3 {
  9698. padding-left: 1rem !important;
  9699. }
  9700. .ps-lg-4 {
  9701. padding-left: 1.5rem !important;
  9702. }
  9703. .ps-lg-5 {
  9704. padding-left: 3rem !important;
  9705. }
  9706. .gap-lg-0 {
  9707. gap: 0 !important;
  9708. }
  9709. .gap-lg-1 {
  9710. gap: 0.25rem !important;
  9711. }
  9712. .gap-lg-2 {
  9713. gap: 0.5rem !important;
  9714. }
  9715. .gap-lg-3 {
  9716. gap: 1rem !important;
  9717. }
  9718. .gap-lg-4 {
  9719. gap: 1.5rem !important;
  9720. }
  9721. .gap-lg-5 {
  9722. gap: 3rem !important;
  9723. }
  9724. .row-gap-lg-0 {
  9725. row-gap: 0 !important;
  9726. }
  9727. .row-gap-lg-1 {
  9728. row-gap: 0.25rem !important;
  9729. }
  9730. .row-gap-lg-2 {
  9731. row-gap: 0.5rem !important;
  9732. }
  9733. .row-gap-lg-3 {
  9734. row-gap: 1rem !important;
  9735. }
  9736. .row-gap-lg-4 {
  9737. row-gap: 1.5rem !important;
  9738. }
  9739. .row-gap-lg-5 {
  9740. row-gap: 3rem !important;
  9741. }
  9742. .column-gap-lg-0 {
  9743. -moz-column-gap: 0 !important;
  9744. column-gap: 0 !important;
  9745. }
  9746. .column-gap-lg-1 {
  9747. -moz-column-gap: 0.25rem !important;
  9748. column-gap: 0.25rem !important;
  9749. }
  9750. .column-gap-lg-2 {
  9751. -moz-column-gap: 0.5rem !important;
  9752. column-gap: 0.5rem !important;
  9753. }
  9754. .column-gap-lg-3 {
  9755. -moz-column-gap: 1rem !important;
  9756. column-gap: 1rem !important;
  9757. }
  9758. .column-gap-lg-4 {
  9759. -moz-column-gap: 1.5rem !important;
  9760. column-gap: 1.5rem !important;
  9761. }
  9762. .column-gap-lg-5 {
  9763. -moz-column-gap: 3rem !important;
  9764. column-gap: 3rem !important;
  9765. }
  9766. .text-lg-start {
  9767. text-align: left !important;
  9768. }
  9769. .text-lg-end {
  9770. text-align: right !important;
  9771. }
  9772. .text-lg-center {
  9773. text-align: center !important;
  9774. }
  9775. }
  9776. @media (min-width: 1200px) {
  9777. .float-xl-start {
  9778. float: left !important;
  9779. }
  9780. .float-xl-end {
  9781. float: right !important;
  9782. }
  9783. .float-xl-none {
  9784. float: none !important;
  9785. }
  9786. .object-fit-xl-contain {
  9787. -o-object-fit: contain !important;
  9788. object-fit: contain !important;
  9789. }
  9790. .object-fit-xl-cover {
  9791. -o-object-fit: cover !important;
  9792. object-fit: cover !important;
  9793. }
  9794. .object-fit-xl-fill {
  9795. -o-object-fit: fill !important;
  9796. object-fit: fill !important;
  9797. }
  9798. .object-fit-xl-scale {
  9799. -o-object-fit: scale-down !important;
  9800. object-fit: scale-down !important;
  9801. }
  9802. .object-fit-xl-none {
  9803. -o-object-fit: none !important;
  9804. object-fit: none !important;
  9805. }
  9806. .d-xl-inline {
  9807. display: inline !important;
  9808. }
  9809. .d-xl-inline-block {
  9810. display: inline-block !important;
  9811. }
  9812. .d-xl-block {
  9813. display: block !important;
  9814. }
  9815. .d-xl-grid {
  9816. display: grid !important;
  9817. }
  9818. .d-xl-table {
  9819. display: table !important;
  9820. }
  9821. .d-xl-table-row {
  9822. display: table-row !important;
  9823. }
  9824. .d-xl-table-cell {
  9825. display: table-cell !important;
  9826. }
  9827. .d-xl-flex {
  9828. display: flex !important;
  9829. }
  9830. .d-xl-inline-flex {
  9831. display: inline-flex !important;
  9832. }
  9833. .d-xl-none {
  9834. display: none !important;
  9835. }
  9836. .flex-xl-fill {
  9837. flex: 1 1 auto !important;
  9838. }
  9839. .flex-xl-row {
  9840. flex-direction: row !important;
  9841. }
  9842. .flex-xl-column {
  9843. flex-direction: column !important;
  9844. }
  9845. .flex-xl-row-reverse {
  9846. flex-direction: row-reverse !important;
  9847. }
  9848. .flex-xl-column-reverse {
  9849. flex-direction: column-reverse !important;
  9850. }
  9851. .flex-xl-grow-0 {
  9852. flex-grow: 0 !important;
  9853. }
  9854. .flex-xl-grow-1 {
  9855. flex-grow: 1 !important;
  9856. }
  9857. .flex-xl-shrink-0 {
  9858. flex-shrink: 0 !important;
  9859. }
  9860. .flex-xl-shrink-1 {
  9861. flex-shrink: 1 !important;
  9862. }
  9863. .flex-xl-wrap {
  9864. flex-wrap: wrap !important;
  9865. }
  9866. .flex-xl-nowrap {
  9867. flex-wrap: nowrap !important;
  9868. }
  9869. .flex-xl-wrap-reverse {
  9870. flex-wrap: wrap-reverse !important;
  9871. }
  9872. .justify-content-xl-start {
  9873. justify-content: flex-start !important;
  9874. }
  9875. .justify-content-xl-end {
  9876. justify-content: flex-end !important;
  9877. }
  9878. .justify-content-xl-center {
  9879. justify-content: center !important;
  9880. }
  9881. .justify-content-xl-between {
  9882. justify-content: space-between !important;
  9883. }
  9884. .justify-content-xl-around {
  9885. justify-content: space-around !important;
  9886. }
  9887. .justify-content-xl-evenly {
  9888. justify-content: space-evenly !important;
  9889. }
  9890. .align-items-xl-start {
  9891. align-items: flex-start !important;
  9892. }
  9893. .align-items-xl-end {
  9894. align-items: flex-end !important;
  9895. }
  9896. .align-items-xl-center {
  9897. align-items: center !important;
  9898. }
  9899. .align-items-xl-baseline {
  9900. align-items: baseline !important;
  9901. }
  9902. .align-items-xl-stretch {
  9903. align-items: stretch !important;
  9904. }
  9905. .align-content-xl-start {
  9906. align-content: flex-start !important;
  9907. }
  9908. .align-content-xl-end {
  9909. align-content: flex-end !important;
  9910. }
  9911. .align-content-xl-center {
  9912. align-content: center !important;
  9913. }
  9914. .align-content-xl-between {
  9915. align-content: space-between !important;
  9916. }
  9917. .align-content-xl-around {
  9918. align-content: space-around !important;
  9919. }
  9920. .align-content-xl-stretch {
  9921. align-content: stretch !important;
  9922. }
  9923. .align-self-xl-auto {
  9924. align-self: auto !important;
  9925. }
  9926. .align-self-xl-start {
  9927. align-self: flex-start !important;
  9928. }
  9929. .align-self-xl-end {
  9930. align-self: flex-end !important;
  9931. }
  9932. .align-self-xl-center {
  9933. align-self: center !important;
  9934. }
  9935. .align-self-xl-baseline {
  9936. align-self: baseline !important;
  9937. }
  9938. .align-self-xl-stretch {
  9939. align-self: stretch !important;
  9940. }
  9941. .order-xl-first {
  9942. order: -1 !important;
  9943. }
  9944. .order-xl-0 {
  9945. order: 0 !important;
  9946. }
  9947. .order-xl-1 {
  9948. order: 1 !important;
  9949. }
  9950. .order-xl-2 {
  9951. order: 2 !important;
  9952. }
  9953. .order-xl-3 {
  9954. order: 3 !important;
  9955. }
  9956. .order-xl-4 {
  9957. order: 4 !important;
  9958. }
  9959. .order-xl-5 {
  9960. order: 5 !important;
  9961. }
  9962. .order-xl-last {
  9963. order: 6 !important;
  9964. }
  9965. .m-xl-0 {
  9966. margin: 0 !important;
  9967. }
  9968. .m-xl-1 {
  9969. margin: 0.25rem !important;
  9970. }
  9971. .m-xl-2 {
  9972. margin: 0.5rem !important;
  9973. }
  9974. .m-xl-3 {
  9975. margin: 1rem !important;
  9976. }
  9977. .m-xl-4 {
  9978. margin: 1.5rem !important;
  9979. }
  9980. .m-xl-5 {
  9981. margin: 3rem !important;
  9982. }
  9983. .m-xl-auto {
  9984. margin: auto !important;
  9985. }
  9986. .mx-xl-0 {
  9987. margin-right: 0 !important;
  9988. margin-left: 0 !important;
  9989. }
  9990. .mx-xl-1 {
  9991. margin-right: 0.25rem !important;
  9992. margin-left: 0.25rem !important;
  9993. }
  9994. .mx-xl-2 {
  9995. margin-right: 0.5rem !important;
  9996. margin-left: 0.5rem !important;
  9997. }
  9998. .mx-xl-3 {
  9999. margin-right: 1rem !important;
  10000. margin-left: 1rem !important;
  10001. }
  10002. .mx-xl-4 {
  10003. margin-right: 1.5rem !important;
  10004. margin-left: 1.5rem !important;
  10005. }
  10006. .mx-xl-5 {
  10007. margin-right: 3rem !important;
  10008. margin-left: 3rem !important;
  10009. }
  10010. .mx-xl-auto {
  10011. margin-right: auto !important;
  10012. margin-left: auto !important;
  10013. }
  10014. .my-xl-0 {
  10015. margin-top: 0 !important;
  10016. margin-bottom: 0 !important;
  10017. }
  10018. .my-xl-1 {
  10019. margin-top: 0.25rem !important;
  10020. margin-bottom: 0.25rem !important;
  10021. }
  10022. .my-xl-2 {
  10023. margin-top: 0.5rem !important;
  10024. margin-bottom: 0.5rem !important;
  10025. }
  10026. .my-xl-3 {
  10027. margin-top: 1rem !important;
  10028. margin-bottom: 1rem !important;
  10029. }
  10030. .my-xl-4 {
  10031. margin-top: 1.5rem !important;
  10032. margin-bottom: 1.5rem !important;
  10033. }
  10034. .my-xl-5 {
  10035. margin-top: 3rem !important;
  10036. margin-bottom: 3rem !important;
  10037. }
  10038. .my-xl-auto {
  10039. margin-top: auto !important;
  10040. margin-bottom: auto !important;
  10041. }
  10042. .mt-xl-0 {
  10043. margin-top: 0 !important;
  10044. }
  10045. .mt-xl-1 {
  10046. margin-top: 0.25rem !important;
  10047. }
  10048. .mt-xl-2 {
  10049. margin-top: 0.5rem !important;
  10050. }
  10051. .mt-xl-3 {
  10052. margin-top: 1rem !important;
  10053. }
  10054. .mt-xl-4 {
  10055. margin-top: 1.5rem !important;
  10056. }
  10057. .mt-xl-5 {
  10058. margin-top: 3rem !important;
  10059. }
  10060. .mt-xl-auto {
  10061. margin-top: auto !important;
  10062. }
  10063. .me-xl-0 {
  10064. margin-right: 0 !important;
  10065. }
  10066. .me-xl-1 {
  10067. margin-right: 0.25rem !important;
  10068. }
  10069. .me-xl-2 {
  10070. margin-right: 0.5rem !important;
  10071. }
  10072. .me-xl-3 {
  10073. margin-right: 1rem !important;
  10074. }
  10075. .me-xl-4 {
  10076. margin-right: 1.5rem !important;
  10077. }
  10078. .me-xl-5 {
  10079. margin-right: 3rem !important;
  10080. }
  10081. .me-xl-auto {
  10082. margin-right: auto !important;
  10083. }
  10084. .mb-xl-0 {
  10085. margin-bottom: 0 !important;
  10086. }
  10087. .mb-xl-1 {
  10088. margin-bottom: 0.25rem !important;
  10089. }
  10090. .mb-xl-2 {
  10091. margin-bottom: 0.5rem !important;
  10092. }
  10093. .mb-xl-3 {
  10094. margin-bottom: 1rem !important;
  10095. }
  10096. .mb-xl-4 {
  10097. margin-bottom: 1.5rem !important;
  10098. }
  10099. .mb-xl-5 {
  10100. margin-bottom: 3rem !important;
  10101. }
  10102. .mb-xl-auto {
  10103. margin-bottom: auto !important;
  10104. }
  10105. .ms-xl-0 {
  10106. margin-left: 0 !important;
  10107. }
  10108. .ms-xl-1 {
  10109. margin-left: 0.25rem !important;
  10110. }
  10111. .ms-xl-2 {
  10112. margin-left: 0.5rem !important;
  10113. }
  10114. .ms-xl-3 {
  10115. margin-left: 1rem !important;
  10116. }
  10117. .ms-xl-4 {
  10118. margin-left: 1.5rem !important;
  10119. }
  10120. .ms-xl-5 {
  10121. margin-left: 3rem !important;
  10122. }
  10123. .ms-xl-auto {
  10124. margin-left: auto !important;
  10125. }
  10126. .p-xl-0 {
  10127. padding: 0 !important;
  10128. }
  10129. .p-xl-1 {
  10130. padding: 0.25rem !important;
  10131. }
  10132. .p-xl-2 {
  10133. padding: 0.5rem !important;
  10134. }
  10135. .p-xl-3 {
  10136. padding: 1rem !important;
  10137. }
  10138. .p-xl-4 {
  10139. padding: 1.5rem !important;
  10140. }
  10141. .p-xl-5 {
  10142. padding: 3rem !important;
  10143. }
  10144. .px-xl-0 {
  10145. padding-right: 0 !important;
  10146. padding-left: 0 !important;
  10147. }
  10148. .px-xl-1 {
  10149. padding-right: 0.25rem !important;
  10150. padding-left: 0.25rem !important;
  10151. }
  10152. .px-xl-2 {
  10153. padding-right: 0.5rem !important;
  10154. padding-left: 0.5rem !important;
  10155. }
  10156. .px-xl-3 {
  10157. padding-right: 1rem !important;
  10158. padding-left: 1rem !important;
  10159. }
  10160. .px-xl-4 {
  10161. padding-right: 1.5rem !important;
  10162. padding-left: 1.5rem !important;
  10163. }
  10164. .px-xl-5 {
  10165. padding-right: 3rem !important;
  10166. padding-left: 3rem !important;
  10167. }
  10168. .py-xl-0 {
  10169. padding-top: 0 !important;
  10170. padding-bottom: 0 !important;
  10171. }
  10172. .py-xl-1 {
  10173. padding-top: 0.25rem !important;
  10174. padding-bottom: 0.25rem !important;
  10175. }
  10176. .py-xl-2 {
  10177. padding-top: 0.5rem !important;
  10178. padding-bottom: 0.5rem !important;
  10179. }
  10180. .py-xl-3 {
  10181. padding-top: 1rem !important;
  10182. padding-bottom: 1rem !important;
  10183. }
  10184. .py-xl-4 {
  10185. padding-top: 1.5rem !important;
  10186. padding-bottom: 1.5rem !important;
  10187. }
  10188. .py-xl-5 {
  10189. padding-top: 3rem !important;
  10190. padding-bottom: 3rem !important;
  10191. }
  10192. .pt-xl-0 {
  10193. padding-top: 0 !important;
  10194. }
  10195. .pt-xl-1 {
  10196. padding-top: 0.25rem !important;
  10197. }
  10198. .pt-xl-2 {
  10199. padding-top: 0.5rem !important;
  10200. }
  10201. .pt-xl-3 {
  10202. padding-top: 1rem !important;
  10203. }
  10204. .pt-xl-4 {
  10205. padding-top: 1.5rem !important;
  10206. }
  10207. .pt-xl-5 {
  10208. padding-top: 3rem !important;
  10209. }
  10210. .pe-xl-0 {
  10211. padding-right: 0 !important;
  10212. }
  10213. .pe-xl-1 {
  10214. padding-right: 0.25rem !important;
  10215. }
  10216. .pe-xl-2 {
  10217. padding-right: 0.5rem !important;
  10218. }
  10219. .pe-xl-3 {
  10220. padding-right: 1rem !important;
  10221. }
  10222. .pe-xl-4 {
  10223. padding-right: 1.5rem !important;
  10224. }
  10225. .pe-xl-5 {
  10226. padding-right: 3rem !important;
  10227. }
  10228. .pb-xl-0 {
  10229. padding-bottom: 0 !important;
  10230. }
  10231. .pb-xl-1 {
  10232. padding-bottom: 0.25rem !important;
  10233. }
  10234. .pb-xl-2 {
  10235. padding-bottom: 0.5rem !important;
  10236. }
  10237. .pb-xl-3 {
  10238. padding-bottom: 1rem !important;
  10239. }
  10240. .pb-xl-4 {
  10241. padding-bottom: 1.5rem !important;
  10242. }
  10243. .pb-xl-5 {
  10244. padding-bottom: 3rem !important;
  10245. }
  10246. .ps-xl-0 {
  10247. padding-left: 0 !important;
  10248. }
  10249. .ps-xl-1 {
  10250. padding-left: 0.25rem !important;
  10251. }
  10252. .ps-xl-2 {
  10253. padding-left: 0.5rem !important;
  10254. }
  10255. .ps-xl-3 {
  10256. padding-left: 1rem !important;
  10257. }
  10258. .ps-xl-4 {
  10259. padding-left: 1.5rem !important;
  10260. }
  10261. .ps-xl-5 {
  10262. padding-left: 3rem !important;
  10263. }
  10264. .gap-xl-0 {
  10265. gap: 0 !important;
  10266. }
  10267. .gap-xl-1 {
  10268. gap: 0.25rem !important;
  10269. }
  10270. .gap-xl-2 {
  10271. gap: 0.5rem !important;
  10272. }
  10273. .gap-xl-3 {
  10274. gap: 1rem !important;
  10275. }
  10276. .gap-xl-4 {
  10277. gap: 1.5rem !important;
  10278. }
  10279. .gap-xl-5 {
  10280. gap: 3rem !important;
  10281. }
  10282. .row-gap-xl-0 {
  10283. row-gap: 0 !important;
  10284. }
  10285. .row-gap-xl-1 {
  10286. row-gap: 0.25rem !important;
  10287. }
  10288. .row-gap-xl-2 {
  10289. row-gap: 0.5rem !important;
  10290. }
  10291. .row-gap-xl-3 {
  10292. row-gap: 1rem !important;
  10293. }
  10294. .row-gap-xl-4 {
  10295. row-gap: 1.5rem !important;
  10296. }
  10297. .row-gap-xl-5 {
  10298. row-gap: 3rem !important;
  10299. }
  10300. .column-gap-xl-0 {
  10301. -moz-column-gap: 0 !important;
  10302. column-gap: 0 !important;
  10303. }
  10304. .column-gap-xl-1 {
  10305. -moz-column-gap: 0.25rem !important;
  10306. column-gap: 0.25rem !important;
  10307. }
  10308. .column-gap-xl-2 {
  10309. -moz-column-gap: 0.5rem !important;
  10310. column-gap: 0.5rem !important;
  10311. }
  10312. .column-gap-xl-3 {
  10313. -moz-column-gap: 1rem !important;
  10314. column-gap: 1rem !important;
  10315. }
  10316. .column-gap-xl-4 {
  10317. -moz-column-gap: 1.5rem !important;
  10318. column-gap: 1.5rem !important;
  10319. }
  10320. .column-gap-xl-5 {
  10321. -moz-column-gap: 3rem !important;
  10322. column-gap: 3rem !important;
  10323. }
  10324. .text-xl-start {
  10325. text-align: left !important;
  10326. }
  10327. .text-xl-end {
  10328. text-align: right !important;
  10329. }
  10330. .text-xl-center {
  10331. text-align: center !important;
  10332. }
  10333. }
  10334. @media (min-width: 1400px) {
  10335. .float-xxl-start {
  10336. float: left !important;
  10337. }
  10338. .float-xxl-end {
  10339. float: right !important;
  10340. }
  10341. .float-xxl-none {
  10342. float: none !important;
  10343. }
  10344. .object-fit-xxl-contain {
  10345. -o-object-fit: contain !important;
  10346. object-fit: contain !important;
  10347. }
  10348. .object-fit-xxl-cover {
  10349. -o-object-fit: cover !important;
  10350. object-fit: cover !important;
  10351. }
  10352. .object-fit-xxl-fill {
  10353. -o-object-fit: fill !important;
  10354. object-fit: fill !important;
  10355. }
  10356. .object-fit-xxl-scale {
  10357. -o-object-fit: scale-down !important;
  10358. object-fit: scale-down !important;
  10359. }
  10360. .object-fit-xxl-none {
  10361. -o-object-fit: none !important;
  10362. object-fit: none !important;
  10363. }
  10364. .d-xxl-inline {
  10365. display: inline !important;
  10366. }
  10367. .d-xxl-inline-block {
  10368. display: inline-block !important;
  10369. }
  10370. .d-xxl-block {
  10371. display: block !important;
  10372. }
  10373. .d-xxl-grid {
  10374. display: grid !important;
  10375. }
  10376. .d-xxl-table {
  10377. display: table !important;
  10378. }
  10379. .d-xxl-table-row {
  10380. display: table-row !important;
  10381. }
  10382. .d-xxl-table-cell {
  10383. display: table-cell !important;
  10384. }
  10385. .d-xxl-flex {
  10386. display: flex !important;
  10387. }
  10388. .d-xxl-inline-flex {
  10389. display: inline-flex !important;
  10390. }
  10391. .d-xxl-none {
  10392. display: none !important;
  10393. }
  10394. .flex-xxl-fill {
  10395. flex: 1 1 auto !important;
  10396. }
  10397. .flex-xxl-row {
  10398. flex-direction: row !important;
  10399. }
  10400. .flex-xxl-column {
  10401. flex-direction: column !important;
  10402. }
  10403. .flex-xxl-row-reverse {
  10404. flex-direction: row-reverse !important;
  10405. }
  10406. .flex-xxl-column-reverse {
  10407. flex-direction: column-reverse !important;
  10408. }
  10409. .flex-xxl-grow-0 {
  10410. flex-grow: 0 !important;
  10411. }
  10412. .flex-xxl-grow-1 {
  10413. flex-grow: 1 !important;
  10414. }
  10415. .flex-xxl-shrink-0 {
  10416. flex-shrink: 0 !important;
  10417. }
  10418. .flex-xxl-shrink-1 {
  10419. flex-shrink: 1 !important;
  10420. }
  10421. .flex-xxl-wrap {
  10422. flex-wrap: wrap !important;
  10423. }
  10424. .flex-xxl-nowrap {
  10425. flex-wrap: nowrap !important;
  10426. }
  10427. .flex-xxl-wrap-reverse {
  10428. flex-wrap: wrap-reverse !important;
  10429. }
  10430. .justify-content-xxl-start {
  10431. justify-content: flex-start !important;
  10432. }
  10433. .justify-content-xxl-end {
  10434. justify-content: flex-end !important;
  10435. }
  10436. .justify-content-xxl-center {
  10437. justify-content: center !important;
  10438. }
  10439. .justify-content-xxl-between {
  10440. justify-content: space-between !important;
  10441. }
  10442. .justify-content-xxl-around {
  10443. justify-content: space-around !important;
  10444. }
  10445. .justify-content-xxl-evenly {
  10446. justify-content: space-evenly !important;
  10447. }
  10448. .align-items-xxl-start {
  10449. align-items: flex-start !important;
  10450. }
  10451. .align-items-xxl-end {
  10452. align-items: flex-end !important;
  10453. }
  10454. .align-items-xxl-center {
  10455. align-items: center !important;
  10456. }
  10457. .align-items-xxl-baseline {
  10458. align-items: baseline !important;
  10459. }
  10460. .align-items-xxl-stretch {
  10461. align-items: stretch !important;
  10462. }
  10463. .align-content-xxl-start {
  10464. align-content: flex-start !important;
  10465. }
  10466. .align-content-xxl-end {
  10467. align-content: flex-end !important;
  10468. }
  10469. .align-content-xxl-center {
  10470. align-content: center !important;
  10471. }
  10472. .align-content-xxl-between {
  10473. align-content: space-between !important;
  10474. }
  10475. .align-content-xxl-around {
  10476. align-content: space-around !important;
  10477. }
  10478. .align-content-xxl-stretch {
  10479. align-content: stretch !important;
  10480. }
  10481. .align-self-xxl-auto {
  10482. align-self: auto !important;
  10483. }
  10484. .align-self-xxl-start {
  10485. align-self: flex-start !important;
  10486. }
  10487. .align-self-xxl-end {
  10488. align-self: flex-end !important;
  10489. }
  10490. .align-self-xxl-center {
  10491. align-self: center !important;
  10492. }
  10493. .align-self-xxl-baseline {
  10494. align-self: baseline !important;
  10495. }
  10496. .align-self-xxl-stretch {
  10497. align-self: stretch !important;
  10498. }
  10499. .order-xxl-first {
  10500. order: -1 !important;
  10501. }
  10502. .order-xxl-0 {
  10503. order: 0 !important;
  10504. }
  10505. .order-xxl-1 {
  10506. order: 1 !important;
  10507. }
  10508. .order-xxl-2 {
  10509. order: 2 !important;
  10510. }
  10511. .order-xxl-3 {
  10512. order: 3 !important;
  10513. }
  10514. .order-xxl-4 {
  10515. order: 4 !important;
  10516. }
  10517. .order-xxl-5 {
  10518. order: 5 !important;
  10519. }
  10520. .order-xxl-last {
  10521. order: 6 !important;
  10522. }
  10523. .m-xxl-0 {
  10524. margin: 0 !important;
  10525. }
  10526. .m-xxl-1 {
  10527. margin: 0.25rem !important;
  10528. }
  10529. .m-xxl-2 {
  10530. margin: 0.5rem !important;
  10531. }
  10532. .m-xxl-3 {
  10533. margin: 1rem !important;
  10534. }
  10535. .m-xxl-4 {
  10536. margin: 1.5rem !important;
  10537. }
  10538. .m-xxl-5 {
  10539. margin: 3rem !important;
  10540. }
  10541. .m-xxl-auto {
  10542. margin: auto !important;
  10543. }
  10544. .mx-xxl-0 {
  10545. margin-right: 0 !important;
  10546. margin-left: 0 !important;
  10547. }
  10548. .mx-xxl-1 {
  10549. margin-right: 0.25rem !important;
  10550. margin-left: 0.25rem !important;
  10551. }
  10552. .mx-xxl-2 {
  10553. margin-right: 0.5rem !important;
  10554. margin-left: 0.5rem !important;
  10555. }
  10556. .mx-xxl-3 {
  10557. margin-right: 1rem !important;
  10558. margin-left: 1rem !important;
  10559. }
  10560. .mx-xxl-4 {
  10561. margin-right: 1.5rem !important;
  10562. margin-left: 1.5rem !important;
  10563. }
  10564. .mx-xxl-5 {
  10565. margin-right: 3rem !important;
  10566. margin-left: 3rem !important;
  10567. }
  10568. .mx-xxl-auto {
  10569. margin-right: auto !important;
  10570. margin-left: auto !important;
  10571. }
  10572. .my-xxl-0 {
  10573. margin-top: 0 !important;
  10574. margin-bottom: 0 !important;
  10575. }
  10576. .my-xxl-1 {
  10577. margin-top: 0.25rem !important;
  10578. margin-bottom: 0.25rem !important;
  10579. }
  10580. .my-xxl-2 {
  10581. margin-top: 0.5rem !important;
  10582. margin-bottom: 0.5rem !important;
  10583. }
  10584. .my-xxl-3 {
  10585. margin-top: 1rem !important;
  10586. margin-bottom: 1rem !important;
  10587. }
  10588. .my-xxl-4 {
  10589. margin-top: 1.5rem !important;
  10590. margin-bottom: 1.5rem !important;
  10591. }
  10592. .my-xxl-5 {
  10593. margin-top: 3rem !important;
  10594. margin-bottom: 3rem !important;
  10595. }
  10596. .my-xxl-auto {
  10597. margin-top: auto !important;
  10598. margin-bottom: auto !important;
  10599. }
  10600. .mt-xxl-0 {
  10601. margin-top: 0 !important;
  10602. }
  10603. .mt-xxl-1 {
  10604. margin-top: 0.25rem !important;
  10605. }
  10606. .mt-xxl-2 {
  10607. margin-top: 0.5rem !important;
  10608. }
  10609. .mt-xxl-3 {
  10610. margin-top: 1rem !important;
  10611. }
  10612. .mt-xxl-4 {
  10613. margin-top: 1.5rem !important;
  10614. }
  10615. .mt-xxl-5 {
  10616. margin-top: 3rem !important;
  10617. }
  10618. .mt-xxl-auto {
  10619. margin-top: auto !important;
  10620. }
  10621. .me-xxl-0 {
  10622. margin-right: 0 !important;
  10623. }
  10624. .me-xxl-1 {
  10625. margin-right: 0.25rem !important;
  10626. }
  10627. .me-xxl-2 {
  10628. margin-right: 0.5rem !important;
  10629. }
  10630. .me-xxl-3 {
  10631. margin-right: 1rem !important;
  10632. }
  10633. .me-xxl-4 {
  10634. margin-right: 1.5rem !important;
  10635. }
  10636. .me-xxl-5 {
  10637. margin-right: 3rem !important;
  10638. }
  10639. .me-xxl-auto {
  10640. margin-right: auto !important;
  10641. }
  10642. .mb-xxl-0 {
  10643. margin-bottom: 0 !important;
  10644. }
  10645. .mb-xxl-1 {
  10646. margin-bottom: 0.25rem !important;
  10647. }
  10648. .mb-xxl-2 {
  10649. margin-bottom: 0.5rem !important;
  10650. }
  10651. .mb-xxl-3 {
  10652. margin-bottom: 1rem !important;
  10653. }
  10654. .mb-xxl-4 {
  10655. margin-bottom: 1.5rem !important;
  10656. }
  10657. .mb-xxl-5 {
  10658. margin-bottom: 3rem !important;
  10659. }
  10660. .mb-xxl-auto {
  10661. margin-bottom: auto !important;
  10662. }
  10663. .ms-xxl-0 {
  10664. margin-left: 0 !important;
  10665. }
  10666. .ms-xxl-1 {
  10667. margin-left: 0.25rem !important;
  10668. }
  10669. .ms-xxl-2 {
  10670. margin-left: 0.5rem !important;
  10671. }
  10672. .ms-xxl-3 {
  10673. margin-left: 1rem !important;
  10674. }
  10675. .ms-xxl-4 {
  10676. margin-left: 1.5rem !important;
  10677. }
  10678. .ms-xxl-5 {
  10679. margin-left: 3rem !important;
  10680. }
  10681. .ms-xxl-auto {
  10682. margin-left: auto !important;
  10683. }
  10684. .p-xxl-0 {
  10685. padding: 0 !important;
  10686. }
  10687. .p-xxl-1 {
  10688. padding: 0.25rem !important;
  10689. }
  10690. .p-xxl-2 {
  10691. padding: 0.5rem !important;
  10692. }
  10693. .p-xxl-3 {
  10694. padding: 1rem !important;
  10695. }
  10696. .p-xxl-4 {
  10697. padding: 1.5rem !important;
  10698. }
  10699. .p-xxl-5 {
  10700. padding: 3rem !important;
  10701. }
  10702. .px-xxl-0 {
  10703. padding-right: 0 !important;
  10704. padding-left: 0 !important;
  10705. }
  10706. .px-xxl-1 {
  10707. padding-right: 0.25rem !important;
  10708. padding-left: 0.25rem !important;
  10709. }
  10710. .px-xxl-2 {
  10711. padding-right: 0.5rem !important;
  10712. padding-left: 0.5rem !important;
  10713. }
  10714. .px-xxl-3 {
  10715. padding-right: 1rem !important;
  10716. padding-left: 1rem !important;
  10717. }
  10718. .px-xxl-4 {
  10719. padding-right: 1.5rem !important;
  10720. padding-left: 1.5rem !important;
  10721. }
  10722. .px-xxl-5 {
  10723. padding-right: 3rem !important;
  10724. padding-left: 3rem !important;
  10725. }
  10726. .py-xxl-0 {
  10727. padding-top: 0 !important;
  10728. padding-bottom: 0 !important;
  10729. }
  10730. .py-xxl-1 {
  10731. padding-top: 0.25rem !important;
  10732. padding-bottom: 0.25rem !important;
  10733. }
  10734. .py-xxl-2 {
  10735. padding-top: 0.5rem !important;
  10736. padding-bottom: 0.5rem !important;
  10737. }
  10738. .py-xxl-3 {
  10739. padding-top: 1rem !important;
  10740. padding-bottom: 1rem !important;
  10741. }
  10742. .py-xxl-4 {
  10743. padding-top: 1.5rem !important;
  10744. padding-bottom: 1.5rem !important;
  10745. }
  10746. .py-xxl-5 {
  10747. padding-top: 3rem !important;
  10748. padding-bottom: 3rem !important;
  10749. }
  10750. .pt-xxl-0 {
  10751. padding-top: 0 !important;
  10752. }
  10753. .pt-xxl-1 {
  10754. padding-top: 0.25rem !important;
  10755. }
  10756. .pt-xxl-2 {
  10757. padding-top: 0.5rem !important;
  10758. }
  10759. .pt-xxl-3 {
  10760. padding-top: 1rem !important;
  10761. }
  10762. .pt-xxl-4 {
  10763. padding-top: 1.5rem !important;
  10764. }
  10765. .pt-xxl-5 {
  10766. padding-top: 3rem !important;
  10767. }
  10768. .pe-xxl-0 {
  10769. padding-right: 0 !important;
  10770. }
  10771. .pe-xxl-1 {
  10772. padding-right: 0.25rem !important;
  10773. }
  10774. .pe-xxl-2 {
  10775. padding-right: 0.5rem !important;
  10776. }
  10777. .pe-xxl-3 {
  10778. padding-right: 1rem !important;
  10779. }
  10780. .pe-xxl-4 {
  10781. padding-right: 1.5rem !important;
  10782. }
  10783. .pe-xxl-5 {
  10784. padding-right: 3rem !important;
  10785. }
  10786. .pb-xxl-0 {
  10787. padding-bottom: 0 !important;
  10788. }
  10789. .pb-xxl-1 {
  10790. padding-bottom: 0.25rem !important;
  10791. }
  10792. .pb-xxl-2 {
  10793. padding-bottom: 0.5rem !important;
  10794. }
  10795. .pb-xxl-3 {
  10796. padding-bottom: 1rem !important;
  10797. }
  10798. .pb-xxl-4 {
  10799. padding-bottom: 1.5rem !important;
  10800. }
  10801. .pb-xxl-5 {
  10802. padding-bottom: 3rem !important;
  10803. }
  10804. .ps-xxl-0 {
  10805. padding-left: 0 !important;
  10806. }
  10807. .ps-xxl-1 {
  10808. padding-left: 0.25rem !important;
  10809. }
  10810. .ps-xxl-2 {
  10811. padding-left: 0.5rem !important;
  10812. }
  10813. .ps-xxl-3 {
  10814. padding-left: 1rem !important;
  10815. }
  10816. .ps-xxl-4 {
  10817. padding-left: 1.5rem !important;
  10818. }
  10819. .ps-xxl-5 {
  10820. padding-left: 3rem !important;
  10821. }
  10822. .gap-xxl-0 {
  10823. gap: 0 !important;
  10824. }
  10825. .gap-xxl-1 {
  10826. gap: 0.25rem !important;
  10827. }
  10828. .gap-xxl-2 {
  10829. gap: 0.5rem !important;
  10830. }
  10831. .gap-xxl-3 {
  10832. gap: 1rem !important;
  10833. }
  10834. .gap-xxl-4 {
  10835. gap: 1.5rem !important;
  10836. }
  10837. .gap-xxl-5 {
  10838. gap: 3rem !important;
  10839. }
  10840. .row-gap-xxl-0 {
  10841. row-gap: 0 !important;
  10842. }
  10843. .row-gap-xxl-1 {
  10844. row-gap: 0.25rem !important;
  10845. }
  10846. .row-gap-xxl-2 {
  10847. row-gap: 0.5rem !important;
  10848. }
  10849. .row-gap-xxl-3 {
  10850. row-gap: 1rem !important;
  10851. }
  10852. .row-gap-xxl-4 {
  10853. row-gap: 1.5rem !important;
  10854. }
  10855. .row-gap-xxl-5 {
  10856. row-gap: 3rem !important;
  10857. }
  10858. .column-gap-xxl-0 {
  10859. -moz-column-gap: 0 !important;
  10860. column-gap: 0 !important;
  10861. }
  10862. .column-gap-xxl-1 {
  10863. -moz-column-gap: 0.25rem !important;
  10864. column-gap: 0.25rem !important;
  10865. }
  10866. .column-gap-xxl-2 {
  10867. -moz-column-gap: 0.5rem !important;
  10868. column-gap: 0.5rem !important;
  10869. }
  10870. .column-gap-xxl-3 {
  10871. -moz-column-gap: 1rem !important;
  10872. column-gap: 1rem !important;
  10873. }
  10874. .column-gap-xxl-4 {
  10875. -moz-column-gap: 1.5rem !important;
  10876. column-gap: 1.5rem !important;
  10877. }
  10878. .column-gap-xxl-5 {
  10879. -moz-column-gap: 3rem !important;
  10880. column-gap: 3rem !important;
  10881. }
  10882. .text-xxl-start {
  10883. text-align: left !important;
  10884. }
  10885. .text-xxl-end {
  10886. text-align: right !important;
  10887. }
  10888. .text-xxl-center {
  10889. text-align: center !important;
  10890. }
  10891. }
  10892. @media (min-width: 1200px) {
  10893. .fs-1 {
  10894. font-size: 2.5rem !important;
  10895. }
  10896. .fs-2 {
  10897. font-size: 2rem !important;
  10898. }
  10899. .fs-3 {
  10900. font-size: 1.75rem !important;
  10901. }
  10902. .fs-4 {
  10903. font-size: 1.5rem !important;
  10904. }
  10905. }
  10906. @media print {
  10907. .d-print-inline {
  10908. display: inline !important;
  10909. }
  10910. .d-print-inline-block {
  10911. display: inline-block !important;
  10912. }
  10913. .d-print-block {
  10914. display: block !important;
  10915. }
  10916. .d-print-grid {
  10917. display: grid !important;
  10918. }
  10919. .d-print-table {
  10920. display: table !important;
  10921. }
  10922. .d-print-table-row {
  10923. display: table-row !important;
  10924. }
  10925. .d-print-table-cell {
  10926. display: table-cell !important;
  10927. }
  10928. .d-print-flex {
  10929. display: flex !important;
  10930. }
  10931. .d-print-inline-flex {
  10932. display: inline-flex !important;
  10933. }
  10934. .d-print-none {
  10935. display: none !important;
  10936. }
  10937. }
  10938. /*# sourceMappingURL=bootstrap.css.map */