bootstrap.css 202 KB

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