bootstrap.css 189 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724
  1. @charset "UTF-8";
  2. /*!
  3. * Bootstrap v5.0.0-beta2 (https://getbootstrap.com/)
  4. * Copyright 2011-2021 The Bootstrap Authors
  5. * Copyright 2011-2021 Twitter, Inc.
  6. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
  7. */
  8. :root {
  9. --bs-blue: #0d6efd;
  10. --bs-indigo: #6610f2;
  11. --bs-purple: #6f42c1;
  12. --bs-pink: #d63384;
  13. --bs-red: #dc3545;
  14. --bs-orange: #fd7e14;
  15. --bs-yellow: #ffc107;
  16. --bs-green: #198754;
  17. --bs-teal: #20c997;
  18. --bs-cyan: #0dcaf0;
  19. --bs-white: #fff;
  20. --bs-gray: #6c757d;
  21. --bs-gray-dark: #343a40;
  22. --bs-primary: #0d6efd;
  23. --bs-secondary: #6c757d;
  24. --bs-success: #198754;
  25. --bs-info: #0dcaf0;
  26. --bs-warning: #ffc107;
  27. --bs-danger: #dc3545;
  28. --bs-light: #f8f9fa;
  29. --bs-dark: #212529;
  30. --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";
  31. --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  32. --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  33. }
  34. *,
  35. *::before,
  36. *::after {
  37. box-sizing: border-box;
  38. }
  39. @media (prefers-reduced-motion: no-preference) {
  40. :root {
  41. scroll-behavior: smooth;
  42. }
  43. }
  44. body {
  45. margin: 0;
  46. font-family: var(--bs-font-sans-serif);
  47. font-size: 1rem;
  48. font-weight: 400;
  49. line-height: 1.5;
  50. color: #212529;
  51. background-color: #fff;
  52. -webkit-text-size-adjust: 100%;
  53. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  54. }
  55. [tabindex="-1"]:focus:not(:focus-visible) {
  56. outline: 0 !important;
  57. }
  58. hr {
  59. margin: 1rem 0;
  60. color: inherit;
  61. background-color: currentColor;
  62. border: 0;
  63. opacity: 0.25;
  64. }
  65. hr:not([size]) {
  66. height: 1px;
  67. }
  68. h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  69. margin-top: 0;
  70. margin-bottom: 0.5rem;
  71. font-weight: 500;
  72. line-height: 1.2;
  73. }
  74. h1, .h1 {
  75. font-size: calc(1.375rem + 1.5vw);
  76. }
  77. @media (min-width: 1200px) {
  78. h1, .h1 {
  79. font-size: 2.5rem;
  80. }
  81. }
  82. h2, .h2 {
  83. font-size: calc(1.325rem + 0.9vw);
  84. }
  85. @media (min-width: 1200px) {
  86. h2, .h2 {
  87. font-size: 2rem;
  88. }
  89. }
  90. h3, .h3 {
  91. font-size: calc(1.3rem + 0.6vw);
  92. }
  93. @media (min-width: 1200px) {
  94. h3, .h3 {
  95. font-size: 1.75rem;
  96. }
  97. }
  98. h4, .h4 {
  99. font-size: calc(1.275rem + 0.3vw);
  100. }
  101. @media (min-width: 1200px) {
  102. h4, .h4 {
  103. font-size: 1.5rem;
  104. }
  105. }
  106. h5, .h5 {
  107. font-size: 1.25rem;
  108. }
  109. h6, .h6 {
  110. font-size: 1rem;
  111. }
  112. p {
  113. margin-top: 0;
  114. margin-bottom: 1rem;
  115. }
  116. abbr[title],
  117. abbr[data-bs-original-title] {
  118. text-decoration: underline;
  119. -webkit-text-decoration: underline dotted;
  120. text-decoration: underline dotted;
  121. cursor: help;
  122. -webkit-text-decoration-skip-ink: none;
  123. text-decoration-skip-ink: none;
  124. }
  125. address {
  126. margin-bottom: 1rem;
  127. font-style: normal;
  128. line-height: inherit;
  129. }
  130. ol,
  131. ul {
  132. padding-left: 2rem;
  133. }
  134. ol,
  135. ul,
  136. dl {
  137. margin-top: 0;
  138. margin-bottom: 1rem;
  139. }
  140. ol ol,
  141. ul ul,
  142. ol ul,
  143. ul ol {
  144. margin-bottom: 0;
  145. }
  146. dt {
  147. font-weight: 700;
  148. }
  149. dd {
  150. margin-bottom: 0.5rem;
  151. margin-left: 0;
  152. }
  153. blockquote {
  154. margin: 0 0 1rem;
  155. }
  156. b,
  157. strong {
  158. font-weight: bolder;
  159. }
  160. small, .small {
  161. font-size: 0.875em;
  162. }
  163. mark, .mark {
  164. padding: 0.2em;
  165. background-color: #fcf8e3;
  166. }
  167. sub,
  168. sup {
  169. position: relative;
  170. font-size: 0.75em;
  171. line-height: 0;
  172. vertical-align: baseline;
  173. }
  174. sub {
  175. bottom: -0.25em;
  176. }
  177. sup {
  178. top: -0.5em;
  179. }
  180. a {
  181. color: #0d6efd;
  182. text-decoration: underline;
  183. }
  184. a:hover {
  185. color: #0a58ca;
  186. }
  187. a:not([href]):not([class]), a:not([href]):not([class]):hover {
  188. color: inherit;
  189. text-decoration: none;
  190. }
  191. pre,
  192. code,
  193. kbd,
  194. samp {
  195. font-family: var(--bs-font-monospace);
  196. font-size: 1em;
  197. direction: ltr /* rtl:ignore */;
  198. unicode-bidi: bidi-override;
  199. }
  200. pre {
  201. display: block;
  202. margin-top: 0;
  203. margin-bottom: 1rem;
  204. overflow: auto;
  205. font-size: 0.875em;
  206. }
  207. pre code {
  208. font-size: inherit;
  209. color: inherit;
  210. word-break: normal;
  211. }
  212. code {
  213. font-size: 0.875em;
  214. color: #d63384;
  215. word-wrap: break-word;
  216. }
  217. a > code {
  218. color: inherit;
  219. }
  220. kbd {
  221. padding: 0.2rem 0.4rem;
  222. font-size: 0.875em;
  223. color: #fff;
  224. background-color: #212529;
  225. border-radius: 0.2rem;
  226. }
  227. kbd kbd {
  228. padding: 0;
  229. font-size: 1em;
  230. font-weight: 700;
  231. }
  232. figure {
  233. margin: 0 0 1rem;
  234. }
  235. img,
  236. svg {
  237. vertical-align: middle;
  238. }
  239. table {
  240. caption-side: bottom;
  241. border-collapse: collapse;
  242. }
  243. caption {
  244. padding-top: 0.5rem;
  245. padding-bottom: 0.5rem;
  246. color: #6c757d;
  247. text-align: left;
  248. }
  249. th {
  250. text-align: inherit;
  251. text-align: -webkit-match-parent;
  252. }
  253. thead,
  254. tbody,
  255. tfoot,
  256. tr,
  257. td,
  258. th {
  259. border-color: inherit;
  260. border-style: solid;
  261. border-width: 0;
  262. }
  263. label {
  264. display: inline-block;
  265. }
  266. button {
  267. border-radius: 0;
  268. }
  269. button:focus:not(:focus-visible) {
  270. outline: 0;
  271. }
  272. input,
  273. button,
  274. select,
  275. optgroup,
  276. textarea {
  277. margin: 0;
  278. font-family: inherit;
  279. font-size: inherit;
  280. line-height: inherit;
  281. }
  282. button,
  283. select {
  284. text-transform: none;
  285. }
  286. [role=button] {
  287. cursor: pointer;
  288. }
  289. select {
  290. word-wrap: normal;
  291. }
  292. [list]::-webkit-calendar-picker-indicator {
  293. display: none;
  294. }
  295. button,
  296. [type=button],
  297. [type=reset],
  298. [type=submit] {
  299. -webkit-appearance: button;
  300. }
  301. button:not(:disabled),
  302. [type=button]:not(:disabled),
  303. [type=reset]:not(:disabled),
  304. [type=submit]:not(:disabled) {
  305. cursor: pointer;
  306. }
  307. ::-moz-focus-inner {
  308. padding: 0;
  309. border-style: none;
  310. }
  311. textarea {
  312. resize: vertical;
  313. }
  314. fieldset {
  315. min-width: 0;
  316. padding: 0;
  317. margin: 0;
  318. border: 0;
  319. }
  320. legend {
  321. float: left;
  322. width: 100%;
  323. padding: 0;
  324. margin-bottom: 0.5rem;
  325. font-size: calc(1.275rem + 0.3vw);
  326. line-height: inherit;
  327. }
  328. @media (min-width: 1200px) {
  329. legend {
  330. font-size: 1.5rem;
  331. }
  332. }
  333. legend + * {
  334. clear: left;
  335. }
  336. ::-webkit-datetime-edit-fields-wrapper,
  337. ::-webkit-datetime-edit-text,
  338. ::-webkit-datetime-edit-minute,
  339. ::-webkit-datetime-edit-hour-field,
  340. ::-webkit-datetime-edit-day-field,
  341. ::-webkit-datetime-edit-month-field,
  342. ::-webkit-datetime-edit-year-field {
  343. padding: 0;
  344. }
  345. ::-webkit-inner-spin-button {
  346. height: auto;
  347. }
  348. [type=search] {
  349. outline-offset: -2px;
  350. -webkit-appearance: textfield;
  351. }
  352. /* rtl:raw:
  353. [type="tel"],
  354. [type="url"],
  355. [type="email"],
  356. [type="number"] {
  357. direction: ltr;
  358. }
  359. */
  360. ::-webkit-search-decoration {
  361. -webkit-appearance: none;
  362. }
  363. ::-webkit-color-swatch-wrapper {
  364. padding: 0;
  365. }
  366. ::file-selector-button {
  367. font: inherit;
  368. }
  369. ::-webkit-file-upload-button {
  370. font: inherit;
  371. -webkit-appearance: button;
  372. }
  373. output {
  374. display: inline-block;
  375. }
  376. iframe {
  377. border: 0;
  378. }
  379. summary {
  380. display: list-item;
  381. cursor: pointer;
  382. }
  383. progress {
  384. vertical-align: baseline;
  385. }
  386. [hidden] {
  387. display: none !important;
  388. }
  389. .lead {
  390. font-size: 1.25rem;
  391. font-weight: 300;
  392. }
  393. .display-1 {
  394. font-size: calc(1.625rem + 4.5vw);
  395. font-weight: 300;
  396. line-height: 1.2;
  397. }
  398. @media (min-width: 1200px) {
  399. .display-1 {
  400. font-size: 5rem;
  401. }
  402. }
  403. .display-2 {
  404. font-size: calc(1.575rem + 3.9vw);
  405. font-weight: 300;
  406. line-height: 1.2;
  407. }
  408. @media (min-width: 1200px) {
  409. .display-2 {
  410. font-size: 4.5rem;
  411. }
  412. }
  413. .display-3 {
  414. font-size: calc(1.525rem + 3.3vw);
  415. font-weight: 300;
  416. line-height: 1.2;
  417. }
  418. @media (min-width: 1200px) {
  419. .display-3 {
  420. font-size: 4rem;
  421. }
  422. }
  423. .display-4 {
  424. font-size: calc(1.475rem + 2.7vw);
  425. font-weight: 300;
  426. line-height: 1.2;
  427. }
  428. @media (min-width: 1200px) {
  429. .display-4 {
  430. font-size: 3.5rem;
  431. }
  432. }
  433. .display-5 {
  434. font-size: calc(1.425rem + 2.1vw);
  435. font-weight: 300;
  436. line-height: 1.2;
  437. }
  438. @media (min-width: 1200px) {
  439. .display-5 {
  440. font-size: 3rem;
  441. }
  442. }
  443. .display-6 {
  444. font-size: calc(1.375rem + 1.5vw);
  445. font-weight: 300;
  446. line-height: 1.2;
  447. }
  448. @media (min-width: 1200px) {
  449. .display-6 {
  450. font-size: 2.5rem;
  451. }
  452. }
  453. .list-unstyled {
  454. padding-left: 0;
  455. list-style: none;
  456. }
  457. .list-inline {
  458. padding-left: 0;
  459. list-style: none;
  460. }
  461. .list-inline-item {
  462. display: inline-block;
  463. }
  464. .list-inline-item:not(:last-child) {
  465. margin-right: 0.5rem;
  466. }
  467. .initialism {
  468. font-size: 0.875em;
  469. text-transform: uppercase;
  470. }
  471. .blockquote {
  472. margin-bottom: 1rem;
  473. font-size: 1.25rem;
  474. }
  475. .blockquote > :last-child {
  476. margin-bottom: 0;
  477. }
  478. .blockquote-footer {
  479. margin-top: -1rem;
  480. margin-bottom: 1rem;
  481. font-size: 0.875em;
  482. color: #6c757d;
  483. }
  484. .blockquote-footer::before {
  485. content: "— ";
  486. }
  487. .img-fluid {
  488. max-width: 100%;
  489. height: auto;
  490. }
  491. .img-thumbnail {
  492. padding: 0.25rem;
  493. background-color: #fff;
  494. border: 1px solid #dee2e6;
  495. border-radius: 0.25rem;
  496. max-width: 100%;
  497. height: auto;
  498. }
  499. .figure {
  500. display: inline-block;
  501. }
  502. .figure-img {
  503. margin-bottom: 0.5rem;
  504. line-height: 1;
  505. }
  506. .figure-caption {
  507. font-size: 0.875em;
  508. color: #6c757d;
  509. }
  510. .container,
  511. .container-fluid,
  512. .container-xxl,
  513. .container-xl,
  514. .container-lg,
  515. .container-md,
  516. .container-sm {
  517. width: 100%;
  518. padding-right: var(--bs-gutter-x, 0.75rem);
  519. padding-left: var(--bs-gutter-x, 0.75rem);
  520. margin-right: auto;
  521. margin-left: auto;
  522. }
  523. @media (min-width: 576px) {
  524. .container-sm, .container {
  525. max-width: 540px;
  526. }
  527. }
  528. @media (min-width: 768px) {
  529. .container-md, .container-sm, .container {
  530. max-width: 720px;
  531. }
  532. }
  533. @media (min-width: 992px) {
  534. .container-lg, .container-md, .container-sm, .container {
  535. max-width: 960px;
  536. }
  537. }
  538. @media (min-width: 1200px) {
  539. .container-xl, .container-lg, .container-md, .container-sm, .container {
  540. max-width: 1140px;
  541. }
  542. }
  543. @media (min-width: 1400px) {
  544. .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
  545. max-width: 1320px;
  546. }
  547. }
  548. .row {
  549. --bs-gutter-x: 1.5rem;
  550. --bs-gutter-y: 0;
  551. display: flex;
  552. flex-wrap: wrap;
  553. margin-top: calc(var(--bs-gutter-y) * -1);
  554. margin-right: calc(var(--bs-gutter-x) / -2);
  555. margin-left: calc(var(--bs-gutter-x) / -2);
  556. }
  557. .row > * {
  558. flex-shrink: 0;
  559. width: 100%;
  560. max-width: 100%;
  561. padding-right: calc(var(--bs-gutter-x) / 2);
  562. padding-left: calc(var(--bs-gutter-x) / 2);
  563. margin-top: var(--bs-gutter-y);
  564. }
  565. .col {
  566. flex: 1 0 0%;
  567. }
  568. .row-cols-auto > * {
  569. flex: 0 0 auto;
  570. width: auto;
  571. }
  572. .row-cols-1 > * {
  573. flex: 0 0 auto;
  574. width: 100%;
  575. }
  576. .row-cols-2 > * {
  577. flex: 0 0 auto;
  578. width: 50%;
  579. }
  580. .row-cols-3 > * {
  581. flex: 0 0 auto;
  582. width: 33.3333333333%;
  583. }
  584. .row-cols-4 > * {
  585. flex: 0 0 auto;
  586. width: 25%;
  587. }
  588. .row-cols-5 > * {
  589. flex: 0 0 auto;
  590. width: 20%;
  591. }
  592. .row-cols-6 > * {
  593. flex: 0 0 auto;
  594. width: 16.6666666667%;
  595. }
  596. .col-auto {
  597. flex: 0 0 auto;
  598. width: auto;
  599. }
  600. .col-1 {
  601. flex: 0 0 auto;
  602. width: 8.3333333333%;
  603. }
  604. .col-2 {
  605. flex: 0 0 auto;
  606. width: 16.6666666667%;
  607. }
  608. .col-3 {
  609. flex: 0 0 auto;
  610. width: 25%;
  611. }
  612. .col-4 {
  613. flex: 0 0 auto;
  614. width: 33.3333333333%;
  615. }
  616. .col-5 {
  617. flex: 0 0 auto;
  618. width: 41.6666666667%;
  619. }
  620. .col-6 {
  621. flex: 0 0 auto;
  622. width: 50%;
  623. }
  624. .col-7 {
  625. flex: 0 0 auto;
  626. width: 58.3333333333%;
  627. }
  628. .col-8 {
  629. flex: 0 0 auto;
  630. width: 66.6666666667%;
  631. }
  632. .col-9 {
  633. flex: 0 0 auto;
  634. width: 75%;
  635. }
  636. .col-10 {
  637. flex: 0 0 auto;
  638. width: 83.3333333333%;
  639. }
  640. .col-11 {
  641. flex: 0 0 auto;
  642. width: 91.6666666667%;
  643. }
  644. .col-12 {
  645. flex: 0 0 auto;
  646. width: 100%;
  647. }
  648. .offset-1 {
  649. margin-left: 8.3333333333%;
  650. }
  651. .offset-2 {
  652. margin-left: 16.6666666667%;
  653. }
  654. .offset-3 {
  655. margin-left: 25%;
  656. }
  657. .offset-4 {
  658. margin-left: 33.3333333333%;
  659. }
  660. .offset-5 {
  661. margin-left: 41.6666666667%;
  662. }
  663. .offset-6 {
  664. margin-left: 50%;
  665. }
  666. .offset-7 {
  667. margin-left: 58.3333333333%;
  668. }
  669. .offset-8 {
  670. margin-left: 66.6666666667%;
  671. }
  672. .offset-9 {
  673. margin-left: 75%;
  674. }
  675. .offset-10 {
  676. margin-left: 83.3333333333%;
  677. }
  678. .offset-11 {
  679. margin-left: 91.6666666667%;
  680. }
  681. .g-0,
  682. .gx-0 {
  683. --bs-gutter-x: 0;
  684. }
  685. .g-0,
  686. .gy-0 {
  687. --bs-gutter-y: 0;
  688. }
  689. .g-1,
  690. .gx-1 {
  691. --bs-gutter-x: 0.25rem;
  692. }
  693. .g-1,
  694. .gy-1 {
  695. --bs-gutter-y: 0.25rem;
  696. }
  697. .g-2,
  698. .gx-2 {
  699. --bs-gutter-x: 0.5rem;
  700. }
  701. .g-2,
  702. .gy-2 {
  703. --bs-gutter-y: 0.5rem;
  704. }
  705. .g-3,
  706. .gx-3 {
  707. --bs-gutter-x: 1rem;
  708. }
  709. .g-3,
  710. .gy-3 {
  711. --bs-gutter-y: 1rem;
  712. }
  713. .g-4,
  714. .gx-4 {
  715. --bs-gutter-x: 1.5rem;
  716. }
  717. .g-4,
  718. .gy-4 {
  719. --bs-gutter-y: 1.5rem;
  720. }
  721. .g-5,
  722. .gx-5 {
  723. --bs-gutter-x: 3rem;
  724. }
  725. .g-5,
  726. .gy-5 {
  727. --bs-gutter-y: 3rem;
  728. }
  729. @media (min-width: 576px) {
  730. .col-sm {
  731. flex: 1 0 0%;
  732. }
  733. .row-cols-sm-auto > * {
  734. flex: 0 0 auto;
  735. width: auto;
  736. }
  737. .row-cols-sm-1 > * {
  738. flex: 0 0 auto;
  739. width: 100%;
  740. }
  741. .row-cols-sm-2 > * {
  742. flex: 0 0 auto;
  743. width: 50%;
  744. }
  745. .row-cols-sm-3 > * {
  746. flex: 0 0 auto;
  747. width: 33.3333333333%;
  748. }
  749. .row-cols-sm-4 > * {
  750. flex: 0 0 auto;
  751. width: 25%;
  752. }
  753. .row-cols-sm-5 > * {
  754. flex: 0 0 auto;
  755. width: 20%;
  756. }
  757. .row-cols-sm-6 > * {
  758. flex: 0 0 auto;
  759. width: 16.6666666667%;
  760. }
  761. .col-sm-auto {
  762. flex: 0 0 auto;
  763. width: auto;
  764. }
  765. .col-sm-1 {
  766. flex: 0 0 auto;
  767. width: 8.3333333333%;
  768. }
  769. .col-sm-2 {
  770. flex: 0 0 auto;
  771. width: 16.6666666667%;
  772. }
  773. .col-sm-3 {
  774. flex: 0 0 auto;
  775. width: 25%;
  776. }
  777. .col-sm-4 {
  778. flex: 0 0 auto;
  779. width: 33.3333333333%;
  780. }
  781. .col-sm-5 {
  782. flex: 0 0 auto;
  783. width: 41.6666666667%;
  784. }
  785. .col-sm-6 {
  786. flex: 0 0 auto;
  787. width: 50%;
  788. }
  789. .col-sm-7 {
  790. flex: 0 0 auto;
  791. width: 58.3333333333%;
  792. }
  793. .col-sm-8 {
  794. flex: 0 0 auto;
  795. width: 66.6666666667%;
  796. }
  797. .col-sm-9 {
  798. flex: 0 0 auto;
  799. width: 75%;
  800. }
  801. .col-sm-10 {
  802. flex: 0 0 auto;
  803. width: 83.3333333333%;
  804. }
  805. .col-sm-11 {
  806. flex: 0 0 auto;
  807. width: 91.6666666667%;
  808. }
  809. .col-sm-12 {
  810. flex: 0 0 auto;
  811. width: 100%;
  812. }
  813. .offset-sm-0 {
  814. margin-left: 0;
  815. }
  816. .offset-sm-1 {
  817. margin-left: 8.3333333333%;
  818. }
  819. .offset-sm-2 {
  820. margin-left: 16.6666666667%;
  821. }
  822. .offset-sm-3 {
  823. margin-left: 25%;
  824. }
  825. .offset-sm-4 {
  826. margin-left: 33.3333333333%;
  827. }
  828. .offset-sm-5 {
  829. margin-left: 41.6666666667%;
  830. }
  831. .offset-sm-6 {
  832. margin-left: 50%;
  833. }
  834. .offset-sm-7 {
  835. margin-left: 58.3333333333%;
  836. }
  837. .offset-sm-8 {
  838. margin-left: 66.6666666667%;
  839. }
  840. .offset-sm-9 {
  841. margin-left: 75%;
  842. }
  843. .offset-sm-10 {
  844. margin-left: 83.3333333333%;
  845. }
  846. .offset-sm-11 {
  847. margin-left: 91.6666666667%;
  848. }
  849. .g-sm-0,
  850. .gx-sm-0 {
  851. --bs-gutter-x: 0;
  852. }
  853. .g-sm-0,
  854. .gy-sm-0 {
  855. --bs-gutter-y: 0;
  856. }
  857. .g-sm-1,
  858. .gx-sm-1 {
  859. --bs-gutter-x: 0.25rem;
  860. }
  861. .g-sm-1,
  862. .gy-sm-1 {
  863. --bs-gutter-y: 0.25rem;
  864. }
  865. .g-sm-2,
  866. .gx-sm-2 {
  867. --bs-gutter-x: 0.5rem;
  868. }
  869. .g-sm-2,
  870. .gy-sm-2 {
  871. --bs-gutter-y: 0.5rem;
  872. }
  873. .g-sm-3,
  874. .gx-sm-3 {
  875. --bs-gutter-x: 1rem;
  876. }
  877. .g-sm-3,
  878. .gy-sm-3 {
  879. --bs-gutter-y: 1rem;
  880. }
  881. .g-sm-4,
  882. .gx-sm-4 {
  883. --bs-gutter-x: 1.5rem;
  884. }
  885. .g-sm-4,
  886. .gy-sm-4 {
  887. --bs-gutter-y: 1.5rem;
  888. }
  889. .g-sm-5,
  890. .gx-sm-5 {
  891. --bs-gutter-x: 3rem;
  892. }
  893. .g-sm-5,
  894. .gy-sm-5 {
  895. --bs-gutter-y: 3rem;
  896. }
  897. }
  898. @media (min-width: 768px) {
  899. .col-md {
  900. flex: 1 0 0%;
  901. }
  902. .row-cols-md-auto > * {
  903. flex: 0 0 auto;
  904. width: auto;
  905. }
  906. .row-cols-md-1 > * {
  907. flex: 0 0 auto;
  908. width: 100%;
  909. }
  910. .row-cols-md-2 > * {
  911. flex: 0 0 auto;
  912. width: 50%;
  913. }
  914. .row-cols-md-3 > * {
  915. flex: 0 0 auto;
  916. width: 33.3333333333%;
  917. }
  918. .row-cols-md-4 > * {
  919. flex: 0 0 auto;
  920. width: 25%;
  921. }
  922. .row-cols-md-5 > * {
  923. flex: 0 0 auto;
  924. width: 20%;
  925. }
  926. .row-cols-md-6 > * {
  927. flex: 0 0 auto;
  928. width: 16.6666666667%;
  929. }
  930. .col-md-auto {
  931. flex: 0 0 auto;
  932. width: auto;
  933. }
  934. .col-md-1 {
  935. flex: 0 0 auto;
  936. width: 8.3333333333%;
  937. }
  938. .col-md-2 {
  939. flex: 0 0 auto;
  940. width: 16.6666666667%;
  941. }
  942. .col-md-3 {
  943. flex: 0 0 auto;
  944. width: 25%;
  945. }
  946. .col-md-4 {
  947. flex: 0 0 auto;
  948. width: 33.3333333333%;
  949. }
  950. .col-md-5 {
  951. flex: 0 0 auto;
  952. width: 41.6666666667%;
  953. }
  954. .col-md-6 {
  955. flex: 0 0 auto;
  956. width: 50%;
  957. }
  958. .col-md-7 {
  959. flex: 0 0 auto;
  960. width: 58.3333333333%;
  961. }
  962. .col-md-8 {
  963. flex: 0 0 auto;
  964. width: 66.6666666667%;
  965. }
  966. .col-md-9 {
  967. flex: 0 0 auto;
  968. width: 75%;
  969. }
  970. .col-md-10 {
  971. flex: 0 0 auto;
  972. width: 83.3333333333%;
  973. }
  974. .col-md-11 {
  975. flex: 0 0 auto;
  976. width: 91.6666666667%;
  977. }
  978. .col-md-12 {
  979. flex: 0 0 auto;
  980. width: 100%;
  981. }
  982. .offset-md-0 {
  983. margin-left: 0;
  984. }
  985. .offset-md-1 {
  986. margin-left: 8.3333333333%;
  987. }
  988. .offset-md-2 {
  989. margin-left: 16.6666666667%;
  990. }
  991. .offset-md-3 {
  992. margin-left: 25%;
  993. }
  994. .offset-md-4 {
  995. margin-left: 33.3333333333%;
  996. }
  997. .offset-md-5 {
  998. margin-left: 41.6666666667%;
  999. }
  1000. .offset-md-6 {
  1001. margin-left: 50%;
  1002. }
  1003. .offset-md-7 {
  1004. margin-left: 58.3333333333%;
  1005. }
  1006. .offset-md-8 {
  1007. margin-left: 66.6666666667%;
  1008. }
  1009. .offset-md-9 {
  1010. margin-left: 75%;
  1011. }
  1012. .offset-md-10 {
  1013. margin-left: 83.3333333333%;
  1014. }
  1015. .offset-md-11 {
  1016. margin-left: 91.6666666667%;
  1017. }
  1018. .g-md-0,
  1019. .gx-md-0 {
  1020. --bs-gutter-x: 0;
  1021. }
  1022. .g-md-0,
  1023. .gy-md-0 {
  1024. --bs-gutter-y: 0;
  1025. }
  1026. .g-md-1,
  1027. .gx-md-1 {
  1028. --bs-gutter-x: 0.25rem;
  1029. }
  1030. .g-md-1,
  1031. .gy-md-1 {
  1032. --bs-gutter-y: 0.25rem;
  1033. }
  1034. .g-md-2,
  1035. .gx-md-2 {
  1036. --bs-gutter-x: 0.5rem;
  1037. }
  1038. .g-md-2,
  1039. .gy-md-2 {
  1040. --bs-gutter-y: 0.5rem;
  1041. }
  1042. .g-md-3,
  1043. .gx-md-3 {
  1044. --bs-gutter-x: 1rem;
  1045. }
  1046. .g-md-3,
  1047. .gy-md-3 {
  1048. --bs-gutter-y: 1rem;
  1049. }
  1050. .g-md-4,
  1051. .gx-md-4 {
  1052. --bs-gutter-x: 1.5rem;
  1053. }
  1054. .g-md-4,
  1055. .gy-md-4 {
  1056. --bs-gutter-y: 1.5rem;
  1057. }
  1058. .g-md-5,
  1059. .gx-md-5 {
  1060. --bs-gutter-x: 3rem;
  1061. }
  1062. .g-md-5,
  1063. .gy-md-5 {
  1064. --bs-gutter-y: 3rem;
  1065. }
  1066. }
  1067. @media (min-width: 992px) {
  1068. .col-lg {
  1069. flex: 1 0 0%;
  1070. }
  1071. .row-cols-lg-auto > * {
  1072. flex: 0 0 auto;
  1073. width: auto;
  1074. }
  1075. .row-cols-lg-1 > * {
  1076. flex: 0 0 auto;
  1077. width: 100%;
  1078. }
  1079. .row-cols-lg-2 > * {
  1080. flex: 0 0 auto;
  1081. width: 50%;
  1082. }
  1083. .row-cols-lg-3 > * {
  1084. flex: 0 0 auto;
  1085. width: 33.3333333333%;
  1086. }
  1087. .row-cols-lg-4 > * {
  1088. flex: 0 0 auto;
  1089. width: 25%;
  1090. }
  1091. .row-cols-lg-5 > * {
  1092. flex: 0 0 auto;
  1093. width: 20%;
  1094. }
  1095. .row-cols-lg-6 > * {
  1096. flex: 0 0 auto;
  1097. width: 16.6666666667%;
  1098. }
  1099. .col-lg-auto {
  1100. flex: 0 0 auto;
  1101. width: auto;
  1102. }
  1103. .col-lg-1 {
  1104. flex: 0 0 auto;
  1105. width: 8.3333333333%;
  1106. }
  1107. .col-lg-2 {
  1108. flex: 0 0 auto;
  1109. width: 16.6666666667%;
  1110. }
  1111. .col-lg-3 {
  1112. flex: 0 0 auto;
  1113. width: 25%;
  1114. }
  1115. .col-lg-4 {
  1116. flex: 0 0 auto;
  1117. width: 33.3333333333%;
  1118. }
  1119. .col-lg-5 {
  1120. flex: 0 0 auto;
  1121. width: 41.6666666667%;
  1122. }
  1123. .col-lg-6 {
  1124. flex: 0 0 auto;
  1125. width: 50%;
  1126. }
  1127. .col-lg-7 {
  1128. flex: 0 0 auto;
  1129. width: 58.3333333333%;
  1130. }
  1131. .col-lg-8 {
  1132. flex: 0 0 auto;
  1133. width: 66.6666666667%;
  1134. }
  1135. .col-lg-9 {
  1136. flex: 0 0 auto;
  1137. width: 75%;
  1138. }
  1139. .col-lg-10 {
  1140. flex: 0 0 auto;
  1141. width: 83.3333333333%;
  1142. }
  1143. .col-lg-11 {
  1144. flex: 0 0 auto;
  1145. width: 91.6666666667%;
  1146. }
  1147. .col-lg-12 {
  1148. flex: 0 0 auto;
  1149. width: 100%;
  1150. }
  1151. .offset-lg-0 {
  1152. margin-left: 0;
  1153. }
  1154. .offset-lg-1 {
  1155. margin-left: 8.3333333333%;
  1156. }
  1157. .offset-lg-2 {
  1158. margin-left: 16.6666666667%;
  1159. }
  1160. .offset-lg-3 {
  1161. margin-left: 25%;
  1162. }
  1163. .offset-lg-4 {
  1164. margin-left: 33.3333333333%;
  1165. }
  1166. .offset-lg-5 {
  1167. margin-left: 41.6666666667%;
  1168. }
  1169. .offset-lg-6 {
  1170. margin-left: 50%;
  1171. }
  1172. .offset-lg-7 {
  1173. margin-left: 58.3333333333%;
  1174. }
  1175. .offset-lg-8 {
  1176. margin-left: 66.6666666667%;
  1177. }
  1178. .offset-lg-9 {
  1179. margin-left: 75%;
  1180. }
  1181. .offset-lg-10 {
  1182. margin-left: 83.3333333333%;
  1183. }
  1184. .offset-lg-11 {
  1185. margin-left: 91.6666666667%;
  1186. }
  1187. .g-lg-0,
  1188. .gx-lg-0 {
  1189. --bs-gutter-x: 0;
  1190. }
  1191. .g-lg-0,
  1192. .gy-lg-0 {
  1193. --bs-gutter-y: 0;
  1194. }
  1195. .g-lg-1,
  1196. .gx-lg-1 {
  1197. --bs-gutter-x: 0.25rem;
  1198. }
  1199. .g-lg-1,
  1200. .gy-lg-1 {
  1201. --bs-gutter-y: 0.25rem;
  1202. }
  1203. .g-lg-2,
  1204. .gx-lg-2 {
  1205. --bs-gutter-x: 0.5rem;
  1206. }
  1207. .g-lg-2,
  1208. .gy-lg-2 {
  1209. --bs-gutter-y: 0.5rem;
  1210. }
  1211. .g-lg-3,
  1212. .gx-lg-3 {
  1213. --bs-gutter-x: 1rem;
  1214. }
  1215. .g-lg-3,
  1216. .gy-lg-3 {
  1217. --bs-gutter-y: 1rem;
  1218. }
  1219. .g-lg-4,
  1220. .gx-lg-4 {
  1221. --bs-gutter-x: 1.5rem;
  1222. }
  1223. .g-lg-4,
  1224. .gy-lg-4 {
  1225. --bs-gutter-y: 1.5rem;
  1226. }
  1227. .g-lg-5,
  1228. .gx-lg-5 {
  1229. --bs-gutter-x: 3rem;
  1230. }
  1231. .g-lg-5,
  1232. .gy-lg-5 {
  1233. --bs-gutter-y: 3rem;
  1234. }
  1235. }
  1236. @media (min-width: 1200px) {
  1237. .col-xl {
  1238. flex: 1 0 0%;
  1239. }
  1240. .row-cols-xl-auto > * {
  1241. flex: 0 0 auto;
  1242. width: auto;
  1243. }
  1244. .row-cols-xl-1 > * {
  1245. flex: 0 0 auto;
  1246. width: 100%;
  1247. }
  1248. .row-cols-xl-2 > * {
  1249. flex: 0 0 auto;
  1250. width: 50%;
  1251. }
  1252. .row-cols-xl-3 > * {
  1253. flex: 0 0 auto;
  1254. width: 33.3333333333%;
  1255. }
  1256. .row-cols-xl-4 > * {
  1257. flex: 0 0 auto;
  1258. width: 25%;
  1259. }
  1260. .row-cols-xl-5 > * {
  1261. flex: 0 0 auto;
  1262. width: 20%;
  1263. }
  1264. .row-cols-xl-6 > * {
  1265. flex: 0 0 auto;
  1266. width: 16.6666666667%;
  1267. }
  1268. .col-xl-auto {
  1269. flex: 0 0 auto;
  1270. width: auto;
  1271. }
  1272. .col-xl-1 {
  1273. flex: 0 0 auto;
  1274. width: 8.3333333333%;
  1275. }
  1276. .col-xl-2 {
  1277. flex: 0 0 auto;
  1278. width: 16.6666666667%;
  1279. }
  1280. .col-xl-3 {
  1281. flex: 0 0 auto;
  1282. width: 25%;
  1283. }
  1284. .col-xl-4 {
  1285. flex: 0 0 auto;
  1286. width: 33.3333333333%;
  1287. }
  1288. .col-xl-5 {
  1289. flex: 0 0 auto;
  1290. width: 41.6666666667%;
  1291. }
  1292. .col-xl-6 {
  1293. flex: 0 0 auto;
  1294. width: 50%;
  1295. }
  1296. .col-xl-7 {
  1297. flex: 0 0 auto;
  1298. width: 58.3333333333%;
  1299. }
  1300. .col-xl-8 {
  1301. flex: 0 0 auto;
  1302. width: 66.6666666667%;
  1303. }
  1304. .col-xl-9 {
  1305. flex: 0 0 auto;
  1306. width: 75%;
  1307. }
  1308. .col-xl-10 {
  1309. flex: 0 0 auto;
  1310. width: 83.3333333333%;
  1311. }
  1312. .col-xl-11 {
  1313. flex: 0 0 auto;
  1314. width: 91.6666666667%;
  1315. }
  1316. .col-xl-12 {
  1317. flex: 0 0 auto;
  1318. width: 100%;
  1319. }
  1320. .offset-xl-0 {
  1321. margin-left: 0;
  1322. }
  1323. .offset-xl-1 {
  1324. margin-left: 8.3333333333%;
  1325. }
  1326. .offset-xl-2 {
  1327. margin-left: 16.6666666667%;
  1328. }
  1329. .offset-xl-3 {
  1330. margin-left: 25%;
  1331. }
  1332. .offset-xl-4 {
  1333. margin-left: 33.3333333333%;
  1334. }
  1335. .offset-xl-5 {
  1336. margin-left: 41.6666666667%;
  1337. }
  1338. .offset-xl-6 {
  1339. margin-left: 50%;
  1340. }
  1341. .offset-xl-7 {
  1342. margin-left: 58.3333333333%;
  1343. }
  1344. .offset-xl-8 {
  1345. margin-left: 66.6666666667%;
  1346. }
  1347. .offset-xl-9 {
  1348. margin-left: 75%;
  1349. }
  1350. .offset-xl-10 {
  1351. margin-left: 83.3333333333%;
  1352. }
  1353. .offset-xl-11 {
  1354. margin-left: 91.6666666667%;
  1355. }
  1356. .g-xl-0,
  1357. .gx-xl-0 {
  1358. --bs-gutter-x: 0;
  1359. }
  1360. .g-xl-0,
  1361. .gy-xl-0 {
  1362. --bs-gutter-y: 0;
  1363. }
  1364. .g-xl-1,
  1365. .gx-xl-1 {
  1366. --bs-gutter-x: 0.25rem;
  1367. }
  1368. .g-xl-1,
  1369. .gy-xl-1 {
  1370. --bs-gutter-y: 0.25rem;
  1371. }
  1372. .g-xl-2,
  1373. .gx-xl-2 {
  1374. --bs-gutter-x: 0.5rem;
  1375. }
  1376. .g-xl-2,
  1377. .gy-xl-2 {
  1378. --bs-gutter-y: 0.5rem;
  1379. }
  1380. .g-xl-3,
  1381. .gx-xl-3 {
  1382. --bs-gutter-x: 1rem;
  1383. }
  1384. .g-xl-3,
  1385. .gy-xl-3 {
  1386. --bs-gutter-y: 1rem;
  1387. }
  1388. .g-xl-4,
  1389. .gx-xl-4 {
  1390. --bs-gutter-x: 1.5rem;
  1391. }
  1392. .g-xl-4,
  1393. .gy-xl-4 {
  1394. --bs-gutter-y: 1.5rem;
  1395. }
  1396. .g-xl-5,
  1397. .gx-xl-5 {
  1398. --bs-gutter-x: 3rem;
  1399. }
  1400. .g-xl-5,
  1401. .gy-xl-5 {
  1402. --bs-gutter-y: 3rem;
  1403. }
  1404. }
  1405. @media (min-width: 1400px) {
  1406. .col-xxl {
  1407. flex: 1 0 0%;
  1408. }
  1409. .row-cols-xxl-auto > * {
  1410. flex: 0 0 auto;
  1411. width: auto;
  1412. }
  1413. .row-cols-xxl-1 > * {
  1414. flex: 0 0 auto;
  1415. width: 100%;
  1416. }
  1417. .row-cols-xxl-2 > * {
  1418. flex: 0 0 auto;
  1419. width: 50%;
  1420. }
  1421. .row-cols-xxl-3 > * {
  1422. flex: 0 0 auto;
  1423. width: 33.3333333333%;
  1424. }
  1425. .row-cols-xxl-4 > * {
  1426. flex: 0 0 auto;
  1427. width: 25%;
  1428. }
  1429. .row-cols-xxl-5 > * {
  1430. flex: 0 0 auto;
  1431. width: 20%;
  1432. }
  1433. .row-cols-xxl-6 > * {
  1434. flex: 0 0 auto;
  1435. width: 16.6666666667%;
  1436. }
  1437. .col-xxl-auto {
  1438. flex: 0 0 auto;
  1439. width: auto;
  1440. }
  1441. .col-xxl-1 {
  1442. flex: 0 0 auto;
  1443. width: 8.3333333333%;
  1444. }
  1445. .col-xxl-2 {
  1446. flex: 0 0 auto;
  1447. width: 16.6666666667%;
  1448. }
  1449. .col-xxl-3 {
  1450. flex: 0 0 auto;
  1451. width: 25%;
  1452. }
  1453. .col-xxl-4 {
  1454. flex: 0 0 auto;
  1455. width: 33.3333333333%;
  1456. }
  1457. .col-xxl-5 {
  1458. flex: 0 0 auto;
  1459. width: 41.6666666667%;
  1460. }
  1461. .col-xxl-6 {
  1462. flex: 0 0 auto;
  1463. width: 50%;
  1464. }
  1465. .col-xxl-7 {
  1466. flex: 0 0 auto;
  1467. width: 58.3333333333%;
  1468. }
  1469. .col-xxl-8 {
  1470. flex: 0 0 auto;
  1471. width: 66.6666666667%;
  1472. }
  1473. .col-xxl-9 {
  1474. flex: 0 0 auto;
  1475. width: 75%;
  1476. }
  1477. .col-xxl-10 {
  1478. flex: 0 0 auto;
  1479. width: 83.3333333333%;
  1480. }
  1481. .col-xxl-11 {
  1482. flex: 0 0 auto;
  1483. width: 91.6666666667%;
  1484. }
  1485. .col-xxl-12 {
  1486. flex: 0 0 auto;
  1487. width: 100%;
  1488. }
  1489. .offset-xxl-0 {
  1490. margin-left: 0;
  1491. }
  1492. .offset-xxl-1 {
  1493. margin-left: 8.3333333333%;
  1494. }
  1495. .offset-xxl-2 {
  1496. margin-left: 16.6666666667%;
  1497. }
  1498. .offset-xxl-3 {
  1499. margin-left: 25%;
  1500. }
  1501. .offset-xxl-4 {
  1502. margin-left: 33.3333333333%;
  1503. }
  1504. .offset-xxl-5 {
  1505. margin-left: 41.6666666667%;
  1506. }
  1507. .offset-xxl-6 {
  1508. margin-left: 50%;
  1509. }
  1510. .offset-xxl-7 {
  1511. margin-left: 58.3333333333%;
  1512. }
  1513. .offset-xxl-8 {
  1514. margin-left: 66.6666666667%;
  1515. }
  1516. .offset-xxl-9 {
  1517. margin-left: 75%;
  1518. }
  1519. .offset-xxl-10 {
  1520. margin-left: 83.3333333333%;
  1521. }
  1522. .offset-xxl-11 {
  1523. margin-left: 91.6666666667%;
  1524. }
  1525. .g-xxl-0,
  1526. .gx-xxl-0 {
  1527. --bs-gutter-x: 0;
  1528. }
  1529. .g-xxl-0,
  1530. .gy-xxl-0 {
  1531. --bs-gutter-y: 0;
  1532. }
  1533. .g-xxl-1,
  1534. .gx-xxl-1 {
  1535. --bs-gutter-x: 0.25rem;
  1536. }
  1537. .g-xxl-1,
  1538. .gy-xxl-1 {
  1539. --bs-gutter-y: 0.25rem;
  1540. }
  1541. .g-xxl-2,
  1542. .gx-xxl-2 {
  1543. --bs-gutter-x: 0.5rem;
  1544. }
  1545. .g-xxl-2,
  1546. .gy-xxl-2 {
  1547. --bs-gutter-y: 0.5rem;
  1548. }
  1549. .g-xxl-3,
  1550. .gx-xxl-3 {
  1551. --bs-gutter-x: 1rem;
  1552. }
  1553. .g-xxl-3,
  1554. .gy-xxl-3 {
  1555. --bs-gutter-y: 1rem;
  1556. }
  1557. .g-xxl-4,
  1558. .gx-xxl-4 {
  1559. --bs-gutter-x: 1.5rem;
  1560. }
  1561. .g-xxl-4,
  1562. .gy-xxl-4 {
  1563. --bs-gutter-y: 1.5rem;
  1564. }
  1565. .g-xxl-5,
  1566. .gx-xxl-5 {
  1567. --bs-gutter-x: 3rem;
  1568. }
  1569. .g-xxl-5,
  1570. .gy-xxl-5 {
  1571. --bs-gutter-y: 3rem;
  1572. }
  1573. }
  1574. .table {
  1575. --bs-table-bg: transparent;
  1576. --bs-table-striped-color: #212529;
  1577. --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  1578. --bs-table-active-color: #212529;
  1579. --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  1580. --bs-table-hover-color: #212529;
  1581. --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  1582. width: 100%;
  1583. margin-bottom: 1rem;
  1584. color: #212529;
  1585. vertical-align: top;
  1586. border-color: #dee2e6;
  1587. }
  1588. .table > :not(caption) > * > * {
  1589. padding: 0.5rem 0.5rem;
  1590. background-color: var(--bs-table-bg);
  1591. border-bottom-width: 1px;
  1592. box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
  1593. }
  1594. .table > tbody {
  1595. vertical-align: inherit;
  1596. }
  1597. .table > thead {
  1598. vertical-align: bottom;
  1599. }
  1600. .table > :not(:last-child) > :last-child > * {
  1601. border-bottom-color: currentColor;
  1602. }
  1603. .caption-top {
  1604. caption-side: top;
  1605. }
  1606. .table-sm > :not(caption) > * > * {
  1607. padding: 0.25rem 0.25rem;
  1608. }
  1609. .table-bordered > :not(caption) > * {
  1610. border-width: 1px 0;
  1611. }
  1612. .table-bordered > :not(caption) > * > * {
  1613. border-width: 0 1px;
  1614. }
  1615. .table-borderless > :not(caption) > * > * {
  1616. border-bottom-width: 0;
  1617. }
  1618. .table-striped > tbody > tr:nth-of-type(odd) {
  1619. --bs-table-accent-bg: var(--bs-table-striped-bg);
  1620. color: var(--bs-table-striped-color);
  1621. }
  1622. .table-active {
  1623. --bs-table-accent-bg: var(--bs-table-active-bg);
  1624. color: var(--bs-table-active-color);
  1625. }
  1626. .table-hover > tbody > tr:hover {
  1627. --bs-table-accent-bg: var(--bs-table-hover-bg);
  1628. color: var(--bs-table-hover-color);
  1629. }
  1630. .table-primary {
  1631. --bs-table-bg: #cfe2ff;
  1632. --bs-table-striped-bg: #c5d7f2;
  1633. --bs-table-striped-color: #000;
  1634. --bs-table-active-bg: #bacbe6;
  1635. --bs-table-active-color: #000;
  1636. --bs-table-hover-bg: #bfd1ec;
  1637. --bs-table-hover-color: #000;
  1638. color: #000;
  1639. border-color: #bacbe6;
  1640. }
  1641. .table-secondary {
  1642. --bs-table-bg: #e2e3e5;
  1643. --bs-table-striped-bg: #d7d8da;
  1644. --bs-table-striped-color: #000;
  1645. --bs-table-active-bg: #cbccce;
  1646. --bs-table-active-color: #000;
  1647. --bs-table-hover-bg: #d1d2d4;
  1648. --bs-table-hover-color: #000;
  1649. color: #000;
  1650. border-color: #cbccce;
  1651. }
  1652. .table-success {
  1653. --bs-table-bg: #d1e7dd;
  1654. --bs-table-striped-bg: #c7dbd2;
  1655. --bs-table-striped-color: #000;
  1656. --bs-table-active-bg: #bcd0c7;
  1657. --bs-table-active-color: #000;
  1658. --bs-table-hover-bg: #c1d6cc;
  1659. --bs-table-hover-color: #000;
  1660. color: #000;
  1661. border-color: #bcd0c7;
  1662. }
  1663. .table-info {
  1664. --bs-table-bg: #cff4fc;
  1665. --bs-table-striped-bg: #c5e8ef;
  1666. --bs-table-striped-color: #000;
  1667. --bs-table-active-bg: #badce3;
  1668. --bs-table-active-color: #000;
  1669. --bs-table-hover-bg: #bfe2e9;
  1670. --bs-table-hover-color: #000;
  1671. color: #000;
  1672. border-color: #badce3;
  1673. }
  1674. .table-warning {
  1675. --bs-table-bg: #fff3cd;
  1676. --bs-table-striped-bg: #f2e7c3;
  1677. --bs-table-striped-color: #000;
  1678. --bs-table-active-bg: #e6dbb9;
  1679. --bs-table-active-color: #000;
  1680. --bs-table-hover-bg: #ece1be;
  1681. --bs-table-hover-color: #000;
  1682. color: #000;
  1683. border-color: #e6dbb9;
  1684. }
  1685. .table-danger {
  1686. --bs-table-bg: #f8d7da;
  1687. --bs-table-striped-bg: #eccccf;
  1688. --bs-table-striped-color: #000;
  1689. --bs-table-active-bg: #dfc2c4;
  1690. --bs-table-active-color: #000;
  1691. --bs-table-hover-bg: #e5c7ca;
  1692. --bs-table-hover-color: #000;
  1693. color: #000;
  1694. border-color: #dfc2c4;
  1695. }
  1696. .table-light {
  1697. --bs-table-bg: #f8f9fa;
  1698. --bs-table-striped-bg: #ecedee;
  1699. --bs-table-striped-color: #000;
  1700. --bs-table-active-bg: #dfe0e1;
  1701. --bs-table-active-color: #000;
  1702. --bs-table-hover-bg: #e5e6e7;
  1703. --bs-table-hover-color: #000;
  1704. color: #000;
  1705. border-color: #dfe0e1;
  1706. }
  1707. .table-dark {
  1708. --bs-table-bg: #212529;
  1709. --bs-table-striped-bg: #2c3034;
  1710. --bs-table-striped-color: #fff;
  1711. --bs-table-active-bg: #373b3e;
  1712. --bs-table-active-color: #fff;
  1713. --bs-table-hover-bg: #323539;
  1714. --bs-table-hover-color: #fff;
  1715. color: #fff;
  1716. border-color: #373b3e;
  1717. }
  1718. .table-responsive {
  1719. overflow-x: auto;
  1720. -webkit-overflow-scrolling: touch;
  1721. }
  1722. @media (max-width: 575.98px) {
  1723. .table-responsive-sm {
  1724. overflow-x: auto;
  1725. -webkit-overflow-scrolling: touch;
  1726. }
  1727. }
  1728. @media (max-width: 767.98px) {
  1729. .table-responsive-md {
  1730. overflow-x: auto;
  1731. -webkit-overflow-scrolling: touch;
  1732. }
  1733. }
  1734. @media (max-width: 991.98px) {
  1735. .table-responsive-lg {
  1736. overflow-x: auto;
  1737. -webkit-overflow-scrolling: touch;
  1738. }
  1739. }
  1740. @media (max-width: 1199.98px) {
  1741. .table-responsive-xl {
  1742. overflow-x: auto;
  1743. -webkit-overflow-scrolling: touch;
  1744. }
  1745. }
  1746. @media (max-width: 1399.98px) {
  1747. .table-responsive-xxl {
  1748. overflow-x: auto;
  1749. -webkit-overflow-scrolling: touch;
  1750. }
  1751. }
  1752. .form-label {
  1753. margin-bottom: 0.5rem;
  1754. }
  1755. .col-form-label {
  1756. padding-top: calc(0.375rem + 1px);
  1757. padding-bottom: calc(0.375rem + 1px);
  1758. margin-bottom: 0;
  1759. font-size: inherit;
  1760. line-height: 1.5;
  1761. }
  1762. .col-form-label-lg {
  1763. padding-top: calc(0.5rem + 1px);
  1764. padding-bottom: calc(0.5rem + 1px);
  1765. font-size: 1.25rem;
  1766. }
  1767. .col-form-label-sm {
  1768. padding-top: calc(0.25rem + 1px);
  1769. padding-bottom: calc(0.25rem + 1px);
  1770. font-size: 0.875rem;
  1771. }
  1772. .form-text {
  1773. margin-top: 0.25rem;
  1774. font-size: 0.875em;
  1775. color: #6c757d;
  1776. }
  1777. .form-control {
  1778. display: block;
  1779. width: 100%;
  1780. padding: 0.375rem 0.75rem;
  1781. font-size: 1rem;
  1782. font-weight: 400;
  1783. line-height: 1.5;
  1784. color: #212529;
  1785. background-color: #fff;
  1786. background-clip: padding-box;
  1787. border: 1px solid #ced4da;
  1788. -webkit-appearance: none;
  1789. -moz-appearance: none;
  1790. appearance: none;
  1791. border-radius: 0.25rem;
  1792. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  1793. }
  1794. @media (prefers-reduced-motion: reduce) {
  1795. .form-control {
  1796. transition: none;
  1797. }
  1798. }
  1799. .form-control[type=file] {
  1800. overflow: hidden;
  1801. }
  1802. .form-control[type=file]:not(:disabled):not([readonly]) {
  1803. cursor: pointer;
  1804. }
  1805. .form-control:focus {
  1806. color: #212529;
  1807. background-color: #fff;
  1808. border-color: #86b7fe;
  1809. outline: 0;
  1810. box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  1811. }
  1812. .form-control::-webkit-date-and-time-value {
  1813. height: 1.5em;
  1814. }
  1815. .form-control::-webkit-input-placeholder {
  1816. color: #6c757d;
  1817. opacity: 1;
  1818. }
  1819. .form-control::-moz-placeholder {
  1820. color: #6c757d;
  1821. opacity: 1;
  1822. }
  1823. .form-control::placeholder {
  1824. color: #6c757d;
  1825. opacity: 1;
  1826. }
  1827. .form-control:disabled, .form-control[readonly] {
  1828. background-color: #e9ecef;
  1829. opacity: 1;
  1830. }
  1831. .form-control::file-selector-button {
  1832. padding: 0.375rem 0.75rem;
  1833. margin: -0.375rem -0.75rem;
  1834. -webkit-margin-end: 0.75rem;
  1835. margin-inline-end: 0.75rem;
  1836. color: #212529;
  1837. background-color: #e9ecef;
  1838. pointer-events: none;
  1839. border-color: inherit;
  1840. border-style: solid;
  1841. border-width: 0;
  1842. border-inline-end-width: 1px;
  1843. border-radius: 0;
  1844. 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;
  1845. }
  1846. @media (prefers-reduced-motion: reduce) {
  1847. .form-control::file-selector-button {
  1848. transition: none;
  1849. }
  1850. }
  1851. .form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  1852. background-color: #dde0e3;
  1853. }
  1854. .form-control::-webkit-file-upload-button {
  1855. padding: 0.375rem 0.75rem;
  1856. margin: -0.375rem -0.75rem;
  1857. -webkit-margin-end: 0.75rem;
  1858. margin-inline-end: 0.75rem;
  1859. color: #212529;
  1860. background-color: #e9ecef;
  1861. pointer-events: none;
  1862. border-color: inherit;
  1863. border-style: solid;
  1864. border-width: 0;
  1865. border-inline-end-width: 1px;
  1866. border-radius: 0;
  1867. -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  1868. 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;
  1869. }
  1870. @media (prefers-reduced-motion: reduce) {
  1871. .form-control::-webkit-file-upload-button {
  1872. -webkit-transition: none;
  1873. transition: none;
  1874. }
  1875. }
  1876. .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  1877. background-color: #dde0e3;
  1878. }
  1879. .form-control-plaintext {
  1880. display: block;
  1881. width: 100%;
  1882. padding: 0.375rem 0;
  1883. margin-bottom: 0;
  1884. line-height: 1.5;
  1885. color: #212529;
  1886. background-color: transparent;
  1887. border: solid transparent;
  1888. border-width: 1px 0;
  1889. }
  1890. .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  1891. padding-right: 0;
  1892. padding-left: 0;
  1893. }
  1894. .form-control-sm {
  1895. min-height: calc(1.5em + 0.5rem + 2px);
  1896. padding: 0.25rem 0.5rem;
  1897. font-size: 0.875rem;
  1898. border-radius: 0.2rem;
  1899. }
  1900. .form-control-sm::file-selector-button {
  1901. padding: 0.25rem 0.5rem;
  1902. margin: -0.25rem -0.5rem;
  1903. -webkit-margin-end: 0.5rem;
  1904. margin-inline-end: 0.5rem;
  1905. }
  1906. .form-control-sm::-webkit-file-upload-button {
  1907. padding: 0.25rem 0.5rem;
  1908. margin: -0.25rem -0.5rem;
  1909. -webkit-margin-end: 0.5rem;
  1910. margin-inline-end: 0.5rem;
  1911. }
  1912. .form-control-lg {
  1913. min-height: calc(1.5em + 1rem + 2px);
  1914. padding: 0.5rem 1rem;
  1915. font-size: 1.25rem;
  1916. border-radius: 0.3rem;
  1917. }
  1918. .form-control-lg::file-selector-button {
  1919. padding: 0.5rem 1rem;
  1920. margin: -0.5rem -1rem;
  1921. -webkit-margin-end: 1rem;
  1922. margin-inline-end: 1rem;
  1923. }
  1924. .form-control-lg::-webkit-file-upload-button {
  1925. padding: 0.5rem 1rem;
  1926. margin: -0.5rem -1rem;
  1927. -webkit-margin-end: 1rem;
  1928. margin-inline-end: 1rem;
  1929. }
  1930. textarea.form-control {
  1931. min-height: calc(1.5em + 0.75rem + 2px);
  1932. }
  1933. textarea.form-control-sm {
  1934. min-height: calc(1.5em + 0.5rem + 2px);
  1935. }
  1936. textarea.form-control-lg {
  1937. min-height: calc(1.5em + 1rem + 2px);
  1938. }
  1939. .form-control-color {
  1940. max-width: 3rem;
  1941. height: auto;
  1942. padding: 0.375rem;
  1943. }
  1944. .form-control-color:not(:disabled):not([readonly]) {
  1945. cursor: pointer;
  1946. }
  1947. .form-control-color::-moz-color-swatch {
  1948. height: 1.5em;
  1949. border-radius: 0.25rem;
  1950. }
  1951. .form-control-color::-webkit-color-swatch {
  1952. height: 1.5em;
  1953. border-radius: 0.25rem;
  1954. }
  1955. .form-select {
  1956. display: block;
  1957. width: 100%;
  1958. padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  1959. font-size: 1rem;
  1960. font-weight: 400;
  1961. line-height: 1.5;
  1962. color: #212529;
  1963. background-color: #fff;
  1964. 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");
  1965. background-repeat: no-repeat;
  1966. background-position: right 0.75rem center;
  1967. background-size: 16px 12px;
  1968. border: 1px solid #ced4da;
  1969. border-radius: 0.25rem;
  1970. -webkit-appearance: none;
  1971. -moz-appearance: none;
  1972. appearance: none;
  1973. }
  1974. .form-select:focus {
  1975. border-color: #86b7fe;
  1976. outline: 0;
  1977. box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  1978. }
  1979. .form-select[multiple], .form-select[size]:not([size="1"]) {
  1980. padding-right: 0.75rem;
  1981. background-image: none;
  1982. }
  1983. .form-select:disabled {
  1984. color: #6c757d;
  1985. background-color: #e9ecef;
  1986. }
  1987. .form-select:-moz-focusring {
  1988. color: transparent;
  1989. text-shadow: 0 0 0 #212529;
  1990. }
  1991. .form-select-sm {
  1992. padding-top: 0.25rem;
  1993. padding-bottom: 0.25rem;
  1994. padding-left: 0.5rem;
  1995. font-size: 0.875rem;
  1996. }
  1997. .form-select-lg {
  1998. padding-top: 0.5rem;
  1999. padding-bottom: 0.5rem;
  2000. padding-left: 1rem;
  2001. font-size: 1.25rem;
  2002. }
  2003. .form-check {
  2004. display: block;
  2005. min-height: 1.5rem;
  2006. padding-left: 1.5em;
  2007. margin-bottom: 0.125rem;
  2008. }
  2009. .form-check .form-check-input {
  2010. float: left;
  2011. margin-left: -1.5em;
  2012. }
  2013. .form-check-input {
  2014. width: 1em;
  2015. height: 1em;
  2016. margin-top: 0.25em;
  2017. vertical-align: top;
  2018. background-color: #fff;
  2019. background-repeat: no-repeat;
  2020. background-position: center;
  2021. background-size: contain;
  2022. border: 1px solid rgba(0, 0, 0, 0.25);
  2023. -webkit-appearance: none;
  2024. -moz-appearance: none;
  2025. appearance: none;
  2026. -webkit-print-color-adjust: exact;
  2027. color-adjust: exact;
  2028. }
  2029. .form-check-input[type=checkbox] {
  2030. border-radius: 0.25em;
  2031. }
  2032. .form-check-input[type=radio] {
  2033. border-radius: 50%;
  2034. }
  2035. .form-check-input:active {
  2036. filter: brightness(90%);
  2037. }
  2038. .form-check-input:focus {
  2039. border-color: #86b7fe;
  2040. outline: 0;
  2041. box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  2042. }
  2043. .form-check-input:checked {
  2044. background-color: #0d6efd;
  2045. border-color: #0d6efd;
  2046. }
  2047. .form-check-input:checked[type=checkbox] {
  2048. 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");
  2049. }
  2050. .form-check-input:checked[type=radio] {
  2051. 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");
  2052. }
  2053. .form-check-input[type=checkbox]:indeterminate {
  2054. background-color: #0d6efd;
  2055. border-color: #0d6efd;
  2056. 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");
  2057. }
  2058. .form-check-input:disabled {
  2059. pointer-events: none;
  2060. filter: none;
  2061. opacity: 0.5;
  2062. }
  2063. .form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  2064. opacity: 0.5;
  2065. }
  2066. .form-switch {
  2067. padding-left: 2.5em;
  2068. }
  2069. .form-switch .form-check-input {
  2070. width: 2em;
  2071. margin-left: -2.5em;
  2072. 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");
  2073. background-position: left center;
  2074. border-radius: 2em;
  2075. transition: background-position 0.15s ease-in-out;
  2076. }
  2077. @media (prefers-reduced-motion: reduce) {
  2078. .form-switch .form-check-input {
  2079. transition: none;
  2080. }
  2081. }
  2082. .form-switch .form-check-input:focus {
  2083. 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='%2386b7fe'/%3e%3c/svg%3e");
  2084. }
  2085. .form-switch .form-check-input:checked {
  2086. background-position: right center;
  2087. 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");
  2088. }
  2089. .form-check-inline {
  2090. display: inline-block;
  2091. margin-right: 1rem;
  2092. }
  2093. .btn-check {
  2094. position: absolute;
  2095. clip: rect(0, 0, 0, 0);
  2096. pointer-events: none;
  2097. }
  2098. .btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  2099. pointer-events: none;
  2100. filter: none;
  2101. opacity: 0.65;
  2102. }
  2103. .form-range {
  2104. width: 100%;
  2105. height: 1.5rem;
  2106. padding: 0;
  2107. background-color: transparent;
  2108. -webkit-appearance: none;
  2109. -moz-appearance: none;
  2110. appearance: none;
  2111. }
  2112. .form-range:focus {
  2113. outline: 0;
  2114. }
  2115. .form-range:focus::-webkit-slider-thumb {
  2116. box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  2117. }
  2118. .form-range:focus::-moz-range-thumb {
  2119. box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  2120. }
  2121. .form-range::-moz-focus-outer {
  2122. border: 0;
  2123. }
  2124. .form-range::-webkit-slider-thumb {
  2125. width: 1rem;
  2126. height: 1rem;
  2127. margin-top: -0.25rem;
  2128. background-color: #0d6efd;
  2129. border: 0;
  2130. border-radius: 1rem;
  2131. -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2132. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2133. -webkit-appearance: none;
  2134. appearance: none;
  2135. }
  2136. @media (prefers-reduced-motion: reduce) {
  2137. .form-range::-webkit-slider-thumb {
  2138. -webkit-transition: none;
  2139. transition: none;
  2140. }
  2141. }
  2142. .form-range::-webkit-slider-thumb:active {
  2143. background-color: #b6d4fe;
  2144. }
  2145. .form-range::-webkit-slider-runnable-track {
  2146. width: 100%;
  2147. height: 0.5rem;
  2148. color: transparent;
  2149. cursor: pointer;
  2150. background-color: #dee2e6;
  2151. border-color: transparent;
  2152. border-radius: 1rem;
  2153. }
  2154. .form-range::-moz-range-thumb {
  2155. width: 1rem;
  2156. height: 1rem;
  2157. background-color: #0d6efd;
  2158. border: 0;
  2159. border-radius: 1rem;
  2160. -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2161. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2162. -moz-appearance: none;
  2163. appearance: none;
  2164. }
  2165. @media (prefers-reduced-motion: reduce) {
  2166. .form-range::-moz-range-thumb {
  2167. -moz-transition: none;
  2168. transition: none;
  2169. }
  2170. }
  2171. .form-range::-moz-range-thumb:active {
  2172. background-color: #b6d4fe;
  2173. }
  2174. .form-range::-moz-range-track {
  2175. width: 100%;
  2176. height: 0.5rem;
  2177. color: transparent;
  2178. cursor: pointer;
  2179. background-color: #dee2e6;
  2180. border-color: transparent;
  2181. border-radius: 1rem;
  2182. }
  2183. .form-range:disabled {
  2184. pointer-events: none;
  2185. }
  2186. .form-range:disabled::-webkit-slider-thumb {
  2187. background-color: #adb5bd;
  2188. }
  2189. .form-range:disabled::-moz-range-thumb {
  2190. background-color: #adb5bd;
  2191. }
  2192. .form-floating {
  2193. position: relative;
  2194. }
  2195. .form-floating > .form-control,
  2196. .form-floating > .form-select {
  2197. height: calc(3.5rem + 2px);
  2198. padding: 1rem 0.75rem;
  2199. }
  2200. .form-floating > label {
  2201. position: absolute;
  2202. top: 0;
  2203. left: 0;
  2204. height: 100%;
  2205. padding: 1rem 0.75rem;
  2206. pointer-events: none;
  2207. border: 1px solid transparent;
  2208. transform-origin: 0 0;
  2209. transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  2210. }
  2211. @media (prefers-reduced-motion: reduce) {
  2212. .form-floating > label {
  2213. transition: none;
  2214. }
  2215. }
  2216. .form-floating > .form-control::-webkit-input-placeholder {
  2217. color: transparent;
  2218. }
  2219. .form-floating > .form-control::-moz-placeholder {
  2220. color: transparent;
  2221. }
  2222. .form-floating > .form-control::placeholder {
  2223. color: transparent;
  2224. }
  2225. .form-floating > .form-control:not(:-moz-placeholder-shown) {
  2226. padding-top: 1.625rem;
  2227. padding-bottom: 0.625rem;
  2228. }
  2229. .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
  2230. padding-top: 1.625rem;
  2231. padding-bottom: 0.625rem;
  2232. }
  2233. .form-floating > .form-control:-webkit-autofill {
  2234. padding-top: 1.625rem;
  2235. padding-bottom: 0.625rem;
  2236. }
  2237. .form-floating > .form-select {
  2238. padding-top: 1.625rem;
  2239. padding-bottom: 0.625rem;
  2240. }
  2241. .form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  2242. opacity: 0.65;
  2243. transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  2244. }
  2245. .form-floating > .form-control:focus ~ label,
  2246. .form-floating > .form-control:not(:placeholder-shown) ~ label,
  2247. .form-floating > .form-select ~ label {
  2248. opacity: 0.65;
  2249. transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  2250. }
  2251. .form-floating > .form-control:-webkit-autofill ~ label {
  2252. opacity: 0.65;
  2253. transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  2254. }
  2255. .input-group {
  2256. position: relative;
  2257. display: flex;
  2258. flex-wrap: wrap;
  2259. align-items: stretch;
  2260. width: 100%;
  2261. }
  2262. .input-group > .form-control,
  2263. .input-group > .form-select {
  2264. position: relative;
  2265. flex: 1 1 auto;
  2266. width: 1%;
  2267. min-width: 0;
  2268. }
  2269. .input-group > .form-control:focus,
  2270. .input-group > .form-select:focus {
  2271. z-index: 3;
  2272. }
  2273. .input-group .btn {
  2274. position: relative;
  2275. z-index: 2;
  2276. }
  2277. .input-group .btn:focus {
  2278. z-index: 3;
  2279. }
  2280. .input-group-text {
  2281. display: flex;
  2282. align-items: center;
  2283. padding: 0.375rem 0.75rem;
  2284. font-size: 1rem;
  2285. font-weight: 400;
  2286. line-height: 1.5;
  2287. color: #212529;
  2288. text-align: center;
  2289. white-space: nowrap;
  2290. background-color: #e9ecef;
  2291. border: 1px solid #ced4da;
  2292. border-radius: 0.25rem;
  2293. }
  2294. .input-group-lg > .form-control,
  2295. .input-group-lg > .form-select,
  2296. .input-group-lg > .input-group-text,
  2297. .input-group-lg > .btn {
  2298. padding: 0.5rem 1rem;
  2299. font-size: 1.25rem;
  2300. border-radius: 0.3rem;
  2301. }
  2302. .input-group-sm > .form-control,
  2303. .input-group-sm > .form-select,
  2304. .input-group-sm > .input-group-text,
  2305. .input-group-sm > .btn {
  2306. padding: 0.25rem 0.5rem;
  2307. font-size: 0.875rem;
  2308. border-radius: 0.2rem;
  2309. }
  2310. .input-group-lg > .form-select,
  2311. .input-group-sm > .form-select {
  2312. padding-right: 3rem;
  2313. }
  2314. .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
  2315. .input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3) {
  2316. border-top-right-radius: 0;
  2317. border-bottom-right-radius: 0;
  2318. }
  2319. .input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),
  2320. .input-group.has-validation > .dropdown-toggle:nth-last-child(n+4) {
  2321. border-top-right-radius: 0;
  2322. border-bottom-right-radius: 0;
  2323. }
  2324. .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  2325. margin-left: -1px;
  2326. border-top-left-radius: 0;
  2327. border-bottom-left-radius: 0;
  2328. }
  2329. .valid-feedback {
  2330. display: none;
  2331. width: 100%;
  2332. margin-top: 0.25rem;
  2333. font-size: 0.875em;
  2334. color: #198754;
  2335. }
  2336. .valid-tooltip {
  2337. position: absolute;
  2338. top: 100%;
  2339. z-index: 5;
  2340. display: none;
  2341. max-width: 100%;
  2342. padding: 0.25rem 0.5rem;
  2343. margin-top: 0.1rem;
  2344. font-size: 0.875rem;
  2345. color: #fff;
  2346. background-color: rgba(25, 135, 84, 0.9);
  2347. border-radius: 0.25rem;
  2348. }
  2349. .was-validated :valid ~ .valid-feedback,
  2350. .was-validated :valid ~ .valid-tooltip,
  2351. .is-valid ~ .valid-feedback,
  2352. .is-valid ~ .valid-tooltip {
  2353. display: block;
  2354. }
  2355. .was-validated .form-control:valid, .form-control.is-valid {
  2356. border-color: #198754;
  2357. padding-right: calc(1.5em + 0.75rem);
  2358. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.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");
  2359. background-repeat: no-repeat;
  2360. background-position: right calc(0.375em + 0.1875rem) center;
  2361. background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2362. }
  2363. .was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  2364. border-color: #198754;
  2365. box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
  2366. }
  2367. .was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  2368. padding-right: calc(1.5em + 0.75rem);
  2369. background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
  2370. }
  2371. .was-validated .form-select:valid, .form-select.is-valid {
  2372. border-color: #198754;
  2373. padding-right: 4.125rem;
  2374. 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='%23198754' 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");
  2375. background-position: right 0.75rem center, center right 2.25rem;
  2376. background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2377. }
  2378. .was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  2379. border-color: #198754;
  2380. box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
  2381. }
  2382. .was-validated .form-check-input:valid, .form-check-input.is-valid {
  2383. border-color: #198754;
  2384. }
  2385. .was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  2386. background-color: #198754;
  2387. }
  2388. .was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  2389. box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
  2390. }
  2391. .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  2392. color: #198754;
  2393. }
  2394. .form-check-inline .form-check-input ~ .valid-feedback {
  2395. margin-left: 0.5em;
  2396. }
  2397. .invalid-feedback {
  2398. display: none;
  2399. width: 100%;
  2400. margin-top: 0.25rem;
  2401. font-size: 0.875em;
  2402. color: #dc3545;
  2403. }
  2404. .invalid-tooltip {
  2405. position: absolute;
  2406. top: 100%;
  2407. z-index: 5;
  2408. display: none;
  2409. max-width: 100%;
  2410. padding: 0.25rem 0.5rem;
  2411. margin-top: 0.1rem;
  2412. font-size: 0.875rem;
  2413. color: #fff;
  2414. background-color: rgba(220, 53, 69, 0.9);
  2415. border-radius: 0.25rem;
  2416. }
  2417. .was-validated :invalid ~ .invalid-feedback,
  2418. .was-validated :invalid ~ .invalid-tooltip,
  2419. .is-invalid ~ .invalid-feedback,
  2420. .is-invalid ~ .invalid-tooltip {
  2421. display: block;
  2422. }
  2423. .was-validated .form-control:invalid, .form-control.is-invalid {
  2424. border-color: #dc3545;
  2425. padding-right: calc(1.5em + 0.75rem);
  2426. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  2427. background-repeat: no-repeat;
  2428. background-position: right calc(0.375em + 0.1875rem) center;
  2429. background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2430. }
  2431. .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  2432. border-color: #dc3545;
  2433. box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
  2434. }
  2435. .was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  2436. padding-right: calc(1.5em + 0.75rem);
  2437. background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
  2438. }
  2439. .was-validated .form-select:invalid, .form-select.is-invalid {
  2440. border-color: #dc3545;
  2441. padding-right: 4.125rem;
  2442. 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='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  2443. background-position: right 0.75rem center, center right 2.25rem;
  2444. background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2445. }
  2446. .was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  2447. border-color: #dc3545;
  2448. box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
  2449. }
  2450. .was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  2451. border-color: #dc3545;
  2452. }
  2453. .was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  2454. background-color: #dc3545;
  2455. }
  2456. .was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  2457. box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
  2458. }
  2459. .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  2460. color: #dc3545;
  2461. }
  2462. .form-check-inline .form-check-input ~ .invalid-feedback {
  2463. margin-left: 0.5em;
  2464. }
  2465. .btn {
  2466. display: inline-block;
  2467. font-weight: 400;
  2468. line-height: 1.5;
  2469. color: #212529;
  2470. text-align: center;
  2471. text-decoration: none;
  2472. vertical-align: middle;
  2473. cursor: pointer;
  2474. -webkit-user-select: none;
  2475. -moz-user-select: none;
  2476. user-select: none;
  2477. background-color: transparent;
  2478. border: 1px solid transparent;
  2479. padding: 0.375rem 0.75rem;
  2480. font-size: 1rem;
  2481. border-radius: 0.25rem;
  2482. 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;
  2483. }
  2484. @media (prefers-reduced-motion: reduce) {
  2485. .btn {
  2486. transition: none;
  2487. }
  2488. }
  2489. .btn:hover {
  2490. color: #212529;
  2491. }
  2492. .btn-check:focus + .btn, .btn:focus {
  2493. outline: 0;
  2494. box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  2495. }
  2496. .btn:disabled, .btn.disabled, fieldset:disabled .btn {
  2497. pointer-events: none;
  2498. opacity: 0.65;
  2499. }
  2500. .btn-primary {
  2501. color: #fff;
  2502. background-color: #0d6efd;
  2503. border-color: #0d6efd;
  2504. }
  2505. .btn-primary:hover {
  2506. color: #fff;
  2507. background-color: #0b5ed7;
  2508. border-color: #0a58ca;
  2509. }
  2510. .btn-check:focus + .btn-primary, .btn-primary:focus {
  2511. color: #fff;
  2512. background-color: #0b5ed7;
  2513. border-color: #0a58ca;
  2514. box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
  2515. }
  2516. .btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle {
  2517. color: #fff;
  2518. background-color: #0a58ca;
  2519. border-color: #0a53be;
  2520. }
  2521. .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 {
  2522. box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
  2523. }
  2524. .btn-primary:disabled, .btn-primary.disabled {
  2525. color: #fff;
  2526. background-color: #0d6efd;
  2527. border-color: #0d6efd;
  2528. }
  2529. .btn-secondary {
  2530. color: #fff;
  2531. background-color: #6c757d;
  2532. border-color: #6c757d;
  2533. }
  2534. .btn-secondary:hover {
  2535. color: #fff;
  2536. background-color: #5c636a;
  2537. border-color: #565e64;
  2538. }
  2539. .btn-check:focus + .btn-secondary, .btn-secondary:focus {
  2540. color: #fff;
  2541. background-color: #5c636a;
  2542. border-color: #565e64;
  2543. box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
  2544. }
  2545. .btn-check:checked + .btn-secondary, .btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active, .show > .btn-secondary.dropdown-toggle {
  2546. color: #fff;
  2547. background-color: #565e64;
  2548. border-color: #51585e;
  2549. }
  2550. .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 {
  2551. box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
  2552. }
  2553. .btn-secondary:disabled, .btn-secondary.disabled {
  2554. color: #fff;
  2555. background-color: #6c757d;
  2556. border-color: #6c757d;
  2557. }
  2558. .btn-success {
  2559. color: #fff;
  2560. background-color: #198754;
  2561. border-color: #198754;
  2562. }
  2563. .btn-success:hover {
  2564. color: #fff;
  2565. background-color: #157347;
  2566. border-color: #146c43;
  2567. }
  2568. .btn-check:focus + .btn-success, .btn-success:focus {
  2569. color: #fff;
  2570. background-color: #157347;
  2571. border-color: #146c43;
  2572. box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
  2573. }
  2574. .btn-check:checked + .btn-success, .btn-check:active + .btn-success, .btn-success:active, .btn-success.active, .show > .btn-success.dropdown-toggle {
  2575. color: #fff;
  2576. background-color: #146c43;
  2577. border-color: #13653f;
  2578. }
  2579. .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 {
  2580. box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
  2581. }
  2582. .btn-success:disabled, .btn-success.disabled {
  2583. color: #fff;
  2584. background-color: #198754;
  2585. border-color: #198754;
  2586. }
  2587. .btn-info {
  2588. color: #000;
  2589. background-color: #0dcaf0;
  2590. border-color: #0dcaf0;
  2591. }
  2592. .btn-info:hover {
  2593. color: #000;
  2594. background-color: #31d2f2;
  2595. border-color: #25cff2;
  2596. }
  2597. .btn-check:focus + .btn-info, .btn-info:focus {
  2598. color: #000;
  2599. background-color: #31d2f2;
  2600. border-color: #25cff2;
  2601. box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
  2602. }
  2603. .btn-check:checked + .btn-info, .btn-check:active + .btn-info, .btn-info:active, .btn-info.active, .show > .btn-info.dropdown-toggle {
  2604. color: #000;
  2605. background-color: #3dd5f3;
  2606. border-color: #25cff2;
  2607. }
  2608. .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 {
  2609. box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
  2610. }
  2611. .btn-info:disabled, .btn-info.disabled {
  2612. color: #000;
  2613. background-color: #0dcaf0;
  2614. border-color: #0dcaf0;
  2615. }
  2616. .btn-warning {
  2617. color: #000;
  2618. background-color: #ffc107;
  2619. border-color: #ffc107;
  2620. }
  2621. .btn-warning:hover {
  2622. color: #000;
  2623. background-color: #ffca2c;
  2624. border-color: #ffc720;
  2625. }
  2626. .btn-check:focus + .btn-warning, .btn-warning:focus {
  2627. color: #000;
  2628. background-color: #ffca2c;
  2629. border-color: #ffc720;
  2630. box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
  2631. }
  2632. .btn-check:checked + .btn-warning, .btn-check:active + .btn-warning, .btn-warning:active, .btn-warning.active, .show > .btn-warning.dropdown-toggle {
  2633. color: #000;
  2634. background-color: #ffcd39;
  2635. border-color: #ffc720;
  2636. }
  2637. .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 {
  2638. box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
  2639. }
  2640. .btn-warning:disabled, .btn-warning.disabled {
  2641. color: #000;
  2642. background-color: #ffc107;
  2643. border-color: #ffc107;
  2644. }
  2645. .btn-danger {
  2646. color: #fff;
  2647. background-color: #dc3545;
  2648. border-color: #dc3545;
  2649. }
  2650. .btn-danger:hover {
  2651. color: #fff;
  2652. background-color: #bb2d3b;
  2653. border-color: #b02a37;
  2654. }
  2655. .btn-check:focus + .btn-danger, .btn-danger:focus {
  2656. color: #fff;
  2657. background-color: #bb2d3b;
  2658. border-color: #b02a37;
  2659. box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
  2660. }
  2661. .btn-check:checked + .btn-danger, .btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active, .show > .btn-danger.dropdown-toggle {
  2662. color: #fff;
  2663. background-color: #b02a37;
  2664. border-color: #a52834;
  2665. }
  2666. .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 {
  2667. box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
  2668. }
  2669. .btn-danger:disabled, .btn-danger.disabled {
  2670. color: #fff;
  2671. background-color: #dc3545;
  2672. border-color: #dc3545;
  2673. }
  2674. .btn-light {
  2675. color: #000;
  2676. background-color: #f8f9fa;
  2677. border-color: #f8f9fa;
  2678. }
  2679. .btn-light:hover {
  2680. color: #000;
  2681. background-color: #f9fafb;
  2682. border-color: #f9fafb;
  2683. }
  2684. .btn-check:focus + .btn-light, .btn-light:focus {
  2685. color: #000;
  2686. background-color: #f9fafb;
  2687. border-color: #f9fafb;
  2688. box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
  2689. }
  2690. .btn-check:checked + .btn-light, .btn-check:active + .btn-light, .btn-light:active, .btn-light.active, .show > .btn-light.dropdown-toggle {
  2691. color: #000;
  2692. background-color: #f9fafb;
  2693. border-color: #f9fafb;
  2694. }
  2695. .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 {
  2696. box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
  2697. }
  2698. .btn-light:disabled, .btn-light.disabled {
  2699. color: #000;
  2700. background-color: #f8f9fa;
  2701. border-color: #f8f9fa;
  2702. }
  2703. .btn-dark {
  2704. color: #fff;
  2705. background-color: #212529;
  2706. border-color: #212529;
  2707. }
  2708. .btn-dark:hover {
  2709. color: #fff;
  2710. background-color: #1c1f23;
  2711. border-color: #1a1e21;
  2712. }
  2713. .btn-check:focus + .btn-dark, .btn-dark:focus {
  2714. color: #fff;
  2715. background-color: #1c1f23;
  2716. border-color: #1a1e21;
  2717. box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
  2718. }
  2719. .btn-check:checked + .btn-dark, .btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active, .show > .btn-dark.dropdown-toggle {
  2720. color: #fff;
  2721. background-color: #1a1e21;
  2722. border-color: #191c1f;
  2723. }
  2724. .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 {
  2725. box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
  2726. }
  2727. .btn-dark:disabled, .btn-dark.disabled {
  2728. color: #fff;
  2729. background-color: #212529;
  2730. border-color: #212529;
  2731. }
  2732. .btn-outline-primary {
  2733. color: #0d6efd;
  2734. border-color: #0d6efd;
  2735. }
  2736. .btn-outline-primary:hover {
  2737. color: #fff;
  2738. background-color: #0d6efd;
  2739. border-color: #0d6efd;
  2740. }
  2741. .btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
  2742. box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
  2743. }
  2744. .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 {
  2745. color: #fff;
  2746. background-color: #0d6efd;
  2747. border-color: #0d6efd;
  2748. }
  2749. .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 {
  2750. box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
  2751. }
  2752. .btn-outline-primary:disabled, .btn-outline-primary.disabled {
  2753. color: #0d6efd;
  2754. background-color: transparent;
  2755. }
  2756. .btn-outline-secondary {
  2757. color: #6c757d;
  2758. border-color: #6c757d;
  2759. }
  2760. .btn-outline-secondary:hover {
  2761. color: #fff;
  2762. background-color: #6c757d;
  2763. border-color: #6c757d;
  2764. }
  2765. .btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus {
  2766. box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
  2767. }
  2768. .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 {
  2769. color: #fff;
  2770. background-color: #6c757d;
  2771. border-color: #6c757d;
  2772. }
  2773. .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 {
  2774. box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
  2775. }
  2776. .btn-outline-secondary:disabled, .btn-outline-secondary.disabled {
  2777. color: #6c757d;
  2778. background-color: transparent;
  2779. }
  2780. .btn-outline-success {
  2781. color: #198754;
  2782. border-color: #198754;
  2783. }
  2784. .btn-outline-success:hover {
  2785. color: #fff;
  2786. background-color: #198754;
  2787. border-color: #198754;
  2788. }
  2789. .btn-check:focus + .btn-outline-success, .btn-outline-success:focus {
  2790. box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
  2791. }
  2792. .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 {
  2793. color: #fff;
  2794. background-color: #198754;
  2795. border-color: #198754;
  2796. }
  2797. .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 {
  2798. box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
  2799. }
  2800. .btn-outline-success:disabled, .btn-outline-success.disabled {
  2801. color: #198754;
  2802. background-color: transparent;
  2803. }
  2804. .btn-outline-info {
  2805. color: #0dcaf0;
  2806. border-color: #0dcaf0;
  2807. }
  2808. .btn-outline-info:hover {
  2809. color: #000;
  2810. background-color: #0dcaf0;
  2811. border-color: #0dcaf0;
  2812. }
  2813. .btn-check:focus + .btn-outline-info, .btn-outline-info:focus {
  2814. box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
  2815. }
  2816. .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 {
  2817. color: #000;
  2818. background-color: #0dcaf0;
  2819. border-color: #0dcaf0;
  2820. }
  2821. .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 {
  2822. box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
  2823. }
  2824. .btn-outline-info:disabled, .btn-outline-info.disabled {
  2825. color: #0dcaf0;
  2826. background-color: transparent;
  2827. }
  2828. .btn-outline-warning {
  2829. color: #ffc107;
  2830. border-color: #ffc107;
  2831. }
  2832. .btn-outline-warning:hover {
  2833. color: #000;
  2834. background-color: #ffc107;
  2835. border-color: #ffc107;
  2836. }
  2837. .btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus {
  2838. box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
  2839. }
  2840. .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 {
  2841. color: #000;
  2842. background-color: #ffc107;
  2843. border-color: #ffc107;
  2844. }
  2845. .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 {
  2846. box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
  2847. }
  2848. .btn-outline-warning:disabled, .btn-outline-warning.disabled {
  2849. color: #ffc107;
  2850. background-color: transparent;
  2851. }
  2852. .btn-outline-danger {
  2853. color: #dc3545;
  2854. border-color: #dc3545;
  2855. }
  2856. .btn-outline-danger:hover {
  2857. color: #fff;
  2858. background-color: #dc3545;
  2859. border-color: #dc3545;
  2860. }
  2861. .btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus {
  2862. box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
  2863. }
  2864. .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 {
  2865. color: #fff;
  2866. background-color: #dc3545;
  2867. border-color: #dc3545;
  2868. }
  2869. .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 {
  2870. box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
  2871. }
  2872. .btn-outline-danger:disabled, .btn-outline-danger.disabled {
  2873. color: #dc3545;
  2874. background-color: transparent;
  2875. }
  2876. .btn-outline-light {
  2877. color: #f8f9fa;
  2878. border-color: #f8f9fa;
  2879. }
  2880. .btn-outline-light:hover {
  2881. color: #000;
  2882. background-color: #f8f9fa;
  2883. border-color: #f8f9fa;
  2884. }
  2885. .btn-check:focus + .btn-outline-light, .btn-outline-light:focus {
  2886. box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
  2887. }
  2888. .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 {
  2889. color: #000;
  2890. background-color: #f8f9fa;
  2891. border-color: #f8f9fa;
  2892. }
  2893. .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 {
  2894. box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
  2895. }
  2896. .btn-outline-light:disabled, .btn-outline-light.disabled {
  2897. color: #f8f9fa;
  2898. background-color: transparent;
  2899. }
  2900. .btn-outline-dark {
  2901. color: #212529;
  2902. border-color: #212529;
  2903. }
  2904. .btn-outline-dark:hover {
  2905. color: #fff;
  2906. background-color: #212529;
  2907. border-color: #212529;
  2908. }
  2909. .btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus {
  2910. box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
  2911. }
  2912. .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 {
  2913. color: #fff;
  2914. background-color: #212529;
  2915. border-color: #212529;
  2916. }
  2917. .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 {
  2918. box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
  2919. }
  2920. .btn-outline-dark:disabled, .btn-outline-dark.disabled {
  2921. color: #212529;
  2922. background-color: transparent;
  2923. }
  2924. .btn-link {
  2925. font-weight: 400;
  2926. color: #0d6efd;
  2927. text-decoration: underline;
  2928. }
  2929. .btn-link:hover {
  2930. color: #0a58ca;
  2931. }
  2932. .btn-link:disabled, .btn-link.disabled {
  2933. color: #6c757d;
  2934. }
  2935. .btn-lg, .btn-group-lg > .btn {
  2936. padding: 0.5rem 1rem;
  2937. font-size: 1.25rem;
  2938. border-radius: 0.3rem;
  2939. }
  2940. .btn-sm, .btn-group-sm > .btn {
  2941. padding: 0.25rem 0.5rem;
  2942. font-size: 0.875rem;
  2943. border-radius: 0.2rem;
  2944. }
  2945. .fade {
  2946. transition: opacity 0.15s linear;
  2947. }
  2948. @media (prefers-reduced-motion: reduce) {
  2949. .fade {
  2950. transition: none;
  2951. }
  2952. }
  2953. .fade:not(.show) {
  2954. opacity: 0;
  2955. }
  2956. .collapse:not(.show) {
  2957. display: none;
  2958. }
  2959. .collapsing {
  2960. height: 0;
  2961. overflow: hidden;
  2962. transition: height 0.35s ease;
  2963. }
  2964. @media (prefers-reduced-motion: reduce) {
  2965. .collapsing {
  2966. transition: none;
  2967. }
  2968. }
  2969. .dropup,
  2970. .dropend,
  2971. .dropdown,
  2972. .dropstart {
  2973. position: relative;
  2974. }
  2975. .dropdown-toggle {
  2976. white-space: nowrap;
  2977. }
  2978. .dropdown-toggle::after {
  2979. display: inline-block;
  2980. margin-left: 0.255em;
  2981. vertical-align: 0.255em;
  2982. content: "";
  2983. border-top: 0.3em solid;
  2984. border-right: 0.3em solid transparent;
  2985. border-bottom: 0;
  2986. border-left: 0.3em solid transparent;
  2987. }
  2988. .dropdown-toggle:empty::after {
  2989. margin-left: 0;
  2990. }
  2991. .dropdown-menu {
  2992. position: absolute;
  2993. top: 100%;
  2994. z-index: 1000;
  2995. display: none;
  2996. min-width: 10rem;
  2997. padding: 0.5rem 0;
  2998. margin: 0;
  2999. font-size: 1rem;
  3000. color: #212529;
  3001. text-align: left;
  3002. list-style: none;
  3003. background-color: #fff;
  3004. background-clip: padding-box;
  3005. border: 1px solid rgba(0, 0, 0, 0.15);
  3006. border-radius: 0.25rem;
  3007. }
  3008. .dropdown-menu[data-bs-popper] {
  3009. left: 0;
  3010. margin-top: 0.125rem;
  3011. }
  3012. .dropdown-menu-start {
  3013. --bs-position: start;
  3014. }
  3015. .dropdown-menu-start[data-bs-popper] {
  3016. right: auto /* rtl:ignore */;
  3017. left: 0 /* rtl:ignore */;
  3018. }
  3019. .dropdown-menu-end {
  3020. --bs-position: end;
  3021. }
  3022. .dropdown-menu-end[data-bs-popper] {
  3023. right: 0 /* rtl:ignore */;
  3024. left: auto /* rtl:ignore */;
  3025. }
  3026. @media (min-width: 576px) {
  3027. .dropdown-menu-sm-start {
  3028. --bs-position: start;
  3029. }
  3030. .dropdown-menu-sm-start[data-bs-popper] {
  3031. right: auto /* rtl:ignore */;
  3032. left: 0 /* rtl:ignore */;
  3033. }
  3034. .dropdown-menu-sm-end {
  3035. --bs-position: end;
  3036. }
  3037. .dropdown-menu-sm-end[data-bs-popper] {
  3038. right: 0 /* rtl:ignore */;
  3039. left: auto /* rtl:ignore */;
  3040. }
  3041. }
  3042. @media (min-width: 768px) {
  3043. .dropdown-menu-md-start {
  3044. --bs-position: start;
  3045. }
  3046. .dropdown-menu-md-start[data-bs-popper] {
  3047. right: auto /* rtl:ignore */;
  3048. left: 0 /* rtl:ignore */;
  3049. }
  3050. .dropdown-menu-md-end {
  3051. --bs-position: end;
  3052. }
  3053. .dropdown-menu-md-end[data-bs-popper] {
  3054. right: 0 /* rtl:ignore */;
  3055. left: auto /* rtl:ignore */;
  3056. }
  3057. }
  3058. @media (min-width: 992px) {
  3059. .dropdown-menu-lg-start {
  3060. --bs-position: start;
  3061. }
  3062. .dropdown-menu-lg-start[data-bs-popper] {
  3063. right: auto /* rtl:ignore */;
  3064. left: 0 /* rtl:ignore */;
  3065. }
  3066. .dropdown-menu-lg-end {
  3067. --bs-position: end;
  3068. }
  3069. .dropdown-menu-lg-end[data-bs-popper] {
  3070. right: 0 /* rtl:ignore */;
  3071. left: auto /* rtl:ignore */;
  3072. }
  3073. }
  3074. @media (min-width: 1200px) {
  3075. .dropdown-menu-xl-start {
  3076. --bs-position: start;
  3077. }
  3078. .dropdown-menu-xl-start[data-bs-popper] {
  3079. right: auto /* rtl:ignore */;
  3080. left: 0 /* rtl:ignore */;
  3081. }
  3082. .dropdown-menu-xl-end {
  3083. --bs-position: end;
  3084. }
  3085. .dropdown-menu-xl-end[data-bs-popper] {
  3086. right: 0 /* rtl:ignore */;
  3087. left: auto /* rtl:ignore */;
  3088. }
  3089. }
  3090. @media (min-width: 1400px) {
  3091. .dropdown-menu-xxl-start {
  3092. --bs-position: start;
  3093. }
  3094. .dropdown-menu-xxl-start[data-bs-popper] {
  3095. right: auto /* rtl:ignore */;
  3096. left: 0 /* rtl:ignore */;
  3097. }
  3098. .dropdown-menu-xxl-end {
  3099. --bs-position: end;
  3100. }
  3101. .dropdown-menu-xxl-end[data-bs-popper] {
  3102. right: 0 /* rtl:ignore */;
  3103. left: auto /* rtl:ignore */;
  3104. }
  3105. }
  3106. .dropup .dropdown-menu {
  3107. top: auto;
  3108. bottom: 100%;
  3109. }
  3110. .dropup .dropdown-menu[data-bs-popper] {
  3111. margin-top: 0;
  3112. margin-bottom: 0.125rem;
  3113. }
  3114. .dropup .dropdown-toggle::after {
  3115. display: inline-block;
  3116. margin-left: 0.255em;
  3117. vertical-align: 0.255em;
  3118. content: "";
  3119. border-top: 0;
  3120. border-right: 0.3em solid transparent;
  3121. border-bottom: 0.3em solid;
  3122. border-left: 0.3em solid transparent;
  3123. }
  3124. .dropup .dropdown-toggle:empty::after {
  3125. margin-left: 0;
  3126. }
  3127. .dropend .dropdown-menu {
  3128. top: 0;
  3129. right: auto;
  3130. left: 100%;
  3131. }
  3132. .dropend .dropdown-menu[data-bs-popper] {
  3133. margin-top: 0;
  3134. margin-left: 0.125rem;
  3135. }
  3136. .dropend .dropdown-toggle::after {
  3137. display: inline-block;
  3138. margin-left: 0.255em;
  3139. vertical-align: 0.255em;
  3140. content: "";
  3141. border-top: 0.3em solid transparent;
  3142. border-right: 0;
  3143. border-bottom: 0.3em solid transparent;
  3144. border-left: 0.3em solid;
  3145. }
  3146. .dropend .dropdown-toggle:empty::after {
  3147. margin-left: 0;
  3148. }
  3149. .dropend .dropdown-toggle::after {
  3150. vertical-align: 0;
  3151. }
  3152. .dropstart .dropdown-menu {
  3153. top: 0;
  3154. right: 100%;
  3155. left: auto;
  3156. }
  3157. .dropstart .dropdown-menu[data-bs-popper] {
  3158. margin-top: 0;
  3159. margin-right: 0.125rem;
  3160. }
  3161. .dropstart .dropdown-toggle::after {
  3162. display: inline-block;
  3163. margin-left: 0.255em;
  3164. vertical-align: 0.255em;
  3165. content: "";
  3166. }
  3167. .dropstart .dropdown-toggle::after {
  3168. display: none;
  3169. }
  3170. .dropstart .dropdown-toggle::before {
  3171. display: inline-block;
  3172. margin-right: 0.255em;
  3173. vertical-align: 0.255em;
  3174. content: "";
  3175. border-top: 0.3em solid transparent;
  3176. border-right: 0.3em solid;
  3177. border-bottom: 0.3em solid transparent;
  3178. }
  3179. .dropstart .dropdown-toggle:empty::after {
  3180. margin-left: 0;
  3181. }
  3182. .dropstart .dropdown-toggle::before {
  3183. vertical-align: 0;
  3184. }
  3185. .dropdown-divider {
  3186. height: 0;
  3187. margin: 0.5rem 0;
  3188. overflow: hidden;
  3189. border-top: 1px solid rgba(0, 0, 0, 0.15);
  3190. }
  3191. .dropdown-item {
  3192. display: block;
  3193. width: 100%;
  3194. padding: 0.25rem 1rem;
  3195. clear: both;
  3196. font-weight: 400;
  3197. color: #212529;
  3198. text-align: inherit;
  3199. text-decoration: none;
  3200. white-space: nowrap;
  3201. background-color: transparent;
  3202. border: 0;
  3203. }
  3204. .dropdown-item:hover, .dropdown-item:focus {
  3205. color: #1e2125;
  3206. background-color: #e9ecef;
  3207. }
  3208. .dropdown-item.active, .dropdown-item:active {
  3209. color: #fff;
  3210. text-decoration: none;
  3211. background-color: #0d6efd;
  3212. }
  3213. .dropdown-item.disabled, .dropdown-item:disabled {
  3214. color: #adb5bd;
  3215. pointer-events: none;
  3216. background-color: transparent;
  3217. }
  3218. .dropdown-menu.show {
  3219. display: block;
  3220. }
  3221. .dropdown-header {
  3222. display: block;
  3223. padding: 0.5rem 1rem;
  3224. margin-bottom: 0;
  3225. font-size: 0.875rem;
  3226. color: #6c757d;
  3227. white-space: nowrap;
  3228. }
  3229. .dropdown-item-text {
  3230. display: block;
  3231. padding: 0.25rem 1rem;
  3232. color: #212529;
  3233. }
  3234. .dropdown-menu-dark {
  3235. color: #dee2e6;
  3236. background-color: #343a40;
  3237. border-color: rgba(0, 0, 0, 0.15);
  3238. }
  3239. .dropdown-menu-dark .dropdown-item {
  3240. color: #dee2e6;
  3241. }
  3242. .dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus {
  3243. color: #fff;
  3244. background-color: rgba(255, 255, 255, 0.15);
  3245. }
  3246. .dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active {
  3247. color: #fff;
  3248. background-color: #0d6efd;
  3249. }
  3250. .dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled {
  3251. color: #adb5bd;
  3252. }
  3253. .dropdown-menu-dark .dropdown-divider {
  3254. border-color: rgba(0, 0, 0, 0.15);
  3255. }
  3256. .dropdown-menu-dark .dropdown-item-text {
  3257. color: #dee2e6;
  3258. }
  3259. .dropdown-menu-dark .dropdown-header {
  3260. color: #adb5bd;
  3261. }
  3262. .btn-group,
  3263. .btn-group-vertical {
  3264. position: relative;
  3265. display: inline-flex;
  3266. vertical-align: middle;
  3267. }
  3268. .btn-group > .btn,
  3269. .btn-group-vertical > .btn {
  3270. position: relative;
  3271. flex: 1 1 auto;
  3272. }
  3273. .btn-group > .btn-check:checked + .btn,
  3274. .btn-group > .btn-check:focus + .btn,
  3275. .btn-group > .btn:hover,
  3276. .btn-group > .btn:focus,
  3277. .btn-group > .btn:active,
  3278. .btn-group > .btn.active,
  3279. .btn-group-vertical > .btn-check:checked + .btn,
  3280. .btn-group-vertical > .btn-check:focus + .btn,
  3281. .btn-group-vertical > .btn:hover,
  3282. .btn-group-vertical > .btn:focus,
  3283. .btn-group-vertical > .btn:active,
  3284. .btn-group-vertical > .btn.active {
  3285. z-index: 1;
  3286. }
  3287. .btn-toolbar {
  3288. display: flex;
  3289. flex-wrap: wrap;
  3290. justify-content: flex-start;
  3291. }
  3292. .btn-toolbar .input-group {
  3293. width: auto;
  3294. }
  3295. .btn-group > .btn:not(:first-child),
  3296. .btn-group > .btn-group:not(:first-child) {
  3297. margin-left: -1px;
  3298. }
  3299. .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
  3300. .btn-group > .btn-group:not(:last-child) > .btn {
  3301. border-top-right-radius: 0;
  3302. border-bottom-right-radius: 0;
  3303. }
  3304. .btn-group > .btn:nth-child(n+3),
  3305. .btn-group > :not(.btn-check) + .btn,
  3306. .btn-group > .btn-group:not(:first-child) > .btn {
  3307. border-top-left-radius: 0;
  3308. border-bottom-left-radius: 0;
  3309. }
  3310. .dropdown-toggle-split {
  3311. padding-right: 0.5625rem;
  3312. padding-left: 0.5625rem;
  3313. }
  3314. .dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
  3315. margin-left: 0;
  3316. }
  3317. .dropstart .dropdown-toggle-split::before {
  3318. margin-right: 0;
  3319. }
  3320. .btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  3321. padding-right: 0.375rem;
  3322. padding-left: 0.375rem;
  3323. }
  3324. .btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  3325. padding-right: 0.75rem;
  3326. padding-left: 0.75rem;
  3327. }
  3328. .btn-group-vertical {
  3329. flex-direction: column;
  3330. align-items: flex-start;
  3331. justify-content: center;
  3332. }
  3333. .btn-group-vertical > .btn,
  3334. .btn-group-vertical > .btn-group {
  3335. width: 100%;
  3336. }
  3337. .btn-group-vertical > .btn:not(:first-child),
  3338. .btn-group-vertical > .btn-group:not(:first-child) {
  3339. margin-top: -1px;
  3340. }
  3341. .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
  3342. .btn-group-vertical > .btn-group:not(:last-child) > .btn {
  3343. border-bottom-right-radius: 0;
  3344. border-bottom-left-radius: 0;
  3345. }
  3346. .btn-group-vertical > .btn ~ .btn,
  3347. .btn-group-vertical > .btn-group:not(:first-child) > .btn {
  3348. border-top-left-radius: 0;
  3349. border-top-right-radius: 0;
  3350. }
  3351. .nav {
  3352. display: flex;
  3353. flex-wrap: wrap;
  3354. padding-left: 0;
  3355. margin-bottom: 0;
  3356. list-style: none;
  3357. }
  3358. .nav-link {
  3359. display: block;
  3360. padding: 0.5rem 1rem;
  3361. text-decoration: none;
  3362. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  3363. }
  3364. @media (prefers-reduced-motion: reduce) {
  3365. .nav-link {
  3366. transition: none;
  3367. }
  3368. }
  3369. .nav-link.disabled {
  3370. color: #6c757d;
  3371. pointer-events: none;
  3372. cursor: default;
  3373. }
  3374. .nav-tabs {
  3375. border-bottom: 1px solid #dee2e6;
  3376. }
  3377. .nav-tabs .nav-link {
  3378. margin-bottom: -1px;
  3379. background: none;
  3380. border: 1px solid transparent;
  3381. border-top-left-radius: 0.25rem;
  3382. border-top-right-radius: 0.25rem;
  3383. }
  3384. .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  3385. border-color: #e9ecef #e9ecef #dee2e6;
  3386. isolation: isolate;
  3387. }
  3388. .nav-tabs .nav-link.disabled {
  3389. color: #6c757d;
  3390. background-color: transparent;
  3391. border-color: transparent;
  3392. }
  3393. .nav-tabs .nav-link.active,
  3394. .nav-tabs .nav-item.show .nav-link {
  3395. color: #495057;
  3396. background-color: #fff;
  3397. border-color: #dee2e6 #dee2e6 #fff;
  3398. }
  3399. .nav-tabs .dropdown-menu {
  3400. margin-top: -1px;
  3401. border-top-left-radius: 0;
  3402. border-top-right-radius: 0;
  3403. }
  3404. .nav-pills .nav-link {
  3405. background: none;
  3406. border: 0;
  3407. border-radius: 0.25rem;
  3408. }
  3409. .nav-pills .nav-link.active,
  3410. .nav-pills .show > .nav-link {
  3411. color: #fff;
  3412. background-color: #0d6efd;
  3413. }
  3414. .nav-fill > .nav-link,
  3415. .nav-fill .nav-item {
  3416. flex: 1 1 auto;
  3417. text-align: center;
  3418. }
  3419. .nav-justified > .nav-link,
  3420. .nav-justified .nav-item {
  3421. flex-basis: 0;
  3422. flex-grow: 1;
  3423. text-align: center;
  3424. }
  3425. .tab-content > .tab-pane {
  3426. display: none;
  3427. }
  3428. .tab-content > .active {
  3429. display: block;
  3430. }
  3431. .navbar {
  3432. position: relative;
  3433. display: flex;
  3434. flex-wrap: wrap;
  3435. align-items: center;
  3436. justify-content: space-between;
  3437. padding-top: 0.5rem;
  3438. padding-bottom: 0.5rem;
  3439. }
  3440. .navbar > .container,
  3441. .navbar > .container-fluid,
  3442. .navbar > .container-sm,
  3443. .navbar > .container-md,
  3444. .navbar > .container-lg,
  3445. .navbar > .container-xl,
  3446. .navbar > .container-xxl {
  3447. display: flex;
  3448. flex-wrap: inherit;
  3449. align-items: center;
  3450. justify-content: space-between;
  3451. }
  3452. .navbar-brand {
  3453. padding-top: 0.3125rem;
  3454. padding-bottom: 0.3125rem;
  3455. margin-right: 1rem;
  3456. font-size: 1.25rem;
  3457. text-decoration: none;
  3458. white-space: nowrap;
  3459. }
  3460. .navbar-nav {
  3461. display: flex;
  3462. flex-direction: column;
  3463. padding-left: 0;
  3464. margin-bottom: 0;
  3465. list-style: none;
  3466. }
  3467. .navbar-nav .nav-link {
  3468. padding-right: 0;
  3469. padding-left: 0;
  3470. }
  3471. .navbar-nav .dropdown-menu {
  3472. position: static;
  3473. }
  3474. .navbar-text {
  3475. padding-top: 0.5rem;
  3476. padding-bottom: 0.5rem;
  3477. }
  3478. .navbar-collapse {
  3479. flex-basis: 100%;
  3480. flex-grow: 1;
  3481. align-items: center;
  3482. }
  3483. .navbar-toggler {
  3484. padding: 0.25rem 0.75rem;
  3485. font-size: 1.25rem;
  3486. line-height: 1;
  3487. background-color: transparent;
  3488. border: 1px solid transparent;
  3489. border-radius: 0.25rem;
  3490. transition: box-shadow 0.15s ease-in-out;
  3491. }
  3492. @media (prefers-reduced-motion: reduce) {
  3493. .navbar-toggler {
  3494. transition: none;
  3495. }
  3496. }
  3497. .navbar-toggler:hover {
  3498. text-decoration: none;
  3499. }
  3500. .navbar-toggler:focus {
  3501. text-decoration: none;
  3502. outline: 0;
  3503. box-shadow: 0 0 0 0.25rem;
  3504. }
  3505. .navbar-toggler-icon {
  3506. display: inline-block;
  3507. width: 1.5em;
  3508. height: 1.5em;
  3509. vertical-align: middle;
  3510. background-repeat: no-repeat;
  3511. background-position: center;
  3512. background-size: 100%;
  3513. }
  3514. .navbar-nav-scroll {
  3515. max-height: var(--bs-scroll-height, 75vh);
  3516. overflow-y: auto;
  3517. }
  3518. @media (min-width: 576px) {
  3519. .navbar-expand-sm {
  3520. flex-wrap: nowrap;
  3521. justify-content: flex-start;
  3522. }
  3523. .navbar-expand-sm .navbar-nav {
  3524. flex-direction: row;
  3525. }
  3526. .navbar-expand-sm .navbar-nav .dropdown-menu {
  3527. position: absolute;
  3528. }
  3529. .navbar-expand-sm .navbar-nav .nav-link {
  3530. padding-right: 0.5rem;
  3531. padding-left: 0.5rem;
  3532. }
  3533. .navbar-expand-sm .navbar-nav-scroll {
  3534. overflow: visible;
  3535. }
  3536. .navbar-expand-sm .navbar-collapse {
  3537. display: flex !important;
  3538. flex-basis: auto;
  3539. }
  3540. .navbar-expand-sm .navbar-toggler {
  3541. display: none;
  3542. }
  3543. }
  3544. @media (min-width: 768px) {
  3545. .navbar-expand-md {
  3546. flex-wrap: nowrap;
  3547. justify-content: flex-start;
  3548. }
  3549. .navbar-expand-md .navbar-nav {
  3550. flex-direction: row;
  3551. }
  3552. .navbar-expand-md .navbar-nav .dropdown-menu {
  3553. position: absolute;
  3554. }
  3555. .navbar-expand-md .navbar-nav .nav-link {
  3556. padding-right: 0.5rem;
  3557. padding-left: 0.5rem;
  3558. }
  3559. .navbar-expand-md .navbar-nav-scroll {
  3560. overflow: visible;
  3561. }
  3562. .navbar-expand-md .navbar-collapse {
  3563. display: flex !important;
  3564. flex-basis: auto;
  3565. }
  3566. .navbar-expand-md .navbar-toggler {
  3567. display: none;
  3568. }
  3569. }
  3570. @media (min-width: 992px) {
  3571. .navbar-expand-lg {
  3572. flex-wrap: nowrap;
  3573. justify-content: flex-start;
  3574. }
  3575. .navbar-expand-lg .navbar-nav {
  3576. flex-direction: row;
  3577. }
  3578. .navbar-expand-lg .navbar-nav .dropdown-menu {
  3579. position: absolute;
  3580. }
  3581. .navbar-expand-lg .navbar-nav .nav-link {
  3582. padding-right: 0.5rem;
  3583. padding-left: 0.5rem;
  3584. }
  3585. .navbar-expand-lg .navbar-nav-scroll {
  3586. overflow: visible;
  3587. }
  3588. .navbar-expand-lg .navbar-collapse {
  3589. display: flex !important;
  3590. flex-basis: auto;
  3591. }
  3592. .navbar-expand-lg .navbar-toggler {
  3593. display: none;
  3594. }
  3595. }
  3596. @media (min-width: 1200px) {
  3597. .navbar-expand-xl {
  3598. flex-wrap: nowrap;
  3599. justify-content: flex-start;
  3600. }
  3601. .navbar-expand-xl .navbar-nav {
  3602. flex-direction: row;
  3603. }
  3604. .navbar-expand-xl .navbar-nav .dropdown-menu {
  3605. position: absolute;
  3606. }
  3607. .navbar-expand-xl .navbar-nav .nav-link {
  3608. padding-right: 0.5rem;
  3609. padding-left: 0.5rem;
  3610. }
  3611. .navbar-expand-xl .navbar-nav-scroll {
  3612. overflow: visible;
  3613. }
  3614. .navbar-expand-xl .navbar-collapse {
  3615. display: flex !important;
  3616. flex-basis: auto;
  3617. }
  3618. .navbar-expand-xl .navbar-toggler {
  3619. display: none;
  3620. }
  3621. }
  3622. @media (min-width: 1400px) {
  3623. .navbar-expand-xxl {
  3624. flex-wrap: nowrap;
  3625. justify-content: flex-start;
  3626. }
  3627. .navbar-expand-xxl .navbar-nav {
  3628. flex-direction: row;
  3629. }
  3630. .navbar-expand-xxl .navbar-nav .dropdown-menu {
  3631. position: absolute;
  3632. }
  3633. .navbar-expand-xxl .navbar-nav .nav-link {
  3634. padding-right: 0.5rem;
  3635. padding-left: 0.5rem;
  3636. }
  3637. .navbar-expand-xxl .navbar-nav-scroll {
  3638. overflow: visible;
  3639. }
  3640. .navbar-expand-xxl .navbar-collapse {
  3641. display: flex !important;
  3642. flex-basis: auto;
  3643. }
  3644. .navbar-expand-xxl .navbar-toggler {
  3645. display: none;
  3646. }
  3647. }
  3648. .navbar-expand {
  3649. flex-wrap: nowrap;
  3650. justify-content: flex-start;
  3651. }
  3652. .navbar-expand .navbar-nav {
  3653. flex-direction: row;
  3654. }
  3655. .navbar-expand .navbar-nav .dropdown-menu {
  3656. position: absolute;
  3657. }
  3658. .navbar-expand .navbar-nav .nav-link {
  3659. padding-right: 0.5rem;
  3660. padding-left: 0.5rem;
  3661. }
  3662. .navbar-expand .navbar-nav-scroll {
  3663. overflow: visible;
  3664. }
  3665. .navbar-expand .navbar-collapse {
  3666. display: flex !important;
  3667. flex-basis: auto;
  3668. }
  3669. .navbar-expand .navbar-toggler {
  3670. display: none;
  3671. }
  3672. .navbar-light .navbar-brand {
  3673. color: rgba(0, 0, 0, 0.9);
  3674. }
  3675. .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  3676. color: rgba(0, 0, 0, 0.9);
  3677. }
  3678. .navbar-light .navbar-nav .nav-link {
  3679. color: rgba(0, 0, 0, 0.55);
  3680. }
  3681. .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  3682. color: rgba(0, 0, 0, 0.7);
  3683. }
  3684. .navbar-light .navbar-nav .nav-link.disabled {
  3685. color: rgba(0, 0, 0, 0.3);
  3686. }
  3687. .navbar-light .navbar-nav .show > .nav-link,
  3688. .navbar-light .navbar-nav .nav-link.active {
  3689. color: rgba(0, 0, 0, 0.9);
  3690. }
  3691. .navbar-light .navbar-toggler {
  3692. color: rgba(0, 0, 0, 0.55);
  3693. border-color: rgba(0, 0, 0, 0.1);
  3694. }
  3695. .navbar-light .navbar-toggler-icon {
  3696. 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");
  3697. }
  3698. .navbar-light .navbar-text {
  3699. color: rgba(0, 0, 0, 0.55);
  3700. }
  3701. .navbar-light .navbar-text a,
  3702. .navbar-light .navbar-text a:hover,
  3703. .navbar-light .navbar-text a:focus {
  3704. color: rgba(0, 0, 0, 0.9);
  3705. }
  3706. .navbar-dark .navbar-brand {
  3707. color: #fff;
  3708. }
  3709. .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  3710. color: #fff;
  3711. }
  3712. .navbar-dark .navbar-nav .nav-link {
  3713. color: rgba(255, 255, 255, 0.55);
  3714. }
  3715. .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  3716. color: rgba(255, 255, 255, 0.75);
  3717. }
  3718. .navbar-dark .navbar-nav .nav-link.disabled {
  3719. color: rgba(255, 255, 255, 0.25);
  3720. }
  3721. .navbar-dark .navbar-nav .show > .nav-link,
  3722. .navbar-dark .navbar-nav .nav-link.active {
  3723. color: #fff;
  3724. }
  3725. .navbar-dark .navbar-toggler {
  3726. color: rgba(255, 255, 255, 0.55);
  3727. border-color: rgba(255, 255, 255, 0.1);
  3728. }
  3729. .navbar-dark .navbar-toggler-icon {
  3730. 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");
  3731. }
  3732. .navbar-dark .navbar-text {
  3733. color: rgba(255, 255, 255, 0.55);
  3734. }
  3735. .navbar-dark .navbar-text a,
  3736. .navbar-dark .navbar-text a:hover,
  3737. .navbar-dark .navbar-text a:focus {
  3738. color: #fff;
  3739. }
  3740. .card {
  3741. position: relative;
  3742. display: flex;
  3743. flex-direction: column;
  3744. min-width: 0;
  3745. word-wrap: break-word;
  3746. background-color: #fff;
  3747. background-clip: border-box;
  3748. border: 1px solid rgba(0, 0, 0, 0.125);
  3749. border-radius: 0.25rem;
  3750. }
  3751. .card > hr {
  3752. margin-right: 0;
  3753. margin-left: 0;
  3754. }
  3755. .card > .list-group {
  3756. border-top: inherit;
  3757. border-bottom: inherit;
  3758. }
  3759. .card > .list-group:first-child {
  3760. border-top-width: 0;
  3761. border-top-left-radius: calc(0.25rem - 1px);
  3762. border-top-right-radius: calc(0.25rem - 1px);
  3763. }
  3764. .card > .list-group:last-child {
  3765. border-bottom-width: 0;
  3766. border-bottom-right-radius: calc(0.25rem - 1px);
  3767. border-bottom-left-radius: calc(0.25rem - 1px);
  3768. }
  3769. .card > .card-header + .list-group,
  3770. .card > .list-group + .card-footer {
  3771. border-top: 0;
  3772. }
  3773. .card-body {
  3774. flex: 1 1 auto;
  3775. padding: 1rem 1rem;
  3776. }
  3777. .card-title {
  3778. margin-bottom: 0.5rem;
  3779. }
  3780. .card-subtitle {
  3781. margin-top: -0.25rem;
  3782. margin-bottom: 0;
  3783. }
  3784. .card-text:last-child {
  3785. margin-bottom: 0;
  3786. }
  3787. .card-link:hover {
  3788. text-decoration: none;
  3789. }
  3790. .card-link + .card-link {
  3791. margin-left: 1rem /* rtl:ignore */;
  3792. }
  3793. .card-header {
  3794. padding: 0.5rem 1rem;
  3795. margin-bottom: 0;
  3796. background-color: rgba(0, 0, 0, 0.03);
  3797. border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  3798. }
  3799. .card-header:first-child {
  3800. border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
  3801. }
  3802. .card-footer {
  3803. padding: 0.5rem 1rem;
  3804. background-color: rgba(0, 0, 0, 0.03);
  3805. border-top: 1px solid rgba(0, 0, 0, 0.125);
  3806. }
  3807. .card-footer:last-child {
  3808. border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
  3809. }
  3810. .card-header-tabs {
  3811. margin-right: -0.5rem;
  3812. margin-bottom: -0.5rem;
  3813. margin-left: -0.5rem;
  3814. border-bottom: 0;
  3815. }
  3816. .card-header-pills {
  3817. margin-right: -0.5rem;
  3818. margin-left: -0.5rem;
  3819. }
  3820. .card-img-overlay {
  3821. position: absolute;
  3822. top: 0;
  3823. right: 0;
  3824. bottom: 0;
  3825. left: 0;
  3826. padding: 1rem;
  3827. border-radius: calc(0.25rem - 1px);
  3828. }
  3829. .card-img,
  3830. .card-img-top,
  3831. .card-img-bottom {
  3832. width: 100%;
  3833. }
  3834. .card-img,
  3835. .card-img-top {
  3836. border-top-left-radius: calc(0.25rem - 1px);
  3837. border-top-right-radius: calc(0.25rem - 1px);
  3838. }
  3839. .card-img,
  3840. .card-img-bottom {
  3841. border-bottom-right-radius: calc(0.25rem - 1px);
  3842. border-bottom-left-radius: calc(0.25rem - 1px);
  3843. }
  3844. .card-group > .card {
  3845. margin-bottom: 0.75rem;
  3846. }
  3847. @media (min-width: 576px) {
  3848. .card-group {
  3849. display: flex;
  3850. flex-flow: row wrap;
  3851. }
  3852. .card-group > .card {
  3853. flex: 1 0 0%;
  3854. margin-bottom: 0;
  3855. }
  3856. .card-group > .card + .card {
  3857. margin-left: 0;
  3858. border-left: 0;
  3859. }
  3860. .card-group > .card:not(:last-child) {
  3861. border-top-right-radius: 0;
  3862. border-bottom-right-radius: 0;
  3863. }
  3864. .card-group > .card:not(:last-child) .card-img-top,
  3865. .card-group > .card:not(:last-child) .card-header {
  3866. border-top-right-radius: 0;
  3867. }
  3868. .card-group > .card:not(:last-child) .card-img-bottom,
  3869. .card-group > .card:not(:last-child) .card-footer {
  3870. border-bottom-right-radius: 0;
  3871. }
  3872. .card-group > .card:not(:first-child) {
  3873. border-top-left-radius: 0;
  3874. border-bottom-left-radius: 0;
  3875. }
  3876. .card-group > .card:not(:first-child) .card-img-top,
  3877. .card-group > .card:not(:first-child) .card-header {
  3878. border-top-left-radius: 0;
  3879. }
  3880. .card-group > .card:not(:first-child) .card-img-bottom,
  3881. .card-group > .card:not(:first-child) .card-footer {
  3882. border-bottom-left-radius: 0;
  3883. }
  3884. }
  3885. .accordion-button {
  3886. position: relative;
  3887. display: flex;
  3888. align-items: center;
  3889. width: 100%;
  3890. padding: 1rem 1.25rem;
  3891. font-size: 1rem;
  3892. color: #212529;
  3893. text-align: left;
  3894. background-color: transparent;
  3895. border: 1px solid rgba(0, 0, 0, 0.125);
  3896. border-radius: 0;
  3897. overflow-anchor: none;
  3898. 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;
  3899. }
  3900. @media (prefers-reduced-motion: reduce) {
  3901. .accordion-button {
  3902. transition: none;
  3903. }
  3904. }
  3905. .accordion-button.collapsed {
  3906. border-bottom-width: 0;
  3907. }
  3908. .accordion-button:not(.collapsed) {
  3909. color: #0c63e4;
  3910. background-color: #e7f1ff;
  3911. }
  3912. .accordion-button:not(.collapsed)::after {
  3913. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%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");
  3914. transform: rotate(180deg);
  3915. }
  3916. .accordion-button::after {
  3917. flex-shrink: 0;
  3918. width: 1.25rem;
  3919. height: 1.25rem;
  3920. margin-left: auto;
  3921. content: "";
  3922. 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");
  3923. background-repeat: no-repeat;
  3924. background-size: 1.25rem;
  3925. transition: transform 0.2s ease-in-out;
  3926. }
  3927. @media (prefers-reduced-motion: reduce) {
  3928. .accordion-button::after {
  3929. transition: none;
  3930. }
  3931. }
  3932. .accordion-button:hover {
  3933. z-index: 2;
  3934. }
  3935. .accordion-button:focus {
  3936. z-index: 3;
  3937. border-color: #86b7fe;
  3938. outline: 0;
  3939. box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  3940. }
  3941. .accordion-header {
  3942. margin-bottom: 0;
  3943. }
  3944. .accordion-item:first-of-type .accordion-button {
  3945. border-top-left-radius: 0.25rem;
  3946. border-top-right-radius: 0.25rem;
  3947. }
  3948. .accordion-item:last-of-type .accordion-button.collapsed {
  3949. border-bottom-width: 1px;
  3950. border-bottom-right-radius: 0.25rem;
  3951. border-bottom-left-radius: 0.25rem;
  3952. }
  3953. .accordion-item:last-of-type .accordion-collapse {
  3954. border-bottom-width: 1px;
  3955. border-bottom-right-radius: 0.25rem;
  3956. border-bottom-left-radius: 0.25rem;
  3957. }
  3958. .accordion-collapse {
  3959. border: solid rgba(0, 0, 0, 0.125);
  3960. border-width: 0 1px;
  3961. }
  3962. .accordion-body {
  3963. padding: 1rem 1.25rem;
  3964. }
  3965. .accordion-flush .accordion-button {
  3966. border-right: 0;
  3967. border-left: 0;
  3968. border-radius: 0;
  3969. }
  3970. .accordion-flush .accordion-collapse {
  3971. border-width: 0;
  3972. }
  3973. .accordion-flush .accordion-item:first-of-type .accordion-button {
  3974. border-top-width: 0;
  3975. border-top-left-radius: 0;
  3976. border-top-right-radius: 0;
  3977. }
  3978. .accordion-flush .accordion-item:last-of-type .accordion-button.collapsed {
  3979. border-bottom-width: 0;
  3980. border-bottom-right-radius: 0;
  3981. border-bottom-left-radius: 0;
  3982. }
  3983. .breadcrumb {
  3984. display: flex;
  3985. flex-wrap: wrap;
  3986. padding: 0 0;
  3987. margin-bottom: 1rem;
  3988. list-style: none;
  3989. }
  3990. .breadcrumb-item + .breadcrumb-item {
  3991. padding-left: 0.5rem;
  3992. }
  3993. .breadcrumb-item + .breadcrumb-item::before {
  3994. float: left;
  3995. padding-right: 0.5rem;
  3996. color: #6c757d;
  3997. content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
  3998. }
  3999. .breadcrumb-item.active {
  4000. color: #6c757d;
  4001. }
  4002. .pagination {
  4003. display: flex;
  4004. padding-left: 0;
  4005. list-style: none;
  4006. }
  4007. .page-link {
  4008. position: relative;
  4009. display: block;
  4010. color: #0d6efd;
  4011. text-decoration: none;
  4012. background-color: #fff;
  4013. border: 1px solid #dee2e6;
  4014. 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;
  4015. }
  4016. @media (prefers-reduced-motion: reduce) {
  4017. .page-link {
  4018. transition: none;
  4019. }
  4020. }
  4021. .page-link:hover {
  4022. z-index: 2;
  4023. color: #0a58ca;
  4024. background-color: #e9ecef;
  4025. border-color: #dee2e6;
  4026. }
  4027. .page-link:focus {
  4028. z-index: 3;
  4029. color: #0a58ca;
  4030. background-color: #e9ecef;
  4031. outline: 0;
  4032. box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  4033. }
  4034. .page-item:not(:first-child) .page-link {
  4035. margin-left: -1px;
  4036. }
  4037. .page-item.active .page-link {
  4038. z-index: 3;
  4039. color: #fff;
  4040. background-color: #0d6efd;
  4041. border-color: #0d6efd;
  4042. }
  4043. .page-item.disabled .page-link {
  4044. color: #6c757d;
  4045. pointer-events: none;
  4046. background-color: #fff;
  4047. border-color: #dee2e6;
  4048. }
  4049. .page-link {
  4050. padding: 0.375rem 0.75rem;
  4051. }
  4052. .page-item:first-child .page-link {
  4053. border-top-left-radius: 0.25rem;
  4054. border-bottom-left-radius: 0.25rem;
  4055. }
  4056. .page-item:last-child .page-link {
  4057. border-top-right-radius: 0.25rem;
  4058. border-bottom-right-radius: 0.25rem;
  4059. }
  4060. .pagination-lg .page-link {
  4061. padding: 0.75rem 1.5rem;
  4062. font-size: 1.25rem;
  4063. }
  4064. .pagination-lg .page-item:first-child .page-link {
  4065. border-top-left-radius: 0.3rem;
  4066. border-bottom-left-radius: 0.3rem;
  4067. }
  4068. .pagination-lg .page-item:last-child .page-link {
  4069. border-top-right-radius: 0.3rem;
  4070. border-bottom-right-radius: 0.3rem;
  4071. }
  4072. .pagination-sm .page-link {
  4073. padding: 0.25rem 0.5rem;
  4074. font-size: 0.875rem;
  4075. }
  4076. .pagination-sm .page-item:first-child .page-link {
  4077. border-top-left-radius: 0.2rem;
  4078. border-bottom-left-radius: 0.2rem;
  4079. }
  4080. .pagination-sm .page-item:last-child .page-link {
  4081. border-top-right-radius: 0.2rem;
  4082. border-bottom-right-radius: 0.2rem;
  4083. }
  4084. .badge {
  4085. display: inline-block;
  4086. padding: 0.35em 0.65em;
  4087. font-size: 0.75em;
  4088. font-weight: 700;
  4089. line-height: 1;
  4090. color: #fff;
  4091. text-align: center;
  4092. white-space: nowrap;
  4093. vertical-align: baseline;
  4094. border-radius: 0.25rem;
  4095. }
  4096. .badge:empty {
  4097. display: none;
  4098. }
  4099. .btn .badge {
  4100. position: relative;
  4101. top: -1px;
  4102. }
  4103. .alert {
  4104. position: relative;
  4105. padding: 1rem 1rem;
  4106. margin-bottom: 1rem;
  4107. border: 1px solid transparent;
  4108. border-radius: 0.25rem;
  4109. }
  4110. .alert-heading {
  4111. color: inherit;
  4112. }
  4113. .alert-link {
  4114. font-weight: 700;
  4115. }
  4116. .alert-dismissible {
  4117. padding-right: 3rem;
  4118. }
  4119. .alert-dismissible .btn-close {
  4120. position: absolute;
  4121. top: 0;
  4122. right: 0;
  4123. z-index: 2;
  4124. padding: 1.25rem 1rem;
  4125. }
  4126. .alert-primary {
  4127. color: #084298;
  4128. background-color: #cfe2ff;
  4129. border-color: #b6d4fe;
  4130. }
  4131. .alert-primary .alert-link {
  4132. color: #06357a;
  4133. }
  4134. .alert-secondary {
  4135. color: #41464b;
  4136. background-color: #e2e3e5;
  4137. border-color: #d3d6d8;
  4138. }
  4139. .alert-secondary .alert-link {
  4140. color: #34383c;
  4141. }
  4142. .alert-success {
  4143. color: #0f5132;
  4144. background-color: #d1e7dd;
  4145. border-color: #badbcc;
  4146. }
  4147. .alert-success .alert-link {
  4148. color: #0c4128;
  4149. }
  4150. .alert-info {
  4151. color: #055160;
  4152. background-color: #cff4fc;
  4153. border-color: #b6effb;
  4154. }
  4155. .alert-info .alert-link {
  4156. color: #04414d;
  4157. }
  4158. .alert-warning {
  4159. color: #664d03;
  4160. background-color: #fff3cd;
  4161. border-color: #ffecb5;
  4162. }
  4163. .alert-warning .alert-link {
  4164. color: #523e02;
  4165. }
  4166. .alert-danger {
  4167. color: #842029;
  4168. background-color: #f8d7da;
  4169. border-color: #f5c2c7;
  4170. }
  4171. .alert-danger .alert-link {
  4172. color: #6a1a21;
  4173. }
  4174. .alert-light {
  4175. color: #636464;
  4176. background-color: #fefefe;
  4177. border-color: #fdfdfe;
  4178. }
  4179. .alert-light .alert-link {
  4180. color: #4f5050;
  4181. }
  4182. .alert-dark {
  4183. color: #141619;
  4184. background-color: #d3d3d4;
  4185. border-color: #bcbebf;
  4186. }
  4187. .alert-dark .alert-link {
  4188. color: #101214;
  4189. }
  4190. @-webkit-keyframes progress-bar-stripes {
  4191. 0% {
  4192. background-position-x: 1rem;
  4193. }
  4194. }
  4195. @keyframes progress-bar-stripes {
  4196. 0% {
  4197. background-position-x: 1rem;
  4198. }
  4199. }
  4200. .progress {
  4201. display: flex;
  4202. height: 1rem;
  4203. overflow: hidden;
  4204. font-size: 0.75rem;
  4205. background-color: #e9ecef;
  4206. border-radius: 0.25rem;
  4207. }
  4208. .progress-bar {
  4209. display: flex;
  4210. flex-direction: column;
  4211. justify-content: center;
  4212. overflow: hidden;
  4213. color: #fff;
  4214. text-align: center;
  4215. white-space: nowrap;
  4216. background-color: #0d6efd;
  4217. transition: width 0.6s ease;
  4218. }
  4219. @media (prefers-reduced-motion: reduce) {
  4220. .progress-bar {
  4221. transition: none;
  4222. }
  4223. }
  4224. .progress-bar-striped {
  4225. 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);
  4226. background-size: 1rem 1rem;
  4227. }
  4228. .progress-bar-animated {
  4229. -webkit-animation: 1s linear infinite progress-bar-stripes;
  4230. animation: 1s linear infinite progress-bar-stripes;
  4231. }
  4232. @media (prefers-reduced-motion: reduce) {
  4233. .progress-bar-animated {
  4234. -webkit-animation: none;
  4235. animation: none;
  4236. }
  4237. }
  4238. .list-group {
  4239. display: flex;
  4240. flex-direction: column;
  4241. padding-left: 0;
  4242. margin-bottom: 0;
  4243. border-radius: 0.25rem;
  4244. }
  4245. .list-group-item-action {
  4246. width: 100%;
  4247. color: #495057;
  4248. text-align: inherit;
  4249. }
  4250. .list-group-item-action:hover, .list-group-item-action:focus {
  4251. z-index: 1;
  4252. color: #495057;
  4253. text-decoration: none;
  4254. background-color: #f8f9fa;
  4255. }
  4256. .list-group-item-action:active {
  4257. color: #212529;
  4258. background-color: #e9ecef;
  4259. }
  4260. .list-group-item {
  4261. position: relative;
  4262. display: block;
  4263. padding: 0.5rem 1rem;
  4264. text-decoration: none;
  4265. background-color: #fff;
  4266. border: 1px solid rgba(0, 0, 0, 0.125);
  4267. }
  4268. .list-group-item:first-child {
  4269. border-top-left-radius: inherit;
  4270. border-top-right-radius: inherit;
  4271. }
  4272. .list-group-item:last-child {
  4273. border-bottom-right-radius: inherit;
  4274. border-bottom-left-radius: inherit;
  4275. }
  4276. .list-group-item.disabled, .list-group-item:disabled {
  4277. color: #6c757d;
  4278. pointer-events: none;
  4279. background-color: #fff;
  4280. }
  4281. .list-group-item.active {
  4282. z-index: 2;
  4283. color: #fff;
  4284. background-color: #0d6efd;
  4285. border-color: #0d6efd;
  4286. }
  4287. .list-group-item + .list-group-item {
  4288. border-top-width: 0;
  4289. }
  4290. .list-group-item + .list-group-item.active {
  4291. margin-top: -1px;
  4292. border-top-width: 1px;
  4293. }
  4294. .list-group-horizontal {
  4295. flex-direction: row;
  4296. }
  4297. .list-group-horizontal > .list-group-item:first-child {
  4298. border-bottom-left-radius: 0.25rem;
  4299. border-top-right-radius: 0;
  4300. }
  4301. .list-group-horizontal > .list-group-item:last-child {
  4302. border-top-right-radius: 0.25rem;
  4303. border-bottom-left-radius: 0;
  4304. }
  4305. .list-group-horizontal > .list-group-item.active {
  4306. margin-top: 0;
  4307. }
  4308. .list-group-horizontal > .list-group-item + .list-group-item {
  4309. border-top-width: 1px;
  4310. border-left-width: 0;
  4311. }
  4312. .list-group-horizontal > .list-group-item + .list-group-item.active {
  4313. margin-left: -1px;
  4314. border-left-width: 1px;
  4315. }
  4316. @media (min-width: 576px) {
  4317. .list-group-horizontal-sm {
  4318. flex-direction: row;
  4319. }
  4320. .list-group-horizontal-sm > .list-group-item:first-child {
  4321. border-bottom-left-radius: 0.25rem;
  4322. border-top-right-radius: 0;
  4323. }
  4324. .list-group-horizontal-sm > .list-group-item:last-child {
  4325. border-top-right-radius: 0.25rem;
  4326. border-bottom-left-radius: 0;
  4327. }
  4328. .list-group-horizontal-sm > .list-group-item.active {
  4329. margin-top: 0;
  4330. }
  4331. .list-group-horizontal-sm > .list-group-item + .list-group-item {
  4332. border-top-width: 1px;
  4333. border-left-width: 0;
  4334. }
  4335. .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
  4336. margin-left: -1px;
  4337. border-left-width: 1px;
  4338. }
  4339. }
  4340. @media (min-width: 768px) {
  4341. .list-group-horizontal-md {
  4342. flex-direction: row;
  4343. }
  4344. .list-group-horizontal-md > .list-group-item:first-child {
  4345. border-bottom-left-radius: 0.25rem;
  4346. border-top-right-radius: 0;
  4347. }
  4348. .list-group-horizontal-md > .list-group-item:last-child {
  4349. border-top-right-radius: 0.25rem;
  4350. border-bottom-left-radius: 0;
  4351. }
  4352. .list-group-horizontal-md > .list-group-item.active {
  4353. margin-top: 0;
  4354. }
  4355. .list-group-horizontal-md > .list-group-item + .list-group-item {
  4356. border-top-width: 1px;
  4357. border-left-width: 0;
  4358. }
  4359. .list-group-horizontal-md > .list-group-item + .list-group-item.active {
  4360. margin-left: -1px;
  4361. border-left-width: 1px;
  4362. }
  4363. }
  4364. @media (min-width: 992px) {
  4365. .list-group-horizontal-lg {
  4366. flex-direction: row;
  4367. }
  4368. .list-group-horizontal-lg > .list-group-item:first-child {
  4369. border-bottom-left-radius: 0.25rem;
  4370. border-top-right-radius: 0;
  4371. }
  4372. .list-group-horizontal-lg > .list-group-item:last-child {
  4373. border-top-right-radius: 0.25rem;
  4374. border-bottom-left-radius: 0;
  4375. }
  4376. .list-group-horizontal-lg > .list-group-item.active {
  4377. margin-top: 0;
  4378. }
  4379. .list-group-horizontal-lg > .list-group-item + .list-group-item {
  4380. border-top-width: 1px;
  4381. border-left-width: 0;
  4382. }
  4383. .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
  4384. margin-left: -1px;
  4385. border-left-width: 1px;
  4386. }
  4387. }
  4388. @media (min-width: 1200px) {
  4389. .list-group-horizontal-xl {
  4390. flex-direction: row;
  4391. }
  4392. .list-group-horizontal-xl > .list-group-item:first-child {
  4393. border-bottom-left-radius: 0.25rem;
  4394. border-top-right-radius: 0;
  4395. }
  4396. .list-group-horizontal-xl > .list-group-item:last-child {
  4397. border-top-right-radius: 0.25rem;
  4398. border-bottom-left-radius: 0;
  4399. }
  4400. .list-group-horizontal-xl > .list-group-item.active {
  4401. margin-top: 0;
  4402. }
  4403. .list-group-horizontal-xl > .list-group-item + .list-group-item {
  4404. border-top-width: 1px;
  4405. border-left-width: 0;
  4406. }
  4407. .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
  4408. margin-left: -1px;
  4409. border-left-width: 1px;
  4410. }
  4411. }
  4412. @media (min-width: 1400px) {
  4413. .list-group-horizontal-xxl {
  4414. flex-direction: row;
  4415. }
  4416. .list-group-horizontal-xxl > .list-group-item:first-child {
  4417. border-bottom-left-radius: 0.25rem;
  4418. border-top-right-radius: 0;
  4419. }
  4420. .list-group-horizontal-xxl > .list-group-item:last-child {
  4421. border-top-right-radius: 0.25rem;
  4422. border-bottom-left-radius: 0;
  4423. }
  4424. .list-group-horizontal-xxl > .list-group-item.active {
  4425. margin-top: 0;
  4426. }
  4427. .list-group-horizontal-xxl > .list-group-item + .list-group-item {
  4428. border-top-width: 1px;
  4429. border-left-width: 0;
  4430. }
  4431. .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
  4432. margin-left: -1px;
  4433. border-left-width: 1px;
  4434. }
  4435. }
  4436. .list-group-flush {
  4437. border-radius: 0;
  4438. }
  4439. .list-group-flush > .list-group-item {
  4440. border-width: 0 0 1px;
  4441. }
  4442. .list-group-flush > .list-group-item:last-child {
  4443. border-bottom-width: 0;
  4444. }
  4445. .list-group-item-primary {
  4446. color: #084298;
  4447. background-color: #cfe2ff;
  4448. }
  4449. .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  4450. color: #084298;
  4451. background-color: #bacbe6;
  4452. }
  4453. .list-group-item-primary.list-group-item-action.active {
  4454. color: #fff;
  4455. background-color: #084298;
  4456. border-color: #084298;
  4457. }
  4458. .list-group-item-secondary {
  4459. color: #41464b;
  4460. background-color: #e2e3e5;
  4461. }
  4462. .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  4463. color: #41464b;
  4464. background-color: #cbccce;
  4465. }
  4466. .list-group-item-secondary.list-group-item-action.active {
  4467. color: #fff;
  4468. background-color: #41464b;
  4469. border-color: #41464b;
  4470. }
  4471. .list-group-item-success {
  4472. color: #0f5132;
  4473. background-color: #d1e7dd;
  4474. }
  4475. .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  4476. color: #0f5132;
  4477. background-color: #bcd0c7;
  4478. }
  4479. .list-group-item-success.list-group-item-action.active {
  4480. color: #fff;
  4481. background-color: #0f5132;
  4482. border-color: #0f5132;
  4483. }
  4484. .list-group-item-info {
  4485. color: #055160;
  4486. background-color: #cff4fc;
  4487. }
  4488. .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  4489. color: #055160;
  4490. background-color: #badce3;
  4491. }
  4492. .list-group-item-info.list-group-item-action.active {
  4493. color: #fff;
  4494. background-color: #055160;
  4495. border-color: #055160;
  4496. }
  4497. .list-group-item-warning {
  4498. color: #664d03;
  4499. background-color: #fff3cd;
  4500. }
  4501. .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  4502. color: #664d03;
  4503. background-color: #e6dbb9;
  4504. }
  4505. .list-group-item-warning.list-group-item-action.active {
  4506. color: #fff;
  4507. background-color: #664d03;
  4508. border-color: #664d03;
  4509. }
  4510. .list-group-item-danger {
  4511. color: #842029;
  4512. background-color: #f8d7da;
  4513. }
  4514. .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  4515. color: #842029;
  4516. background-color: #dfc2c4;
  4517. }
  4518. .list-group-item-danger.list-group-item-action.active {
  4519. color: #fff;
  4520. background-color: #842029;
  4521. border-color: #842029;
  4522. }
  4523. .list-group-item-light {
  4524. color: #636464;
  4525. background-color: #fefefe;
  4526. }
  4527. .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  4528. color: #636464;
  4529. background-color: #e5e5e5;
  4530. }
  4531. .list-group-item-light.list-group-item-action.active {
  4532. color: #fff;
  4533. background-color: #636464;
  4534. border-color: #636464;
  4535. }
  4536. .list-group-item-dark {
  4537. color: #141619;
  4538. background-color: #d3d3d4;
  4539. }
  4540. .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  4541. color: #141619;
  4542. background-color: #bebebf;
  4543. }
  4544. .list-group-item-dark.list-group-item-action.active {
  4545. color: #fff;
  4546. background-color: #141619;
  4547. border-color: #141619;
  4548. }
  4549. .btn-close {
  4550. box-sizing: content-box;
  4551. width: 1em;
  4552. height: 1em;
  4553. padding: 0.25em 0.25em;
  4554. color: #000;
  4555. 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;
  4556. border: 0;
  4557. border-radius: 0.25rem;
  4558. opacity: 0.5;
  4559. }
  4560. .btn-close:hover {
  4561. color: #000;
  4562. text-decoration: none;
  4563. opacity: 0.75;
  4564. }
  4565. .btn-close:focus {
  4566. outline: 0;
  4567. box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  4568. opacity: 1;
  4569. }
  4570. .btn-close:disabled, .btn-close.disabled {
  4571. pointer-events: none;
  4572. -webkit-user-select: none;
  4573. -moz-user-select: none;
  4574. user-select: none;
  4575. opacity: 0.25;
  4576. }
  4577. .btn-close-white {
  4578. filter: invert(1) grayscale(100%) brightness(200%);
  4579. }
  4580. .toast {
  4581. width: 350px;
  4582. max-width: 100%;
  4583. font-size: 0.875rem;
  4584. pointer-events: auto;
  4585. background-color: rgba(255, 255, 255, 0.85);
  4586. background-clip: padding-box;
  4587. border: 1px solid rgba(0, 0, 0, 0.1);
  4588. box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  4589. border-radius: 0.25rem;
  4590. }
  4591. .toast:not(.showing):not(.show) {
  4592. opacity: 0;
  4593. }
  4594. .toast.hide {
  4595. display: none;
  4596. }
  4597. .toast-container {
  4598. width: -webkit-max-content;
  4599. width: -moz-max-content;
  4600. width: max-content;
  4601. max-width: 100%;
  4602. pointer-events: none;
  4603. }
  4604. .toast-container > :not(:last-child) {
  4605. margin-bottom: 0.75rem;
  4606. }
  4607. .toast-header {
  4608. display: flex;
  4609. align-items: center;
  4610. padding: 0.5rem 0.75rem;
  4611. color: #6c757d;
  4612. background-color: rgba(255, 255, 255, 0.85);
  4613. background-clip: padding-box;
  4614. border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  4615. border-top-left-radius: calc(0.25rem - 1px);
  4616. border-top-right-radius: calc(0.25rem - 1px);
  4617. }
  4618. .toast-header .btn-close {
  4619. margin-right: -0.375rem;
  4620. margin-left: 0.75rem;
  4621. }
  4622. .toast-body {
  4623. padding: 0.75rem;
  4624. word-wrap: break-word;
  4625. }
  4626. .modal-open {
  4627. overflow: hidden;
  4628. }
  4629. .modal-open .modal {
  4630. overflow-x: hidden;
  4631. overflow-y: auto;
  4632. }
  4633. .modal {
  4634. position: fixed;
  4635. top: 0;
  4636. left: 0;
  4637. z-index: 1050;
  4638. display: none;
  4639. width: 100%;
  4640. height: 100%;
  4641. overflow: hidden;
  4642. outline: 0;
  4643. }
  4644. .modal-dialog {
  4645. position: relative;
  4646. width: auto;
  4647. margin: 0.5rem;
  4648. pointer-events: none;
  4649. }
  4650. .modal.fade .modal-dialog {
  4651. transition: transform 0.3s ease-out;
  4652. transform: translate(0, -50px);
  4653. }
  4654. @media (prefers-reduced-motion: reduce) {
  4655. .modal.fade .modal-dialog {
  4656. transition: none;
  4657. }
  4658. }
  4659. .modal.show .modal-dialog {
  4660. transform: none;
  4661. }
  4662. .modal.modal-static .modal-dialog {
  4663. transform: scale(1.02);
  4664. }
  4665. .modal-dialog-scrollable {
  4666. height: calc(100% - 1rem);
  4667. }
  4668. .modal-dialog-scrollable .modal-content {
  4669. max-height: 100%;
  4670. overflow: hidden;
  4671. }
  4672. .modal-dialog-scrollable .modal-body {
  4673. overflow-y: auto;
  4674. }
  4675. .modal-dialog-centered {
  4676. display: flex;
  4677. align-items: center;
  4678. min-height: calc(100% - 1rem);
  4679. }
  4680. .modal-content {
  4681. position: relative;
  4682. display: flex;
  4683. flex-direction: column;
  4684. width: 100%;
  4685. pointer-events: auto;
  4686. background-color: #fff;
  4687. background-clip: padding-box;
  4688. border: 1px solid rgba(0, 0, 0, 0.2);
  4689. border-radius: 0.3rem;
  4690. outline: 0;
  4691. }
  4692. .modal-backdrop {
  4693. position: fixed;
  4694. top: 0;
  4695. left: 0;
  4696. z-index: 1040;
  4697. width: 100vw;
  4698. height: 100vh;
  4699. background-color: #000;
  4700. }
  4701. .modal-backdrop.fade {
  4702. opacity: 0;
  4703. }
  4704. .modal-backdrop.show {
  4705. opacity: 0.5;
  4706. }
  4707. .modal-header {
  4708. display: flex;
  4709. flex-shrink: 0;
  4710. align-items: center;
  4711. justify-content: space-between;
  4712. padding: 1rem 1rem;
  4713. border-bottom: 1px solid #dee2e6;
  4714. border-top-left-radius: calc(0.3rem - 1px);
  4715. border-top-right-radius: calc(0.3rem - 1px);
  4716. }
  4717. .modal-header .btn-close {
  4718. padding: 0.5rem 0.5rem;
  4719. margin: -0.5rem -0.5rem -0.5rem auto;
  4720. }
  4721. .modal-title {
  4722. margin-bottom: 0;
  4723. line-height: 1.5;
  4724. }
  4725. .modal-body {
  4726. position: relative;
  4727. flex: 1 1 auto;
  4728. padding: 1rem;
  4729. }
  4730. .modal-footer {
  4731. display: flex;
  4732. flex-wrap: wrap;
  4733. flex-shrink: 0;
  4734. align-items: center;
  4735. justify-content: flex-end;
  4736. padding: 0.75rem;
  4737. border-top: 1px solid #dee2e6;
  4738. border-bottom-right-radius: calc(0.3rem - 1px);
  4739. border-bottom-left-radius: calc(0.3rem - 1px);
  4740. }
  4741. .modal-footer > * {
  4742. margin: 0.25rem;
  4743. }
  4744. .modal-scrollbar-measure {
  4745. position: absolute;
  4746. top: -9999px;
  4747. width: 50px;
  4748. height: 50px;
  4749. overflow: scroll;
  4750. }
  4751. @media (min-width: 576px) {
  4752. .modal-dialog {
  4753. max-width: 500px;
  4754. margin: 1.75rem auto;
  4755. }
  4756. .modal-dialog-scrollable {
  4757. height: calc(100% - 3.5rem);
  4758. }
  4759. .modal-dialog-centered {
  4760. min-height: calc(100% - 3.5rem);
  4761. }
  4762. .modal-sm {
  4763. max-width: 300px;
  4764. }
  4765. }
  4766. @media (min-width: 992px) {
  4767. .modal-lg,
  4768. .modal-xl {
  4769. max-width: 800px;
  4770. }
  4771. }
  4772. @media (min-width: 1200px) {
  4773. .modal-xl {
  4774. max-width: 1140px;
  4775. }
  4776. }
  4777. .modal-fullscreen {
  4778. width: 100vw;
  4779. max-width: none;
  4780. height: 100%;
  4781. margin: 0;
  4782. }
  4783. .modal-fullscreen .modal-content {
  4784. height: 100%;
  4785. border: 0;
  4786. border-radius: 0;
  4787. }
  4788. .modal-fullscreen .modal-header {
  4789. border-radius: 0;
  4790. }
  4791. .modal-fullscreen .modal-body {
  4792. overflow-y: auto;
  4793. }
  4794. .modal-fullscreen .modal-footer {
  4795. border-radius: 0;
  4796. }
  4797. @media (max-width: 575.98px) {
  4798. .modal-fullscreen-sm-down {
  4799. width: 100vw;
  4800. max-width: none;
  4801. height: 100%;
  4802. margin: 0;
  4803. }
  4804. .modal-fullscreen-sm-down .modal-content {
  4805. height: 100%;
  4806. border: 0;
  4807. border-radius: 0;
  4808. }
  4809. .modal-fullscreen-sm-down .modal-header {
  4810. border-radius: 0;
  4811. }
  4812. .modal-fullscreen-sm-down .modal-body {
  4813. overflow-y: auto;
  4814. }
  4815. .modal-fullscreen-sm-down .modal-footer {
  4816. border-radius: 0;
  4817. }
  4818. }
  4819. @media (max-width: 767.98px) {
  4820. .modal-fullscreen-md-down {
  4821. width: 100vw;
  4822. max-width: none;
  4823. height: 100%;
  4824. margin: 0;
  4825. }
  4826. .modal-fullscreen-md-down .modal-content {
  4827. height: 100%;
  4828. border: 0;
  4829. border-radius: 0;
  4830. }
  4831. .modal-fullscreen-md-down .modal-header {
  4832. border-radius: 0;
  4833. }
  4834. .modal-fullscreen-md-down .modal-body {
  4835. overflow-y: auto;
  4836. }
  4837. .modal-fullscreen-md-down .modal-footer {
  4838. border-radius: 0;
  4839. }
  4840. }
  4841. @media (max-width: 991.98px) {
  4842. .modal-fullscreen-lg-down {
  4843. width: 100vw;
  4844. max-width: none;
  4845. height: 100%;
  4846. margin: 0;
  4847. }
  4848. .modal-fullscreen-lg-down .modal-content {
  4849. height: 100%;
  4850. border: 0;
  4851. border-radius: 0;
  4852. }
  4853. .modal-fullscreen-lg-down .modal-header {
  4854. border-radius: 0;
  4855. }
  4856. .modal-fullscreen-lg-down .modal-body {
  4857. overflow-y: auto;
  4858. }
  4859. .modal-fullscreen-lg-down .modal-footer {
  4860. border-radius: 0;
  4861. }
  4862. }
  4863. @media (max-width: 1199.98px) {
  4864. .modal-fullscreen-xl-down {
  4865. width: 100vw;
  4866. max-width: none;
  4867. height: 100%;
  4868. margin: 0;
  4869. }
  4870. .modal-fullscreen-xl-down .modal-content {
  4871. height: 100%;
  4872. border: 0;
  4873. border-radius: 0;
  4874. }
  4875. .modal-fullscreen-xl-down .modal-header {
  4876. border-radius: 0;
  4877. }
  4878. .modal-fullscreen-xl-down .modal-body {
  4879. overflow-y: auto;
  4880. }
  4881. .modal-fullscreen-xl-down .modal-footer {
  4882. border-radius: 0;
  4883. }
  4884. }
  4885. @media (max-width: 1399.98px) {
  4886. .modal-fullscreen-xxl-down {
  4887. width: 100vw;
  4888. max-width: none;
  4889. height: 100%;
  4890. margin: 0;
  4891. }
  4892. .modal-fullscreen-xxl-down .modal-content {
  4893. height: 100%;
  4894. border: 0;
  4895. border-radius: 0;
  4896. }
  4897. .modal-fullscreen-xxl-down .modal-header {
  4898. border-radius: 0;
  4899. }
  4900. .modal-fullscreen-xxl-down .modal-body {
  4901. overflow-y: auto;
  4902. }
  4903. .modal-fullscreen-xxl-down .modal-footer {
  4904. border-radius: 0;
  4905. }
  4906. }
  4907. .tooltip {
  4908. position: absolute;
  4909. z-index: 1070;
  4910. display: block;
  4911. margin: 0;
  4912. font-family: var(--bs-font-sans-serif);
  4913. font-style: normal;
  4914. font-weight: 400;
  4915. line-height: 1.5;
  4916. text-align: left;
  4917. text-align: start;
  4918. text-decoration: none;
  4919. text-shadow: none;
  4920. text-transform: none;
  4921. letter-spacing: normal;
  4922. word-break: normal;
  4923. word-spacing: normal;
  4924. white-space: normal;
  4925. line-break: auto;
  4926. font-size: 0.875rem;
  4927. word-wrap: break-word;
  4928. opacity: 0;
  4929. }
  4930. .tooltip.show {
  4931. opacity: 0.9;
  4932. }
  4933. .tooltip .tooltip-arrow {
  4934. position: absolute;
  4935. display: block;
  4936. width: 0.8rem;
  4937. height: 0.4rem;
  4938. }
  4939. .tooltip .tooltip-arrow::before {
  4940. position: absolute;
  4941. content: "";
  4942. border-color: transparent;
  4943. border-style: solid;
  4944. }
  4945. .bs-tooltip-top, .bs-tooltip-auto[data-popper-placement^=top] {
  4946. padding: 0.4rem 0;
  4947. }
  4948. .bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  4949. bottom: 0;
  4950. }
  4951. .bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  4952. top: -1px;
  4953. border-width: 0.4rem 0.4rem 0;
  4954. border-top-color: #000;
  4955. }
  4956. .bs-tooltip-end, .bs-tooltip-auto[data-popper-placement^=right] {
  4957. padding: 0 0.4rem;
  4958. }
  4959. .bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  4960. left: 0;
  4961. width: 0.4rem;
  4962. height: 0.8rem;
  4963. }
  4964. .bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  4965. right: -1px;
  4966. border-width: 0.4rem 0.4rem 0.4rem 0;
  4967. border-right-color: #000;
  4968. }
  4969. .bs-tooltip-bottom, .bs-tooltip-auto[data-popper-placement^=bottom] {
  4970. padding: 0.4rem 0;
  4971. }
  4972. .bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  4973. top: 0;
  4974. }
  4975. .bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  4976. bottom: -1px;
  4977. border-width: 0 0.4rem 0.4rem;
  4978. border-bottom-color: #000;
  4979. }
  4980. .bs-tooltip-start, .bs-tooltip-auto[data-popper-placement^=left] {
  4981. padding: 0 0.4rem;
  4982. }
  4983. .bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  4984. right: 0;
  4985. width: 0.4rem;
  4986. height: 0.8rem;
  4987. }
  4988. .bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  4989. left: -1px;
  4990. border-width: 0.4rem 0 0.4rem 0.4rem;
  4991. border-left-color: #000;
  4992. }
  4993. .tooltip-inner {
  4994. max-width: 200px;
  4995. padding: 0.25rem 0.5rem;
  4996. color: #fff;
  4997. text-align: center;
  4998. background-color: #000;
  4999. border-radius: 0.25rem;
  5000. }
  5001. .popover {
  5002. position: absolute;
  5003. top: 0;
  5004. left: 0 /* rtl:ignore */;
  5005. z-index: 1060;
  5006. display: block;
  5007. max-width: 276px;
  5008. font-family: var(--bs-font-sans-serif);
  5009. font-style: normal;
  5010. font-weight: 400;
  5011. line-height: 1.5;
  5012. text-align: left;
  5013. text-align: start;
  5014. text-decoration: none;
  5015. text-shadow: none;
  5016. text-transform: none;
  5017. letter-spacing: normal;
  5018. word-break: normal;
  5019. word-spacing: normal;
  5020. white-space: normal;
  5021. line-break: auto;
  5022. font-size: 0.875rem;
  5023. word-wrap: break-word;
  5024. background-color: #fff;
  5025. background-clip: padding-box;
  5026. border: 1px solid rgba(0, 0, 0, 0.2);
  5027. border-radius: 0.3rem;
  5028. }
  5029. .popover .popover-arrow {
  5030. position: absolute;
  5031. display: block;
  5032. width: 1rem;
  5033. height: 0.5rem;
  5034. }
  5035. .popover .popover-arrow::before, .popover .popover-arrow::after {
  5036. position: absolute;
  5037. display: block;
  5038. content: "";
  5039. border-color: transparent;
  5040. border-style: solid;
  5041. }
  5042. .bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  5043. bottom: calc(-0.5rem - 1px);
  5044. }
  5045. .bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  5046. bottom: 0;
  5047. border-width: 0.5rem 0.5rem 0;
  5048. border-top-color: rgba(0, 0, 0, 0.25);
  5049. }
  5050. .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  5051. bottom: 1px;
  5052. border-width: 0.5rem 0.5rem 0;
  5053. border-top-color: #fff;
  5054. }
  5055. .bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  5056. left: calc(-0.5rem - 1px);
  5057. width: 0.5rem;
  5058. height: 1rem;
  5059. }
  5060. .bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  5061. left: 0;
  5062. border-width: 0.5rem 0.5rem 0.5rem 0;
  5063. border-right-color: rgba(0, 0, 0, 0.25);
  5064. }
  5065. .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  5066. left: 1px;
  5067. border-width: 0.5rem 0.5rem 0.5rem 0;
  5068. border-right-color: #fff;
  5069. }
  5070. .bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  5071. top: calc(-0.5rem - 1px);
  5072. }
  5073. .bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  5074. top: 0;
  5075. border-width: 0 0.5rem 0.5rem 0.5rem;
  5076. border-bottom-color: rgba(0, 0, 0, 0.25);
  5077. }
  5078. .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  5079. top: 1px;
  5080. border-width: 0 0.5rem 0.5rem 0.5rem;
  5081. border-bottom-color: #fff;
  5082. }
  5083. .bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  5084. position: absolute;
  5085. top: 0;
  5086. left: 50%;
  5087. display: block;
  5088. width: 1rem;
  5089. margin-left: -0.5rem;
  5090. content: "";
  5091. border-bottom: 1px solid #f0f0f0;
  5092. }
  5093. .bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  5094. right: calc(-0.5rem - 1px);
  5095. width: 0.5rem;
  5096. height: 1rem;
  5097. }
  5098. .bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  5099. right: 0;
  5100. border-width: 0.5rem 0 0.5rem 0.5rem;
  5101. border-left-color: rgba(0, 0, 0, 0.25);
  5102. }
  5103. .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  5104. right: 1px;
  5105. border-width: 0.5rem 0 0.5rem 0.5rem;
  5106. border-left-color: #fff;
  5107. }
  5108. .popover-header {
  5109. padding: 0.5rem 1rem;
  5110. margin-bottom: 0;
  5111. font-size: 1rem;
  5112. background-color: #f0f0f0;
  5113. border-bottom: 1px solid #d8d8d8;
  5114. border-top-left-radius: calc(0.3rem - 1px);
  5115. border-top-right-radius: calc(0.3rem - 1px);
  5116. }
  5117. .popover-header:empty {
  5118. display: none;
  5119. }
  5120. .popover-body {
  5121. padding: 1rem 1rem;
  5122. color: #212529;
  5123. }
  5124. .carousel {
  5125. position: relative;
  5126. }
  5127. .carousel.pointer-event {
  5128. touch-action: pan-y;
  5129. }
  5130. .carousel-inner {
  5131. position: relative;
  5132. width: 100%;
  5133. overflow: hidden;
  5134. }
  5135. .carousel-inner::after {
  5136. display: block;
  5137. clear: both;
  5138. content: "";
  5139. }
  5140. .carousel-item {
  5141. position: relative;
  5142. display: none;
  5143. float: left;
  5144. width: 100%;
  5145. margin-right: -100%;
  5146. -webkit-backface-visibility: hidden;
  5147. backface-visibility: hidden;
  5148. transition: transform 0.6s ease-in-out;
  5149. }
  5150. @media (prefers-reduced-motion: reduce) {
  5151. .carousel-item {
  5152. transition: none;
  5153. }
  5154. }
  5155. .carousel-item.active,
  5156. .carousel-item-next,
  5157. .carousel-item-prev {
  5158. display: block;
  5159. }
  5160. /* rtl:begin:ignore */
  5161. .carousel-item-next:not(.carousel-item-start),
  5162. .active.carousel-item-end {
  5163. transform: translateX(100%);
  5164. }
  5165. .carousel-item-prev:not(.carousel-item-end),
  5166. .active.carousel-item-start {
  5167. transform: translateX(-100%);
  5168. }
  5169. /* rtl:end:ignore */
  5170. .carousel-fade .carousel-item {
  5171. opacity: 0;
  5172. transition-property: opacity;
  5173. transform: none;
  5174. }
  5175. .carousel-fade .carousel-item.active,
  5176. .carousel-fade .carousel-item-next.carousel-item-start,
  5177. .carousel-fade .carousel-item-prev.carousel-item-end {
  5178. z-index: 1;
  5179. opacity: 1;
  5180. }
  5181. .carousel-fade .active.carousel-item-start,
  5182. .carousel-fade .active.carousel-item-end {
  5183. z-index: 0;
  5184. opacity: 0;
  5185. transition: opacity 0s 0.6s;
  5186. }
  5187. @media (prefers-reduced-motion: reduce) {
  5188. .carousel-fade .active.carousel-item-start,
  5189. .carousel-fade .active.carousel-item-end {
  5190. transition: none;
  5191. }
  5192. }
  5193. .carousel-control-prev,
  5194. .carousel-control-next {
  5195. position: absolute;
  5196. top: 0;
  5197. bottom: 0;
  5198. z-index: 1;
  5199. display: flex;
  5200. align-items: center;
  5201. justify-content: center;
  5202. width: 15%;
  5203. padding: 0;
  5204. color: #fff;
  5205. text-align: center;
  5206. background: none;
  5207. border: 0;
  5208. opacity: 0.5;
  5209. transition: opacity 0.15s ease;
  5210. }
  5211. @media (prefers-reduced-motion: reduce) {
  5212. .carousel-control-prev,
  5213. .carousel-control-next {
  5214. transition: none;
  5215. }
  5216. }
  5217. .carousel-control-prev:hover, .carousel-control-prev:focus,
  5218. .carousel-control-next:hover,
  5219. .carousel-control-next:focus {
  5220. color: #fff;
  5221. text-decoration: none;
  5222. outline: 0;
  5223. opacity: 0.9;
  5224. }
  5225. .carousel-control-prev {
  5226. left: 0;
  5227. }
  5228. .carousel-control-next {
  5229. right: 0;
  5230. }
  5231. .carousel-control-prev-icon,
  5232. .carousel-control-next-icon {
  5233. display: inline-block;
  5234. width: 2rem;
  5235. height: 2rem;
  5236. background-repeat: no-repeat;
  5237. background-position: 50%;
  5238. background-size: 100% 100%;
  5239. }
  5240. /* rtl:options: {
  5241. "autoRename": true,
  5242. "stringMap":[ {
  5243. "name" : "prev-next",
  5244. "search" : "prev",
  5245. "replace" : "next"
  5246. } ]
  5247. } */
  5248. .carousel-control-prev-icon {
  5249. 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");
  5250. }
  5251. .carousel-control-next-icon {
  5252. 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");
  5253. }
  5254. .carousel-indicators {
  5255. position: absolute;
  5256. right: 0;
  5257. bottom: 0;
  5258. left: 0;
  5259. z-index: 2;
  5260. display: flex;
  5261. justify-content: center;
  5262. padding: 0;
  5263. margin-right: 15%;
  5264. margin-bottom: 1rem;
  5265. margin-left: 15%;
  5266. list-style: none;
  5267. }
  5268. .carousel-indicators [data-bs-target] {
  5269. box-sizing: content-box;
  5270. flex: 0 1 auto;
  5271. width: 30px;
  5272. height: 3px;
  5273. padding: 0;
  5274. margin-right: 3px;
  5275. margin-left: 3px;
  5276. text-indent: -999px;
  5277. cursor: pointer;
  5278. background-color: #fff;
  5279. background-clip: padding-box;
  5280. border: 0;
  5281. border-top: 10px solid transparent;
  5282. border-bottom: 10px solid transparent;
  5283. opacity: 0.5;
  5284. transition: opacity 0.6s ease;
  5285. }
  5286. @media (prefers-reduced-motion: reduce) {
  5287. .carousel-indicators [data-bs-target] {
  5288. transition: none;
  5289. }
  5290. }
  5291. .carousel-indicators .active {
  5292. opacity: 1;
  5293. }
  5294. .carousel-caption {
  5295. position: absolute;
  5296. right: 15%;
  5297. bottom: 1.25rem;
  5298. left: 15%;
  5299. padding-top: 1.25rem;
  5300. padding-bottom: 1.25rem;
  5301. color: #fff;
  5302. text-align: center;
  5303. }
  5304. .carousel-dark .carousel-control-prev-icon,
  5305. .carousel-dark .carousel-control-next-icon {
  5306. filter: invert(1) grayscale(100);
  5307. }
  5308. .carousel-dark .carousel-indicators [data-bs-target] {
  5309. background-color: #000;
  5310. }
  5311. .carousel-dark .carousel-caption {
  5312. color: #000;
  5313. }
  5314. @-webkit-keyframes spinner-border {
  5315. to {
  5316. transform: rotate(360deg) /* rtl:ignore */;
  5317. }
  5318. }
  5319. @keyframes spinner-border {
  5320. to {
  5321. transform: rotate(360deg) /* rtl:ignore */;
  5322. }
  5323. }
  5324. .spinner-border {
  5325. display: inline-block;
  5326. width: 2rem;
  5327. height: 2rem;
  5328. vertical-align: text-bottom;
  5329. border: 0.25em solid currentColor;
  5330. border-right-color: transparent;
  5331. border-radius: 50%;
  5332. -webkit-animation: 0.75s linear infinite spinner-border;
  5333. animation: 0.75s linear infinite spinner-border;
  5334. }
  5335. .spinner-border-sm {
  5336. width: 1rem;
  5337. height: 1rem;
  5338. border-width: 0.2em;
  5339. }
  5340. @-webkit-keyframes spinner-grow {
  5341. 0% {
  5342. transform: scale(0);
  5343. }
  5344. 50% {
  5345. opacity: 1;
  5346. transform: none;
  5347. }
  5348. }
  5349. @keyframes spinner-grow {
  5350. 0% {
  5351. transform: scale(0);
  5352. }
  5353. 50% {
  5354. opacity: 1;
  5355. transform: none;
  5356. }
  5357. }
  5358. .spinner-grow {
  5359. display: inline-block;
  5360. width: 2rem;
  5361. height: 2rem;
  5362. vertical-align: text-bottom;
  5363. background-color: currentColor;
  5364. border-radius: 50%;
  5365. opacity: 0;
  5366. -webkit-animation: 0.75s linear infinite spinner-grow;
  5367. animation: 0.75s linear infinite spinner-grow;
  5368. }
  5369. .spinner-grow-sm {
  5370. width: 1rem;
  5371. height: 1rem;
  5372. }
  5373. @media (prefers-reduced-motion: reduce) {
  5374. .spinner-border,
  5375. .spinner-grow {
  5376. -webkit-animation-duration: 1.5s;
  5377. animation-duration: 1.5s;
  5378. }
  5379. }
  5380. .clearfix::after {
  5381. display: block;
  5382. clear: both;
  5383. content: "";
  5384. }
  5385. .link-primary {
  5386. color: #0d6efd;
  5387. }
  5388. .link-primary:hover, .link-primary:focus {
  5389. color: #0a58ca;
  5390. }
  5391. .link-secondary {
  5392. color: #6c757d;
  5393. }
  5394. .link-secondary:hover, .link-secondary:focus {
  5395. color: #565e64;
  5396. }
  5397. .link-success {
  5398. color: #198754;
  5399. }
  5400. .link-success:hover, .link-success:focus {
  5401. color: #146c43;
  5402. }
  5403. .link-info {
  5404. color: #0dcaf0;
  5405. }
  5406. .link-info:hover, .link-info:focus {
  5407. color: #3dd5f3;
  5408. }
  5409. .link-warning {
  5410. color: #ffc107;
  5411. }
  5412. .link-warning:hover, .link-warning:focus {
  5413. color: #ffcd39;
  5414. }
  5415. .link-danger {
  5416. color: #dc3545;
  5417. }
  5418. .link-danger:hover, .link-danger:focus {
  5419. color: #b02a37;
  5420. }
  5421. .link-light {
  5422. color: #f8f9fa;
  5423. }
  5424. .link-light:hover, .link-light:focus {
  5425. color: #f9fafb;
  5426. }
  5427. .link-dark {
  5428. color: #212529;
  5429. }
  5430. .link-dark:hover, .link-dark:focus {
  5431. color: #1a1e21;
  5432. }
  5433. .ratio {
  5434. position: relative;
  5435. width: 100%;
  5436. }
  5437. .ratio::before {
  5438. display: block;
  5439. padding-top: var(--bs-aspect-ratio);
  5440. content: "";
  5441. }
  5442. .ratio > * {
  5443. position: absolute;
  5444. top: 0;
  5445. left: 0;
  5446. width: 100%;
  5447. height: 100%;
  5448. }
  5449. .ratio-1x1 {
  5450. --bs-aspect-ratio: 100%;
  5451. }
  5452. .ratio-4x3 {
  5453. --bs-aspect-ratio: calc(3 / 4 * 100%);
  5454. }
  5455. .ratio-16x9 {
  5456. --bs-aspect-ratio: calc(9 / 16 * 100%);
  5457. }
  5458. .ratio-21x9 {
  5459. --bs-aspect-ratio: calc(9 / 21 * 100%);
  5460. }
  5461. .fixed-top {
  5462. position: fixed;
  5463. top: 0;
  5464. right: 0;
  5465. left: 0;
  5466. z-index: 1030;
  5467. }
  5468. .fixed-bottom {
  5469. position: fixed;
  5470. right: 0;
  5471. bottom: 0;
  5472. left: 0;
  5473. z-index: 1030;
  5474. }
  5475. .sticky-top {
  5476. position: -webkit-sticky;
  5477. position: sticky;
  5478. top: 0;
  5479. z-index: 1020;
  5480. }
  5481. @media (min-width: 576px) {
  5482. .sticky-sm-top {
  5483. position: -webkit-sticky;
  5484. position: sticky;
  5485. top: 0;
  5486. z-index: 1020;
  5487. }
  5488. }
  5489. @media (min-width: 768px) {
  5490. .sticky-md-top {
  5491. position: -webkit-sticky;
  5492. position: sticky;
  5493. top: 0;
  5494. z-index: 1020;
  5495. }
  5496. }
  5497. @media (min-width: 992px) {
  5498. .sticky-lg-top {
  5499. position: -webkit-sticky;
  5500. position: sticky;
  5501. top: 0;
  5502. z-index: 1020;
  5503. }
  5504. }
  5505. @media (min-width: 1200px) {
  5506. .sticky-xl-top {
  5507. position: -webkit-sticky;
  5508. position: sticky;
  5509. top: 0;
  5510. z-index: 1020;
  5511. }
  5512. }
  5513. @media (min-width: 1400px) {
  5514. .sticky-xxl-top {
  5515. position: -webkit-sticky;
  5516. position: sticky;
  5517. top: 0;
  5518. z-index: 1020;
  5519. }
  5520. }
  5521. .visually-hidden,
  5522. .visually-hidden-focusable:not(:focus):not(:focus-within) {
  5523. position: absolute !important;
  5524. width: 1px !important;
  5525. height: 1px !important;
  5526. padding: 0 !important;
  5527. margin: -1px !important;
  5528. overflow: hidden !important;
  5529. clip: rect(0, 0, 0, 0) !important;
  5530. white-space: nowrap !important;
  5531. border: 0 !important;
  5532. }
  5533. .stretched-link::after {
  5534. position: absolute;
  5535. top: 0;
  5536. right: 0;
  5537. bottom: 0;
  5538. left: 0;
  5539. z-index: 1;
  5540. content: "";
  5541. }
  5542. .text-truncate {
  5543. overflow: hidden;
  5544. text-overflow: ellipsis;
  5545. white-space: nowrap;
  5546. }
  5547. .align-baseline {
  5548. vertical-align: baseline !important;
  5549. }
  5550. .align-top {
  5551. vertical-align: top !important;
  5552. }
  5553. .align-middle {
  5554. vertical-align: middle !important;
  5555. }
  5556. .align-bottom {
  5557. vertical-align: bottom !important;
  5558. }
  5559. .align-text-bottom {
  5560. vertical-align: text-bottom !important;
  5561. }
  5562. .align-text-top {
  5563. vertical-align: text-top !important;
  5564. }
  5565. .float-start {
  5566. float: left !important;
  5567. }
  5568. .float-end {
  5569. float: right !important;
  5570. }
  5571. .float-none {
  5572. float: none !important;
  5573. }
  5574. .overflow-auto {
  5575. overflow: auto !important;
  5576. }
  5577. .overflow-hidden {
  5578. overflow: hidden !important;
  5579. }
  5580. .overflow-visible {
  5581. overflow: visible !important;
  5582. }
  5583. .overflow-scroll {
  5584. overflow: scroll !important;
  5585. }
  5586. .d-inline {
  5587. display: inline !important;
  5588. }
  5589. .d-inline-block {
  5590. display: inline-block !important;
  5591. }
  5592. .d-block {
  5593. display: block !important;
  5594. }
  5595. .d-grid {
  5596. display: grid !important;
  5597. }
  5598. .d-table {
  5599. display: table !important;
  5600. }
  5601. .d-table-row {
  5602. display: table-row !important;
  5603. }
  5604. .d-table-cell {
  5605. display: table-cell !important;
  5606. }
  5607. .d-flex {
  5608. display: flex !important;
  5609. }
  5610. .d-inline-flex {
  5611. display: inline-flex !important;
  5612. }
  5613. .d-none {
  5614. display: none !important;
  5615. }
  5616. .shadow {
  5617. box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  5618. }
  5619. .shadow-sm {
  5620. box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  5621. }
  5622. .shadow-lg {
  5623. box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  5624. }
  5625. .shadow-none {
  5626. box-shadow: none !important;
  5627. }
  5628. .position-static {
  5629. position: static !important;
  5630. }
  5631. .position-relative {
  5632. position: relative !important;
  5633. }
  5634. .position-absolute {
  5635. position: absolute !important;
  5636. }
  5637. .position-fixed {
  5638. position: fixed !important;
  5639. }
  5640. .position-sticky {
  5641. position: -webkit-sticky !important;
  5642. position: sticky !important;
  5643. }
  5644. .top-0 {
  5645. top: 0 !important;
  5646. }
  5647. .top-50 {
  5648. top: 50% !important;
  5649. }
  5650. .top-100 {
  5651. top: 100% !important;
  5652. }
  5653. .bottom-0 {
  5654. bottom: 0 !important;
  5655. }
  5656. .bottom-50 {
  5657. bottom: 50% !important;
  5658. }
  5659. .bottom-100 {
  5660. bottom: 100% !important;
  5661. }
  5662. .start-0 {
  5663. left: 0 !important;
  5664. }
  5665. .start-50 {
  5666. left: 50% !important;
  5667. }
  5668. .start-100 {
  5669. left: 100% !important;
  5670. }
  5671. .end-0 {
  5672. right: 0 !important;
  5673. }
  5674. .end-50 {
  5675. right: 50% !important;
  5676. }
  5677. .end-100 {
  5678. right: 100% !important;
  5679. }
  5680. .translate-middle {
  5681. transform: translate(-50%, -50%) !important;
  5682. }
  5683. .translate-middle-x {
  5684. transform: translateX(-50%) !important;
  5685. }
  5686. .translate-middle-y {
  5687. transform: translateY(-50%) !important;
  5688. }
  5689. .border {
  5690. border: 1px solid #dee2e6 !important;
  5691. }
  5692. .border-0 {
  5693. border: 0 !important;
  5694. }
  5695. .border-top {
  5696. border-top: 1px solid #dee2e6 !important;
  5697. }
  5698. .border-top-0 {
  5699. border-top: 0 !important;
  5700. }
  5701. .border-end {
  5702. border-right: 1px solid #dee2e6 !important;
  5703. }
  5704. .border-end-0 {
  5705. border-right: 0 !important;
  5706. }
  5707. .border-bottom {
  5708. border-bottom: 1px solid #dee2e6 !important;
  5709. }
  5710. .border-bottom-0 {
  5711. border-bottom: 0 !important;
  5712. }
  5713. .border-start {
  5714. border-left: 1px solid #dee2e6 !important;
  5715. }
  5716. .border-start-0 {
  5717. border-left: 0 !important;
  5718. }
  5719. .border-primary {
  5720. border-color: #0d6efd !important;
  5721. }
  5722. .border-secondary {
  5723. border-color: #6c757d !important;
  5724. }
  5725. .border-success {
  5726. border-color: #198754 !important;
  5727. }
  5728. .border-info {
  5729. border-color: #0dcaf0 !important;
  5730. }
  5731. .border-warning {
  5732. border-color: #ffc107 !important;
  5733. }
  5734. .border-danger {
  5735. border-color: #dc3545 !important;
  5736. }
  5737. .border-light {
  5738. border-color: #f8f9fa !important;
  5739. }
  5740. .border-dark {
  5741. border-color: #212529 !important;
  5742. }
  5743. .border-white {
  5744. border-color: #fff !important;
  5745. }
  5746. .border-0 {
  5747. border-width: 0 !important;
  5748. }
  5749. .border-1 {
  5750. border-width: 1px !important;
  5751. }
  5752. .border-2 {
  5753. border-width: 2px !important;
  5754. }
  5755. .border-3 {
  5756. border-width: 3px !important;
  5757. }
  5758. .border-4 {
  5759. border-width: 4px !important;
  5760. }
  5761. .border-5 {
  5762. border-width: 5px !important;
  5763. }
  5764. .w-25 {
  5765. width: 25% !important;
  5766. }
  5767. .w-50 {
  5768. width: 50% !important;
  5769. }
  5770. .w-75 {
  5771. width: 75% !important;
  5772. }
  5773. .w-100 {
  5774. width: 100% !important;
  5775. }
  5776. .w-auto {
  5777. width: auto !important;
  5778. }
  5779. .mw-100 {
  5780. max-width: 100% !important;
  5781. }
  5782. .vw-100 {
  5783. width: 100vw !important;
  5784. }
  5785. .min-vw-100 {
  5786. min-width: 100vw !important;
  5787. }
  5788. .h-25 {
  5789. height: 25% !important;
  5790. }
  5791. .h-50 {
  5792. height: 50% !important;
  5793. }
  5794. .h-75 {
  5795. height: 75% !important;
  5796. }
  5797. .h-100 {
  5798. height: 100% !important;
  5799. }
  5800. .h-auto {
  5801. height: auto !important;
  5802. }
  5803. .mh-100 {
  5804. max-height: 100% !important;
  5805. }
  5806. .vh-100 {
  5807. height: 100vh !important;
  5808. }
  5809. .min-vh-100 {
  5810. min-height: 100vh !important;
  5811. }
  5812. .flex-fill {
  5813. flex: 1 1 auto !important;
  5814. }
  5815. .flex-row {
  5816. flex-direction: row !important;
  5817. }
  5818. .flex-column {
  5819. flex-direction: column !important;
  5820. }
  5821. .flex-row-reverse {
  5822. flex-direction: row-reverse !important;
  5823. }
  5824. .flex-column-reverse {
  5825. flex-direction: column-reverse !important;
  5826. }
  5827. .flex-grow-0 {
  5828. flex-grow: 0 !important;
  5829. }
  5830. .flex-grow-1 {
  5831. flex-grow: 1 !important;
  5832. }
  5833. .flex-shrink-0 {
  5834. flex-shrink: 0 !important;
  5835. }
  5836. .flex-shrink-1 {
  5837. flex-shrink: 1 !important;
  5838. }
  5839. .flex-wrap {
  5840. flex-wrap: wrap !important;
  5841. }
  5842. .flex-nowrap {
  5843. flex-wrap: nowrap !important;
  5844. }
  5845. .flex-wrap-reverse {
  5846. flex-wrap: wrap-reverse !important;
  5847. }
  5848. .gap-0 {
  5849. gap: 0 !important;
  5850. }
  5851. .gap-1 {
  5852. gap: 0.25rem !important;
  5853. }
  5854. .gap-2 {
  5855. gap: 0.5rem !important;
  5856. }
  5857. .gap-3 {
  5858. gap: 1rem !important;
  5859. }
  5860. .gap-4 {
  5861. gap: 1.5rem !important;
  5862. }
  5863. .gap-5 {
  5864. gap: 3rem !important;
  5865. }
  5866. .justify-content-start {
  5867. justify-content: flex-start !important;
  5868. }
  5869. .justify-content-end {
  5870. justify-content: flex-end !important;
  5871. }
  5872. .justify-content-center {
  5873. justify-content: center !important;
  5874. }
  5875. .justify-content-between {
  5876. justify-content: space-between !important;
  5877. }
  5878. .justify-content-around {
  5879. justify-content: space-around !important;
  5880. }
  5881. .justify-content-evenly {
  5882. justify-content: space-evenly !important;
  5883. }
  5884. .align-items-start {
  5885. align-items: flex-start !important;
  5886. }
  5887. .align-items-end {
  5888. align-items: flex-end !important;
  5889. }
  5890. .align-items-center {
  5891. align-items: center !important;
  5892. }
  5893. .align-items-baseline {
  5894. align-items: baseline !important;
  5895. }
  5896. .align-items-stretch {
  5897. align-items: stretch !important;
  5898. }
  5899. .align-content-start {
  5900. align-content: flex-start !important;
  5901. }
  5902. .align-content-end {
  5903. align-content: flex-end !important;
  5904. }
  5905. .align-content-center {
  5906. align-content: center !important;
  5907. }
  5908. .align-content-between {
  5909. align-content: space-between !important;
  5910. }
  5911. .align-content-around {
  5912. align-content: space-around !important;
  5913. }
  5914. .align-content-stretch {
  5915. align-content: stretch !important;
  5916. }
  5917. .align-self-auto {
  5918. align-self: auto !important;
  5919. }
  5920. .align-self-start {
  5921. align-self: flex-start !important;
  5922. }
  5923. .align-self-end {
  5924. align-self: flex-end !important;
  5925. }
  5926. .align-self-center {
  5927. align-self: center !important;
  5928. }
  5929. .align-self-baseline {
  5930. align-self: baseline !important;
  5931. }
  5932. .align-self-stretch {
  5933. align-self: stretch !important;
  5934. }
  5935. .order-first {
  5936. order: -1 !important;
  5937. }
  5938. .order-0 {
  5939. order: 0 !important;
  5940. }
  5941. .order-1 {
  5942. order: 1 !important;
  5943. }
  5944. .order-2 {
  5945. order: 2 !important;
  5946. }
  5947. .order-3 {
  5948. order: 3 !important;
  5949. }
  5950. .order-4 {
  5951. order: 4 !important;
  5952. }
  5953. .order-5 {
  5954. order: 5 !important;
  5955. }
  5956. .order-last {
  5957. order: 6 !important;
  5958. }
  5959. .m-0 {
  5960. margin: 0 !important;
  5961. }
  5962. .m-1 {
  5963. margin: 0.25rem !important;
  5964. }
  5965. .m-2 {
  5966. margin: 0.5rem !important;
  5967. }
  5968. .m-3 {
  5969. margin: 1rem !important;
  5970. }
  5971. .m-4 {
  5972. margin: 1.5rem !important;
  5973. }
  5974. .m-5 {
  5975. margin: 3rem !important;
  5976. }
  5977. .m-auto {
  5978. margin: auto !important;
  5979. }
  5980. .mx-0 {
  5981. margin-right: 0 !important;
  5982. margin-left: 0 !important;
  5983. }
  5984. .mx-1 {
  5985. margin-right: 0.25rem !important;
  5986. margin-left: 0.25rem !important;
  5987. }
  5988. .mx-2 {
  5989. margin-right: 0.5rem !important;
  5990. margin-left: 0.5rem !important;
  5991. }
  5992. .mx-3 {
  5993. margin-right: 1rem !important;
  5994. margin-left: 1rem !important;
  5995. }
  5996. .mx-4 {
  5997. margin-right: 1.5rem !important;
  5998. margin-left: 1.5rem !important;
  5999. }
  6000. .mx-5 {
  6001. margin-right: 3rem !important;
  6002. margin-left: 3rem !important;
  6003. }
  6004. .mx-auto {
  6005. margin-right: auto !important;
  6006. margin-left: auto !important;
  6007. }
  6008. .my-0 {
  6009. margin-top: 0 !important;
  6010. margin-bottom: 0 !important;
  6011. }
  6012. .my-1 {
  6013. margin-top: 0.25rem !important;
  6014. margin-bottom: 0.25rem !important;
  6015. }
  6016. .my-2 {
  6017. margin-top: 0.5rem !important;
  6018. margin-bottom: 0.5rem !important;
  6019. }
  6020. .my-3 {
  6021. margin-top: 1rem !important;
  6022. margin-bottom: 1rem !important;
  6023. }
  6024. .my-4 {
  6025. margin-top: 1.5rem !important;
  6026. margin-bottom: 1.5rem !important;
  6027. }
  6028. .my-5 {
  6029. margin-top: 3rem !important;
  6030. margin-bottom: 3rem !important;
  6031. }
  6032. .my-auto {
  6033. margin-top: auto !important;
  6034. margin-bottom: auto !important;
  6035. }
  6036. .mt-0 {
  6037. margin-top: 0 !important;
  6038. }
  6039. .mt-1 {
  6040. margin-top: 0.25rem !important;
  6041. }
  6042. .mt-2 {
  6043. margin-top: 0.5rem !important;
  6044. }
  6045. .mt-3 {
  6046. margin-top: 1rem !important;
  6047. }
  6048. .mt-4 {
  6049. margin-top: 1.5rem !important;
  6050. }
  6051. .mt-5 {
  6052. margin-top: 3rem !important;
  6053. }
  6054. .mt-auto {
  6055. margin-top: auto !important;
  6056. }
  6057. .me-0 {
  6058. margin-right: 0 !important;
  6059. }
  6060. .me-1 {
  6061. margin-right: 0.25rem !important;
  6062. }
  6063. .me-2 {
  6064. margin-right: 0.5rem !important;
  6065. }
  6066. .me-3 {
  6067. margin-right: 1rem !important;
  6068. }
  6069. .me-4 {
  6070. margin-right: 1.5rem !important;
  6071. }
  6072. .me-5 {
  6073. margin-right: 3rem !important;
  6074. }
  6075. .me-auto {
  6076. margin-right: auto !important;
  6077. }
  6078. .mb-0 {
  6079. margin-bottom: 0 !important;
  6080. }
  6081. .mb-1 {
  6082. margin-bottom: 0.25rem !important;
  6083. }
  6084. .mb-2 {
  6085. margin-bottom: 0.5rem !important;
  6086. }
  6087. .mb-3 {
  6088. margin-bottom: 1rem !important;
  6089. }
  6090. .mb-4 {
  6091. margin-bottom: 1.5rem !important;
  6092. }
  6093. .mb-5 {
  6094. margin-bottom: 3rem !important;
  6095. }
  6096. .mb-auto {
  6097. margin-bottom: auto !important;
  6098. }
  6099. .ms-0 {
  6100. margin-left: 0 !important;
  6101. }
  6102. .ms-1 {
  6103. margin-left: 0.25rem !important;
  6104. }
  6105. .ms-2 {
  6106. margin-left: 0.5rem !important;
  6107. }
  6108. .ms-3 {
  6109. margin-left: 1rem !important;
  6110. }
  6111. .ms-4 {
  6112. margin-left: 1.5rem !important;
  6113. }
  6114. .ms-5 {
  6115. margin-left: 3rem !important;
  6116. }
  6117. .ms-auto {
  6118. margin-left: auto !important;
  6119. }
  6120. .p-0 {
  6121. padding: 0 !important;
  6122. }
  6123. .p-1 {
  6124. padding: 0.25rem !important;
  6125. }
  6126. .p-2 {
  6127. padding: 0.5rem !important;
  6128. }
  6129. .p-3 {
  6130. padding: 1rem !important;
  6131. }
  6132. .p-4 {
  6133. padding: 1.5rem !important;
  6134. }
  6135. .p-5 {
  6136. padding: 3rem !important;
  6137. }
  6138. .px-0 {
  6139. padding-right: 0 !important;
  6140. padding-left: 0 !important;
  6141. }
  6142. .px-1 {
  6143. padding-right: 0.25rem !important;
  6144. padding-left: 0.25rem !important;
  6145. }
  6146. .px-2 {
  6147. padding-right: 0.5rem !important;
  6148. padding-left: 0.5rem !important;
  6149. }
  6150. .px-3 {
  6151. padding-right: 1rem !important;
  6152. padding-left: 1rem !important;
  6153. }
  6154. .px-4 {
  6155. padding-right: 1.5rem !important;
  6156. padding-left: 1.5rem !important;
  6157. }
  6158. .px-5 {
  6159. padding-right: 3rem !important;
  6160. padding-left: 3rem !important;
  6161. }
  6162. .py-0 {
  6163. padding-top: 0 !important;
  6164. padding-bottom: 0 !important;
  6165. }
  6166. .py-1 {
  6167. padding-top: 0.25rem !important;
  6168. padding-bottom: 0.25rem !important;
  6169. }
  6170. .py-2 {
  6171. padding-top: 0.5rem !important;
  6172. padding-bottom: 0.5rem !important;
  6173. }
  6174. .py-3 {
  6175. padding-top: 1rem !important;
  6176. padding-bottom: 1rem !important;
  6177. }
  6178. .py-4 {
  6179. padding-top: 1.5rem !important;
  6180. padding-bottom: 1.5rem !important;
  6181. }
  6182. .py-5 {
  6183. padding-top: 3rem !important;
  6184. padding-bottom: 3rem !important;
  6185. }
  6186. .pt-0 {
  6187. padding-top: 0 !important;
  6188. }
  6189. .pt-1 {
  6190. padding-top: 0.25rem !important;
  6191. }
  6192. .pt-2 {
  6193. padding-top: 0.5rem !important;
  6194. }
  6195. .pt-3 {
  6196. padding-top: 1rem !important;
  6197. }
  6198. .pt-4 {
  6199. padding-top: 1.5rem !important;
  6200. }
  6201. .pt-5 {
  6202. padding-top: 3rem !important;
  6203. }
  6204. .pe-0 {
  6205. padding-right: 0 !important;
  6206. }
  6207. .pe-1 {
  6208. padding-right: 0.25rem !important;
  6209. }
  6210. .pe-2 {
  6211. padding-right: 0.5rem !important;
  6212. }
  6213. .pe-3 {
  6214. padding-right: 1rem !important;
  6215. }
  6216. .pe-4 {
  6217. padding-right: 1.5rem !important;
  6218. }
  6219. .pe-5 {
  6220. padding-right: 3rem !important;
  6221. }
  6222. .pb-0 {
  6223. padding-bottom: 0 !important;
  6224. }
  6225. .pb-1 {
  6226. padding-bottom: 0.25rem !important;
  6227. }
  6228. .pb-2 {
  6229. padding-bottom: 0.5rem !important;
  6230. }
  6231. .pb-3 {
  6232. padding-bottom: 1rem !important;
  6233. }
  6234. .pb-4 {
  6235. padding-bottom: 1.5rem !important;
  6236. }
  6237. .pb-5 {
  6238. padding-bottom: 3rem !important;
  6239. }
  6240. .ps-0 {
  6241. padding-left: 0 !important;
  6242. }
  6243. .ps-1 {
  6244. padding-left: 0.25rem !important;
  6245. }
  6246. .ps-2 {
  6247. padding-left: 0.5rem !important;
  6248. }
  6249. .ps-3 {
  6250. padding-left: 1rem !important;
  6251. }
  6252. .ps-4 {
  6253. padding-left: 1.5rem !important;
  6254. }
  6255. .ps-5 {
  6256. padding-left: 3rem !important;
  6257. }
  6258. .fs-1 {
  6259. font-size: calc(1.375rem + 1.5vw) !important;
  6260. }
  6261. .fs-2 {
  6262. font-size: calc(1.325rem + 0.9vw) !important;
  6263. }
  6264. .fs-3 {
  6265. font-size: calc(1.3rem + 0.6vw) !important;
  6266. }
  6267. .fs-4 {
  6268. font-size: calc(1.275rem + 0.3vw) !important;
  6269. }
  6270. .fs-5 {
  6271. font-size: 1.25rem !important;
  6272. }
  6273. .fs-6 {
  6274. font-size: 1rem !important;
  6275. }
  6276. .fst-italic {
  6277. font-style: italic !important;
  6278. }
  6279. .fst-normal {
  6280. font-style: normal !important;
  6281. }
  6282. .fw-light {
  6283. font-weight: 300 !important;
  6284. }
  6285. .fw-lighter {
  6286. font-weight: lighter !important;
  6287. }
  6288. .fw-normal {
  6289. font-weight: 400 !important;
  6290. }
  6291. .fw-bold {
  6292. font-weight: 700 !important;
  6293. }
  6294. .fw-bolder {
  6295. font-weight: bolder !important;
  6296. }
  6297. .text-lowercase {
  6298. text-transform: lowercase !important;
  6299. }
  6300. .text-uppercase {
  6301. text-transform: uppercase !important;
  6302. }
  6303. .text-capitalize {
  6304. text-transform: capitalize !important;
  6305. }
  6306. .text-start {
  6307. text-align: left !important;
  6308. }
  6309. .text-end {
  6310. text-align: right !important;
  6311. }
  6312. .text-center {
  6313. text-align: center !important;
  6314. }
  6315. .text-primary {
  6316. color: #0d6efd !important;
  6317. }
  6318. .text-secondary {
  6319. color: #6c757d !important;
  6320. }
  6321. .text-success {
  6322. color: #198754 !important;
  6323. }
  6324. .text-info {
  6325. color: #0dcaf0 !important;
  6326. }
  6327. .text-warning {
  6328. color: #ffc107 !important;
  6329. }
  6330. .text-danger {
  6331. color: #dc3545 !important;
  6332. }
  6333. .text-light {
  6334. color: #f8f9fa !important;
  6335. }
  6336. .text-dark {
  6337. color: #212529 !important;
  6338. }
  6339. .text-white {
  6340. color: #fff !important;
  6341. }
  6342. .text-body {
  6343. color: #212529 !important;
  6344. }
  6345. .text-muted {
  6346. color: #6c757d !important;
  6347. }
  6348. .text-black-50 {
  6349. color: rgba(0, 0, 0, 0.5) !important;
  6350. }
  6351. .text-white-50 {
  6352. color: rgba(255, 255, 255, 0.5) !important;
  6353. }
  6354. .text-reset {
  6355. color: inherit !important;
  6356. }
  6357. .lh-1 {
  6358. line-height: 1 !important;
  6359. }
  6360. .lh-sm {
  6361. line-height: 1.25 !important;
  6362. }
  6363. .lh-base {
  6364. line-height: 1.5 !important;
  6365. }
  6366. .lh-lg {
  6367. line-height: 2 !important;
  6368. }
  6369. .bg-primary {
  6370. background-color: #0d6efd !important;
  6371. }
  6372. .bg-secondary {
  6373. background-color: #6c757d !important;
  6374. }
  6375. .bg-success {
  6376. background-color: #198754 !important;
  6377. }
  6378. .bg-info {
  6379. background-color: #0dcaf0 !important;
  6380. }
  6381. .bg-warning {
  6382. background-color: #ffc107 !important;
  6383. }
  6384. .bg-danger {
  6385. background-color: #dc3545 !important;
  6386. }
  6387. .bg-light {
  6388. background-color: #f8f9fa !important;
  6389. }
  6390. .bg-dark {
  6391. background-color: #212529 !important;
  6392. }
  6393. .bg-body {
  6394. background-color: #fff !important;
  6395. }
  6396. .bg-white {
  6397. background-color: #fff !important;
  6398. }
  6399. .bg-transparent {
  6400. background-color: transparent !important;
  6401. }
  6402. .bg-gradient {
  6403. background-image: var(--bs-gradient) !important;
  6404. }
  6405. .text-wrap {
  6406. white-space: normal !important;
  6407. }
  6408. .text-nowrap {
  6409. white-space: nowrap !important;
  6410. }
  6411. .text-decoration-none {
  6412. text-decoration: none !important;
  6413. }
  6414. .text-decoration-underline {
  6415. text-decoration: underline !important;
  6416. }
  6417. .text-decoration-line-through {
  6418. text-decoration: line-through !important;
  6419. }
  6420. /* rtl:begin:remove */
  6421. .text-break {
  6422. word-wrap: break-word !important;
  6423. word-break: break-word !important;
  6424. }
  6425. /* rtl:end:remove */
  6426. .font-monospace {
  6427. font-family: var(--bs-font-monospace) !important;
  6428. }
  6429. .user-select-all {
  6430. -webkit-user-select: all !important;
  6431. -moz-user-select: all !important;
  6432. user-select: all !important;
  6433. }
  6434. .user-select-auto {
  6435. -webkit-user-select: auto !important;
  6436. -moz-user-select: auto !important;
  6437. user-select: auto !important;
  6438. }
  6439. .user-select-none {
  6440. -webkit-user-select: none !important;
  6441. -moz-user-select: none !important;
  6442. user-select: none !important;
  6443. }
  6444. .pe-none {
  6445. pointer-events: none !important;
  6446. }
  6447. .pe-auto {
  6448. pointer-events: auto !important;
  6449. }
  6450. .rounded {
  6451. border-radius: 0.25rem !important;
  6452. }
  6453. .rounded-0 {
  6454. border-radius: 0 !important;
  6455. }
  6456. .rounded-1 {
  6457. border-radius: 0.2rem !important;
  6458. }
  6459. .rounded-2 {
  6460. border-radius: 0.25rem !important;
  6461. }
  6462. .rounded-3 {
  6463. border-radius: 0.3rem !important;
  6464. }
  6465. .rounded-circle {
  6466. border-radius: 50% !important;
  6467. }
  6468. .rounded-pill {
  6469. border-radius: 50rem !important;
  6470. }
  6471. .rounded-top {
  6472. border-top-left-radius: 0.25rem !important;
  6473. border-top-right-radius: 0.25rem !important;
  6474. }
  6475. .rounded-end {
  6476. border-top-right-radius: 0.25rem !important;
  6477. border-bottom-right-radius: 0.25rem !important;
  6478. }
  6479. .rounded-bottom {
  6480. border-bottom-right-radius: 0.25rem !important;
  6481. border-bottom-left-radius: 0.25rem !important;
  6482. }
  6483. .rounded-start {
  6484. border-bottom-left-radius: 0.25rem !important;
  6485. border-top-left-radius: 0.25rem !important;
  6486. }
  6487. .visible {
  6488. visibility: visible !important;
  6489. }
  6490. .invisible {
  6491. visibility: hidden !important;
  6492. }
  6493. @media (min-width: 576px) {
  6494. .float-sm-start {
  6495. float: left !important;
  6496. }
  6497. .float-sm-end {
  6498. float: right !important;
  6499. }
  6500. .float-sm-none {
  6501. float: none !important;
  6502. }
  6503. .d-sm-inline {
  6504. display: inline !important;
  6505. }
  6506. .d-sm-inline-block {
  6507. display: inline-block !important;
  6508. }
  6509. .d-sm-block {
  6510. display: block !important;
  6511. }
  6512. .d-sm-grid {
  6513. display: grid !important;
  6514. }
  6515. .d-sm-table {
  6516. display: table !important;
  6517. }
  6518. .d-sm-table-row {
  6519. display: table-row !important;
  6520. }
  6521. .d-sm-table-cell {
  6522. display: table-cell !important;
  6523. }
  6524. .d-sm-flex {
  6525. display: flex !important;
  6526. }
  6527. .d-sm-inline-flex {
  6528. display: inline-flex !important;
  6529. }
  6530. .d-sm-none {
  6531. display: none !important;
  6532. }
  6533. .flex-sm-fill {
  6534. flex: 1 1 auto !important;
  6535. }
  6536. .flex-sm-row {
  6537. flex-direction: row !important;
  6538. }
  6539. .flex-sm-column {
  6540. flex-direction: column !important;
  6541. }
  6542. .flex-sm-row-reverse {
  6543. flex-direction: row-reverse !important;
  6544. }
  6545. .flex-sm-column-reverse {
  6546. flex-direction: column-reverse !important;
  6547. }
  6548. .flex-sm-grow-0 {
  6549. flex-grow: 0 !important;
  6550. }
  6551. .flex-sm-grow-1 {
  6552. flex-grow: 1 !important;
  6553. }
  6554. .flex-sm-shrink-0 {
  6555. flex-shrink: 0 !important;
  6556. }
  6557. .flex-sm-shrink-1 {
  6558. flex-shrink: 1 !important;
  6559. }
  6560. .flex-sm-wrap {
  6561. flex-wrap: wrap !important;
  6562. }
  6563. .flex-sm-nowrap {
  6564. flex-wrap: nowrap !important;
  6565. }
  6566. .flex-sm-wrap-reverse {
  6567. flex-wrap: wrap-reverse !important;
  6568. }
  6569. .gap-sm-0 {
  6570. gap: 0 !important;
  6571. }
  6572. .gap-sm-1 {
  6573. gap: 0.25rem !important;
  6574. }
  6575. .gap-sm-2 {
  6576. gap: 0.5rem !important;
  6577. }
  6578. .gap-sm-3 {
  6579. gap: 1rem !important;
  6580. }
  6581. .gap-sm-4 {
  6582. gap: 1.5rem !important;
  6583. }
  6584. .gap-sm-5 {
  6585. gap: 3rem !important;
  6586. }
  6587. .justify-content-sm-start {
  6588. justify-content: flex-start !important;
  6589. }
  6590. .justify-content-sm-end {
  6591. justify-content: flex-end !important;
  6592. }
  6593. .justify-content-sm-center {
  6594. justify-content: center !important;
  6595. }
  6596. .justify-content-sm-between {
  6597. justify-content: space-between !important;
  6598. }
  6599. .justify-content-sm-around {
  6600. justify-content: space-around !important;
  6601. }
  6602. .justify-content-sm-evenly {
  6603. justify-content: space-evenly !important;
  6604. }
  6605. .align-items-sm-start {
  6606. align-items: flex-start !important;
  6607. }
  6608. .align-items-sm-end {
  6609. align-items: flex-end !important;
  6610. }
  6611. .align-items-sm-center {
  6612. align-items: center !important;
  6613. }
  6614. .align-items-sm-baseline {
  6615. align-items: baseline !important;
  6616. }
  6617. .align-items-sm-stretch {
  6618. align-items: stretch !important;
  6619. }
  6620. .align-content-sm-start {
  6621. align-content: flex-start !important;
  6622. }
  6623. .align-content-sm-end {
  6624. align-content: flex-end !important;
  6625. }
  6626. .align-content-sm-center {
  6627. align-content: center !important;
  6628. }
  6629. .align-content-sm-between {
  6630. align-content: space-between !important;
  6631. }
  6632. .align-content-sm-around {
  6633. align-content: space-around !important;
  6634. }
  6635. .align-content-sm-stretch {
  6636. align-content: stretch !important;
  6637. }
  6638. .align-self-sm-auto {
  6639. align-self: auto !important;
  6640. }
  6641. .align-self-sm-start {
  6642. align-self: flex-start !important;
  6643. }
  6644. .align-self-sm-end {
  6645. align-self: flex-end !important;
  6646. }
  6647. .align-self-sm-center {
  6648. align-self: center !important;
  6649. }
  6650. .align-self-sm-baseline {
  6651. align-self: baseline !important;
  6652. }
  6653. .align-self-sm-stretch {
  6654. align-self: stretch !important;
  6655. }
  6656. .order-sm-first {
  6657. order: -1 !important;
  6658. }
  6659. .order-sm-0 {
  6660. order: 0 !important;
  6661. }
  6662. .order-sm-1 {
  6663. order: 1 !important;
  6664. }
  6665. .order-sm-2 {
  6666. order: 2 !important;
  6667. }
  6668. .order-sm-3 {
  6669. order: 3 !important;
  6670. }
  6671. .order-sm-4 {
  6672. order: 4 !important;
  6673. }
  6674. .order-sm-5 {
  6675. order: 5 !important;
  6676. }
  6677. .order-sm-last {
  6678. order: 6 !important;
  6679. }
  6680. .m-sm-0 {
  6681. margin: 0 !important;
  6682. }
  6683. .m-sm-1 {
  6684. margin: 0.25rem !important;
  6685. }
  6686. .m-sm-2 {
  6687. margin: 0.5rem !important;
  6688. }
  6689. .m-sm-3 {
  6690. margin: 1rem !important;
  6691. }
  6692. .m-sm-4 {
  6693. margin: 1.5rem !important;
  6694. }
  6695. .m-sm-5 {
  6696. margin: 3rem !important;
  6697. }
  6698. .m-sm-auto {
  6699. margin: auto !important;
  6700. }
  6701. .mx-sm-0 {
  6702. margin-right: 0 !important;
  6703. margin-left: 0 !important;
  6704. }
  6705. .mx-sm-1 {
  6706. margin-right: 0.25rem !important;
  6707. margin-left: 0.25rem !important;
  6708. }
  6709. .mx-sm-2 {
  6710. margin-right: 0.5rem !important;
  6711. margin-left: 0.5rem !important;
  6712. }
  6713. .mx-sm-3 {
  6714. margin-right: 1rem !important;
  6715. margin-left: 1rem !important;
  6716. }
  6717. .mx-sm-4 {
  6718. margin-right: 1.5rem !important;
  6719. margin-left: 1.5rem !important;
  6720. }
  6721. .mx-sm-5 {
  6722. margin-right: 3rem !important;
  6723. margin-left: 3rem !important;
  6724. }
  6725. .mx-sm-auto {
  6726. margin-right: auto !important;
  6727. margin-left: auto !important;
  6728. }
  6729. .my-sm-0 {
  6730. margin-top: 0 !important;
  6731. margin-bottom: 0 !important;
  6732. }
  6733. .my-sm-1 {
  6734. margin-top: 0.25rem !important;
  6735. margin-bottom: 0.25rem !important;
  6736. }
  6737. .my-sm-2 {
  6738. margin-top: 0.5rem !important;
  6739. margin-bottom: 0.5rem !important;
  6740. }
  6741. .my-sm-3 {
  6742. margin-top: 1rem !important;
  6743. margin-bottom: 1rem !important;
  6744. }
  6745. .my-sm-4 {
  6746. margin-top: 1.5rem !important;
  6747. margin-bottom: 1.5rem !important;
  6748. }
  6749. .my-sm-5 {
  6750. margin-top: 3rem !important;
  6751. margin-bottom: 3rem !important;
  6752. }
  6753. .my-sm-auto {
  6754. margin-top: auto !important;
  6755. margin-bottom: auto !important;
  6756. }
  6757. .mt-sm-0 {
  6758. margin-top: 0 !important;
  6759. }
  6760. .mt-sm-1 {
  6761. margin-top: 0.25rem !important;
  6762. }
  6763. .mt-sm-2 {
  6764. margin-top: 0.5rem !important;
  6765. }
  6766. .mt-sm-3 {
  6767. margin-top: 1rem !important;
  6768. }
  6769. .mt-sm-4 {
  6770. margin-top: 1.5rem !important;
  6771. }
  6772. .mt-sm-5 {
  6773. margin-top: 3rem !important;
  6774. }
  6775. .mt-sm-auto {
  6776. margin-top: auto !important;
  6777. }
  6778. .me-sm-0 {
  6779. margin-right: 0 !important;
  6780. }
  6781. .me-sm-1 {
  6782. margin-right: 0.25rem !important;
  6783. }
  6784. .me-sm-2 {
  6785. margin-right: 0.5rem !important;
  6786. }
  6787. .me-sm-3 {
  6788. margin-right: 1rem !important;
  6789. }
  6790. .me-sm-4 {
  6791. margin-right: 1.5rem !important;
  6792. }
  6793. .me-sm-5 {
  6794. margin-right: 3rem !important;
  6795. }
  6796. .me-sm-auto {
  6797. margin-right: auto !important;
  6798. }
  6799. .mb-sm-0 {
  6800. margin-bottom: 0 !important;
  6801. }
  6802. .mb-sm-1 {
  6803. margin-bottom: 0.25rem !important;
  6804. }
  6805. .mb-sm-2 {
  6806. margin-bottom: 0.5rem !important;
  6807. }
  6808. .mb-sm-3 {
  6809. margin-bottom: 1rem !important;
  6810. }
  6811. .mb-sm-4 {
  6812. margin-bottom: 1.5rem !important;
  6813. }
  6814. .mb-sm-5 {
  6815. margin-bottom: 3rem !important;
  6816. }
  6817. .mb-sm-auto {
  6818. margin-bottom: auto !important;
  6819. }
  6820. .ms-sm-0 {
  6821. margin-left: 0 !important;
  6822. }
  6823. .ms-sm-1 {
  6824. margin-left: 0.25rem !important;
  6825. }
  6826. .ms-sm-2 {
  6827. margin-left: 0.5rem !important;
  6828. }
  6829. .ms-sm-3 {
  6830. margin-left: 1rem !important;
  6831. }
  6832. .ms-sm-4 {
  6833. margin-left: 1.5rem !important;
  6834. }
  6835. .ms-sm-5 {
  6836. margin-left: 3rem !important;
  6837. }
  6838. .ms-sm-auto {
  6839. margin-left: auto !important;
  6840. }
  6841. .p-sm-0 {
  6842. padding: 0 !important;
  6843. }
  6844. .p-sm-1 {
  6845. padding: 0.25rem !important;
  6846. }
  6847. .p-sm-2 {
  6848. padding: 0.5rem !important;
  6849. }
  6850. .p-sm-3 {
  6851. padding: 1rem !important;
  6852. }
  6853. .p-sm-4 {
  6854. padding: 1.5rem !important;
  6855. }
  6856. .p-sm-5 {
  6857. padding: 3rem !important;
  6858. }
  6859. .px-sm-0 {
  6860. padding-right: 0 !important;
  6861. padding-left: 0 !important;
  6862. }
  6863. .px-sm-1 {
  6864. padding-right: 0.25rem !important;
  6865. padding-left: 0.25rem !important;
  6866. }
  6867. .px-sm-2 {
  6868. padding-right: 0.5rem !important;
  6869. padding-left: 0.5rem !important;
  6870. }
  6871. .px-sm-3 {
  6872. padding-right: 1rem !important;
  6873. padding-left: 1rem !important;
  6874. }
  6875. .px-sm-4 {
  6876. padding-right: 1.5rem !important;
  6877. padding-left: 1.5rem !important;
  6878. }
  6879. .px-sm-5 {
  6880. padding-right: 3rem !important;
  6881. padding-left: 3rem !important;
  6882. }
  6883. .py-sm-0 {
  6884. padding-top: 0 !important;
  6885. padding-bottom: 0 !important;
  6886. }
  6887. .py-sm-1 {
  6888. padding-top: 0.25rem !important;
  6889. padding-bottom: 0.25rem !important;
  6890. }
  6891. .py-sm-2 {
  6892. padding-top: 0.5rem !important;
  6893. padding-bottom: 0.5rem !important;
  6894. }
  6895. .py-sm-3 {
  6896. padding-top: 1rem !important;
  6897. padding-bottom: 1rem !important;
  6898. }
  6899. .py-sm-4 {
  6900. padding-top: 1.5rem !important;
  6901. padding-bottom: 1.5rem !important;
  6902. }
  6903. .py-sm-5 {
  6904. padding-top: 3rem !important;
  6905. padding-bottom: 3rem !important;
  6906. }
  6907. .pt-sm-0 {
  6908. padding-top: 0 !important;
  6909. }
  6910. .pt-sm-1 {
  6911. padding-top: 0.25rem !important;
  6912. }
  6913. .pt-sm-2 {
  6914. padding-top: 0.5rem !important;
  6915. }
  6916. .pt-sm-3 {
  6917. padding-top: 1rem !important;
  6918. }
  6919. .pt-sm-4 {
  6920. padding-top: 1.5rem !important;
  6921. }
  6922. .pt-sm-5 {
  6923. padding-top: 3rem !important;
  6924. }
  6925. .pe-sm-0 {
  6926. padding-right: 0 !important;
  6927. }
  6928. .pe-sm-1 {
  6929. padding-right: 0.25rem !important;
  6930. }
  6931. .pe-sm-2 {
  6932. padding-right: 0.5rem !important;
  6933. }
  6934. .pe-sm-3 {
  6935. padding-right: 1rem !important;
  6936. }
  6937. .pe-sm-4 {
  6938. padding-right: 1.5rem !important;
  6939. }
  6940. .pe-sm-5 {
  6941. padding-right: 3rem !important;
  6942. }
  6943. .pb-sm-0 {
  6944. padding-bottom: 0 !important;
  6945. }
  6946. .pb-sm-1 {
  6947. padding-bottom: 0.25rem !important;
  6948. }
  6949. .pb-sm-2 {
  6950. padding-bottom: 0.5rem !important;
  6951. }
  6952. .pb-sm-3 {
  6953. padding-bottom: 1rem !important;
  6954. }
  6955. .pb-sm-4 {
  6956. padding-bottom: 1.5rem !important;
  6957. }
  6958. .pb-sm-5 {
  6959. padding-bottom: 3rem !important;
  6960. }
  6961. .ps-sm-0 {
  6962. padding-left: 0 !important;
  6963. }
  6964. .ps-sm-1 {
  6965. padding-left: 0.25rem !important;
  6966. }
  6967. .ps-sm-2 {
  6968. padding-left: 0.5rem !important;
  6969. }
  6970. .ps-sm-3 {
  6971. padding-left: 1rem !important;
  6972. }
  6973. .ps-sm-4 {
  6974. padding-left: 1.5rem !important;
  6975. }
  6976. .ps-sm-5 {
  6977. padding-left: 3rem !important;
  6978. }
  6979. .text-sm-start {
  6980. text-align: left !important;
  6981. }
  6982. .text-sm-end {
  6983. text-align: right !important;
  6984. }
  6985. .text-sm-center {
  6986. text-align: center !important;
  6987. }
  6988. }
  6989. @media (min-width: 768px) {
  6990. .float-md-start {
  6991. float: left !important;
  6992. }
  6993. .float-md-end {
  6994. float: right !important;
  6995. }
  6996. .float-md-none {
  6997. float: none !important;
  6998. }
  6999. .d-md-inline {
  7000. display: inline !important;
  7001. }
  7002. .d-md-inline-block {
  7003. display: inline-block !important;
  7004. }
  7005. .d-md-block {
  7006. display: block !important;
  7007. }
  7008. .d-md-grid {
  7009. display: grid !important;
  7010. }
  7011. .d-md-table {
  7012. display: table !important;
  7013. }
  7014. .d-md-table-row {
  7015. display: table-row !important;
  7016. }
  7017. .d-md-table-cell {
  7018. display: table-cell !important;
  7019. }
  7020. .d-md-flex {
  7021. display: flex !important;
  7022. }
  7023. .d-md-inline-flex {
  7024. display: inline-flex !important;
  7025. }
  7026. .d-md-none {
  7027. display: none !important;
  7028. }
  7029. .flex-md-fill {
  7030. flex: 1 1 auto !important;
  7031. }
  7032. .flex-md-row {
  7033. flex-direction: row !important;
  7034. }
  7035. .flex-md-column {
  7036. flex-direction: column !important;
  7037. }
  7038. .flex-md-row-reverse {
  7039. flex-direction: row-reverse !important;
  7040. }
  7041. .flex-md-column-reverse {
  7042. flex-direction: column-reverse !important;
  7043. }
  7044. .flex-md-grow-0 {
  7045. flex-grow: 0 !important;
  7046. }
  7047. .flex-md-grow-1 {
  7048. flex-grow: 1 !important;
  7049. }
  7050. .flex-md-shrink-0 {
  7051. flex-shrink: 0 !important;
  7052. }
  7053. .flex-md-shrink-1 {
  7054. flex-shrink: 1 !important;
  7055. }
  7056. .flex-md-wrap {
  7057. flex-wrap: wrap !important;
  7058. }
  7059. .flex-md-nowrap {
  7060. flex-wrap: nowrap !important;
  7061. }
  7062. .flex-md-wrap-reverse {
  7063. flex-wrap: wrap-reverse !important;
  7064. }
  7065. .gap-md-0 {
  7066. gap: 0 !important;
  7067. }
  7068. .gap-md-1 {
  7069. gap: 0.25rem !important;
  7070. }
  7071. .gap-md-2 {
  7072. gap: 0.5rem !important;
  7073. }
  7074. .gap-md-3 {
  7075. gap: 1rem !important;
  7076. }
  7077. .gap-md-4 {
  7078. gap: 1.5rem !important;
  7079. }
  7080. .gap-md-5 {
  7081. gap: 3rem !important;
  7082. }
  7083. .justify-content-md-start {
  7084. justify-content: flex-start !important;
  7085. }
  7086. .justify-content-md-end {
  7087. justify-content: flex-end !important;
  7088. }
  7089. .justify-content-md-center {
  7090. justify-content: center !important;
  7091. }
  7092. .justify-content-md-between {
  7093. justify-content: space-between !important;
  7094. }
  7095. .justify-content-md-around {
  7096. justify-content: space-around !important;
  7097. }
  7098. .justify-content-md-evenly {
  7099. justify-content: space-evenly !important;
  7100. }
  7101. .align-items-md-start {
  7102. align-items: flex-start !important;
  7103. }
  7104. .align-items-md-end {
  7105. align-items: flex-end !important;
  7106. }
  7107. .align-items-md-center {
  7108. align-items: center !important;
  7109. }
  7110. .align-items-md-baseline {
  7111. align-items: baseline !important;
  7112. }
  7113. .align-items-md-stretch {
  7114. align-items: stretch !important;
  7115. }
  7116. .align-content-md-start {
  7117. align-content: flex-start !important;
  7118. }
  7119. .align-content-md-end {
  7120. align-content: flex-end !important;
  7121. }
  7122. .align-content-md-center {
  7123. align-content: center !important;
  7124. }
  7125. .align-content-md-between {
  7126. align-content: space-between !important;
  7127. }
  7128. .align-content-md-around {
  7129. align-content: space-around !important;
  7130. }
  7131. .align-content-md-stretch {
  7132. align-content: stretch !important;
  7133. }
  7134. .align-self-md-auto {
  7135. align-self: auto !important;
  7136. }
  7137. .align-self-md-start {
  7138. align-self: flex-start !important;
  7139. }
  7140. .align-self-md-end {
  7141. align-self: flex-end !important;
  7142. }
  7143. .align-self-md-center {
  7144. align-self: center !important;
  7145. }
  7146. .align-self-md-baseline {
  7147. align-self: baseline !important;
  7148. }
  7149. .align-self-md-stretch {
  7150. align-self: stretch !important;
  7151. }
  7152. .order-md-first {
  7153. order: -1 !important;
  7154. }
  7155. .order-md-0 {
  7156. order: 0 !important;
  7157. }
  7158. .order-md-1 {
  7159. order: 1 !important;
  7160. }
  7161. .order-md-2 {
  7162. order: 2 !important;
  7163. }
  7164. .order-md-3 {
  7165. order: 3 !important;
  7166. }
  7167. .order-md-4 {
  7168. order: 4 !important;
  7169. }
  7170. .order-md-5 {
  7171. order: 5 !important;
  7172. }
  7173. .order-md-last {
  7174. order: 6 !important;
  7175. }
  7176. .m-md-0 {
  7177. margin: 0 !important;
  7178. }
  7179. .m-md-1 {
  7180. margin: 0.25rem !important;
  7181. }
  7182. .m-md-2 {
  7183. margin: 0.5rem !important;
  7184. }
  7185. .m-md-3 {
  7186. margin: 1rem !important;
  7187. }
  7188. .m-md-4 {
  7189. margin: 1.5rem !important;
  7190. }
  7191. .m-md-5 {
  7192. margin: 3rem !important;
  7193. }
  7194. .m-md-auto {
  7195. margin: auto !important;
  7196. }
  7197. .mx-md-0 {
  7198. margin-right: 0 !important;
  7199. margin-left: 0 !important;
  7200. }
  7201. .mx-md-1 {
  7202. margin-right: 0.25rem !important;
  7203. margin-left: 0.25rem !important;
  7204. }
  7205. .mx-md-2 {
  7206. margin-right: 0.5rem !important;
  7207. margin-left: 0.5rem !important;
  7208. }
  7209. .mx-md-3 {
  7210. margin-right: 1rem !important;
  7211. margin-left: 1rem !important;
  7212. }
  7213. .mx-md-4 {
  7214. margin-right: 1.5rem !important;
  7215. margin-left: 1.5rem !important;
  7216. }
  7217. .mx-md-5 {
  7218. margin-right: 3rem !important;
  7219. margin-left: 3rem !important;
  7220. }
  7221. .mx-md-auto {
  7222. margin-right: auto !important;
  7223. margin-left: auto !important;
  7224. }
  7225. .my-md-0 {
  7226. margin-top: 0 !important;
  7227. margin-bottom: 0 !important;
  7228. }
  7229. .my-md-1 {
  7230. margin-top: 0.25rem !important;
  7231. margin-bottom: 0.25rem !important;
  7232. }
  7233. .my-md-2 {
  7234. margin-top: 0.5rem !important;
  7235. margin-bottom: 0.5rem !important;
  7236. }
  7237. .my-md-3 {
  7238. margin-top: 1rem !important;
  7239. margin-bottom: 1rem !important;
  7240. }
  7241. .my-md-4 {
  7242. margin-top: 1.5rem !important;
  7243. margin-bottom: 1.5rem !important;
  7244. }
  7245. .my-md-5 {
  7246. margin-top: 3rem !important;
  7247. margin-bottom: 3rem !important;
  7248. }
  7249. .my-md-auto {
  7250. margin-top: auto !important;
  7251. margin-bottom: auto !important;
  7252. }
  7253. .mt-md-0 {
  7254. margin-top: 0 !important;
  7255. }
  7256. .mt-md-1 {
  7257. margin-top: 0.25rem !important;
  7258. }
  7259. .mt-md-2 {
  7260. margin-top: 0.5rem !important;
  7261. }
  7262. .mt-md-3 {
  7263. margin-top: 1rem !important;
  7264. }
  7265. .mt-md-4 {
  7266. margin-top: 1.5rem !important;
  7267. }
  7268. .mt-md-5 {
  7269. margin-top: 3rem !important;
  7270. }
  7271. .mt-md-auto {
  7272. margin-top: auto !important;
  7273. }
  7274. .me-md-0 {
  7275. margin-right: 0 !important;
  7276. }
  7277. .me-md-1 {
  7278. margin-right: 0.25rem !important;
  7279. }
  7280. .me-md-2 {
  7281. margin-right: 0.5rem !important;
  7282. }
  7283. .me-md-3 {
  7284. margin-right: 1rem !important;
  7285. }
  7286. .me-md-4 {
  7287. margin-right: 1.5rem !important;
  7288. }
  7289. .me-md-5 {
  7290. margin-right: 3rem !important;
  7291. }
  7292. .me-md-auto {
  7293. margin-right: auto !important;
  7294. }
  7295. .mb-md-0 {
  7296. margin-bottom: 0 !important;
  7297. }
  7298. .mb-md-1 {
  7299. margin-bottom: 0.25rem !important;
  7300. }
  7301. .mb-md-2 {
  7302. margin-bottom: 0.5rem !important;
  7303. }
  7304. .mb-md-3 {
  7305. margin-bottom: 1rem !important;
  7306. }
  7307. .mb-md-4 {
  7308. margin-bottom: 1.5rem !important;
  7309. }
  7310. .mb-md-5 {
  7311. margin-bottom: 3rem !important;
  7312. }
  7313. .mb-md-auto {
  7314. margin-bottom: auto !important;
  7315. }
  7316. .ms-md-0 {
  7317. margin-left: 0 !important;
  7318. }
  7319. .ms-md-1 {
  7320. margin-left: 0.25rem !important;
  7321. }
  7322. .ms-md-2 {
  7323. margin-left: 0.5rem !important;
  7324. }
  7325. .ms-md-3 {
  7326. margin-left: 1rem !important;
  7327. }
  7328. .ms-md-4 {
  7329. margin-left: 1.5rem !important;
  7330. }
  7331. .ms-md-5 {
  7332. margin-left: 3rem !important;
  7333. }
  7334. .ms-md-auto {
  7335. margin-left: auto !important;
  7336. }
  7337. .p-md-0 {
  7338. padding: 0 !important;
  7339. }
  7340. .p-md-1 {
  7341. padding: 0.25rem !important;
  7342. }
  7343. .p-md-2 {
  7344. padding: 0.5rem !important;
  7345. }
  7346. .p-md-3 {
  7347. padding: 1rem !important;
  7348. }
  7349. .p-md-4 {
  7350. padding: 1.5rem !important;
  7351. }
  7352. .p-md-5 {
  7353. padding: 3rem !important;
  7354. }
  7355. .px-md-0 {
  7356. padding-right: 0 !important;
  7357. padding-left: 0 !important;
  7358. }
  7359. .px-md-1 {
  7360. padding-right: 0.25rem !important;
  7361. padding-left: 0.25rem !important;
  7362. }
  7363. .px-md-2 {
  7364. padding-right: 0.5rem !important;
  7365. padding-left: 0.5rem !important;
  7366. }
  7367. .px-md-3 {
  7368. padding-right: 1rem !important;
  7369. padding-left: 1rem !important;
  7370. }
  7371. .px-md-4 {
  7372. padding-right: 1.5rem !important;
  7373. padding-left: 1.5rem !important;
  7374. }
  7375. .px-md-5 {
  7376. padding-right: 3rem !important;
  7377. padding-left: 3rem !important;
  7378. }
  7379. .py-md-0 {
  7380. padding-top: 0 !important;
  7381. padding-bottom: 0 !important;
  7382. }
  7383. .py-md-1 {
  7384. padding-top: 0.25rem !important;
  7385. padding-bottom: 0.25rem !important;
  7386. }
  7387. .py-md-2 {
  7388. padding-top: 0.5rem !important;
  7389. padding-bottom: 0.5rem !important;
  7390. }
  7391. .py-md-3 {
  7392. padding-top: 1rem !important;
  7393. padding-bottom: 1rem !important;
  7394. }
  7395. .py-md-4 {
  7396. padding-top: 1.5rem !important;
  7397. padding-bottom: 1.5rem !important;
  7398. }
  7399. .py-md-5 {
  7400. padding-top: 3rem !important;
  7401. padding-bottom: 3rem !important;
  7402. }
  7403. .pt-md-0 {
  7404. padding-top: 0 !important;
  7405. }
  7406. .pt-md-1 {
  7407. padding-top: 0.25rem !important;
  7408. }
  7409. .pt-md-2 {
  7410. padding-top: 0.5rem !important;
  7411. }
  7412. .pt-md-3 {
  7413. padding-top: 1rem !important;
  7414. }
  7415. .pt-md-4 {
  7416. padding-top: 1.5rem !important;
  7417. }
  7418. .pt-md-5 {
  7419. padding-top: 3rem !important;
  7420. }
  7421. .pe-md-0 {
  7422. padding-right: 0 !important;
  7423. }
  7424. .pe-md-1 {
  7425. padding-right: 0.25rem !important;
  7426. }
  7427. .pe-md-2 {
  7428. padding-right: 0.5rem !important;
  7429. }
  7430. .pe-md-3 {
  7431. padding-right: 1rem !important;
  7432. }
  7433. .pe-md-4 {
  7434. padding-right: 1.5rem !important;
  7435. }
  7436. .pe-md-5 {
  7437. padding-right: 3rem !important;
  7438. }
  7439. .pb-md-0 {
  7440. padding-bottom: 0 !important;
  7441. }
  7442. .pb-md-1 {
  7443. padding-bottom: 0.25rem !important;
  7444. }
  7445. .pb-md-2 {
  7446. padding-bottom: 0.5rem !important;
  7447. }
  7448. .pb-md-3 {
  7449. padding-bottom: 1rem !important;
  7450. }
  7451. .pb-md-4 {
  7452. padding-bottom: 1.5rem !important;
  7453. }
  7454. .pb-md-5 {
  7455. padding-bottom: 3rem !important;
  7456. }
  7457. .ps-md-0 {
  7458. padding-left: 0 !important;
  7459. }
  7460. .ps-md-1 {
  7461. padding-left: 0.25rem !important;
  7462. }
  7463. .ps-md-2 {
  7464. padding-left: 0.5rem !important;
  7465. }
  7466. .ps-md-3 {
  7467. padding-left: 1rem !important;
  7468. }
  7469. .ps-md-4 {
  7470. padding-left: 1.5rem !important;
  7471. }
  7472. .ps-md-5 {
  7473. padding-left: 3rem !important;
  7474. }
  7475. .text-md-start {
  7476. text-align: left !important;
  7477. }
  7478. .text-md-end {
  7479. text-align: right !important;
  7480. }
  7481. .text-md-center {
  7482. text-align: center !important;
  7483. }
  7484. }
  7485. @media (min-width: 992px) {
  7486. .float-lg-start {
  7487. float: left !important;
  7488. }
  7489. .float-lg-end {
  7490. float: right !important;
  7491. }
  7492. .float-lg-none {
  7493. float: none !important;
  7494. }
  7495. .d-lg-inline {
  7496. display: inline !important;
  7497. }
  7498. .d-lg-inline-block {
  7499. display: inline-block !important;
  7500. }
  7501. .d-lg-block {
  7502. display: block !important;
  7503. }
  7504. .d-lg-grid {
  7505. display: grid !important;
  7506. }
  7507. .d-lg-table {
  7508. display: table !important;
  7509. }
  7510. .d-lg-table-row {
  7511. display: table-row !important;
  7512. }
  7513. .d-lg-table-cell {
  7514. display: table-cell !important;
  7515. }
  7516. .d-lg-flex {
  7517. display: flex !important;
  7518. }
  7519. .d-lg-inline-flex {
  7520. display: inline-flex !important;
  7521. }
  7522. .d-lg-none {
  7523. display: none !important;
  7524. }
  7525. .flex-lg-fill {
  7526. flex: 1 1 auto !important;
  7527. }
  7528. .flex-lg-row {
  7529. flex-direction: row !important;
  7530. }
  7531. .flex-lg-column {
  7532. flex-direction: column !important;
  7533. }
  7534. .flex-lg-row-reverse {
  7535. flex-direction: row-reverse !important;
  7536. }
  7537. .flex-lg-column-reverse {
  7538. flex-direction: column-reverse !important;
  7539. }
  7540. .flex-lg-grow-0 {
  7541. flex-grow: 0 !important;
  7542. }
  7543. .flex-lg-grow-1 {
  7544. flex-grow: 1 !important;
  7545. }
  7546. .flex-lg-shrink-0 {
  7547. flex-shrink: 0 !important;
  7548. }
  7549. .flex-lg-shrink-1 {
  7550. flex-shrink: 1 !important;
  7551. }
  7552. .flex-lg-wrap {
  7553. flex-wrap: wrap !important;
  7554. }
  7555. .flex-lg-nowrap {
  7556. flex-wrap: nowrap !important;
  7557. }
  7558. .flex-lg-wrap-reverse {
  7559. flex-wrap: wrap-reverse !important;
  7560. }
  7561. .gap-lg-0 {
  7562. gap: 0 !important;
  7563. }
  7564. .gap-lg-1 {
  7565. gap: 0.25rem !important;
  7566. }
  7567. .gap-lg-2 {
  7568. gap: 0.5rem !important;
  7569. }
  7570. .gap-lg-3 {
  7571. gap: 1rem !important;
  7572. }
  7573. .gap-lg-4 {
  7574. gap: 1.5rem !important;
  7575. }
  7576. .gap-lg-5 {
  7577. gap: 3rem !important;
  7578. }
  7579. .justify-content-lg-start {
  7580. justify-content: flex-start !important;
  7581. }
  7582. .justify-content-lg-end {
  7583. justify-content: flex-end !important;
  7584. }
  7585. .justify-content-lg-center {
  7586. justify-content: center !important;
  7587. }
  7588. .justify-content-lg-between {
  7589. justify-content: space-between !important;
  7590. }
  7591. .justify-content-lg-around {
  7592. justify-content: space-around !important;
  7593. }
  7594. .justify-content-lg-evenly {
  7595. justify-content: space-evenly !important;
  7596. }
  7597. .align-items-lg-start {
  7598. align-items: flex-start !important;
  7599. }
  7600. .align-items-lg-end {
  7601. align-items: flex-end !important;
  7602. }
  7603. .align-items-lg-center {
  7604. align-items: center !important;
  7605. }
  7606. .align-items-lg-baseline {
  7607. align-items: baseline !important;
  7608. }
  7609. .align-items-lg-stretch {
  7610. align-items: stretch !important;
  7611. }
  7612. .align-content-lg-start {
  7613. align-content: flex-start !important;
  7614. }
  7615. .align-content-lg-end {
  7616. align-content: flex-end !important;
  7617. }
  7618. .align-content-lg-center {
  7619. align-content: center !important;
  7620. }
  7621. .align-content-lg-between {
  7622. align-content: space-between !important;
  7623. }
  7624. .align-content-lg-around {
  7625. align-content: space-around !important;
  7626. }
  7627. .align-content-lg-stretch {
  7628. align-content: stretch !important;
  7629. }
  7630. .align-self-lg-auto {
  7631. align-self: auto !important;
  7632. }
  7633. .align-self-lg-start {
  7634. align-self: flex-start !important;
  7635. }
  7636. .align-self-lg-end {
  7637. align-self: flex-end !important;
  7638. }
  7639. .align-self-lg-center {
  7640. align-self: center !important;
  7641. }
  7642. .align-self-lg-baseline {
  7643. align-self: baseline !important;
  7644. }
  7645. .align-self-lg-stretch {
  7646. align-self: stretch !important;
  7647. }
  7648. .order-lg-first {
  7649. order: -1 !important;
  7650. }
  7651. .order-lg-0 {
  7652. order: 0 !important;
  7653. }
  7654. .order-lg-1 {
  7655. order: 1 !important;
  7656. }
  7657. .order-lg-2 {
  7658. order: 2 !important;
  7659. }
  7660. .order-lg-3 {
  7661. order: 3 !important;
  7662. }
  7663. .order-lg-4 {
  7664. order: 4 !important;
  7665. }
  7666. .order-lg-5 {
  7667. order: 5 !important;
  7668. }
  7669. .order-lg-last {
  7670. order: 6 !important;
  7671. }
  7672. .m-lg-0 {
  7673. margin: 0 !important;
  7674. }
  7675. .m-lg-1 {
  7676. margin: 0.25rem !important;
  7677. }
  7678. .m-lg-2 {
  7679. margin: 0.5rem !important;
  7680. }
  7681. .m-lg-3 {
  7682. margin: 1rem !important;
  7683. }
  7684. .m-lg-4 {
  7685. margin: 1.5rem !important;
  7686. }
  7687. .m-lg-5 {
  7688. margin: 3rem !important;
  7689. }
  7690. .m-lg-auto {
  7691. margin: auto !important;
  7692. }
  7693. .mx-lg-0 {
  7694. margin-right: 0 !important;
  7695. margin-left: 0 !important;
  7696. }
  7697. .mx-lg-1 {
  7698. margin-right: 0.25rem !important;
  7699. margin-left: 0.25rem !important;
  7700. }
  7701. .mx-lg-2 {
  7702. margin-right: 0.5rem !important;
  7703. margin-left: 0.5rem !important;
  7704. }
  7705. .mx-lg-3 {
  7706. margin-right: 1rem !important;
  7707. margin-left: 1rem !important;
  7708. }
  7709. .mx-lg-4 {
  7710. margin-right: 1.5rem !important;
  7711. margin-left: 1.5rem !important;
  7712. }
  7713. .mx-lg-5 {
  7714. margin-right: 3rem !important;
  7715. margin-left: 3rem !important;
  7716. }
  7717. .mx-lg-auto {
  7718. margin-right: auto !important;
  7719. margin-left: auto !important;
  7720. }
  7721. .my-lg-0 {
  7722. margin-top: 0 !important;
  7723. margin-bottom: 0 !important;
  7724. }
  7725. .my-lg-1 {
  7726. margin-top: 0.25rem !important;
  7727. margin-bottom: 0.25rem !important;
  7728. }
  7729. .my-lg-2 {
  7730. margin-top: 0.5rem !important;
  7731. margin-bottom: 0.5rem !important;
  7732. }
  7733. .my-lg-3 {
  7734. margin-top: 1rem !important;
  7735. margin-bottom: 1rem !important;
  7736. }
  7737. .my-lg-4 {
  7738. margin-top: 1.5rem !important;
  7739. margin-bottom: 1.5rem !important;
  7740. }
  7741. .my-lg-5 {
  7742. margin-top: 3rem !important;
  7743. margin-bottom: 3rem !important;
  7744. }
  7745. .my-lg-auto {
  7746. margin-top: auto !important;
  7747. margin-bottom: auto !important;
  7748. }
  7749. .mt-lg-0 {
  7750. margin-top: 0 !important;
  7751. }
  7752. .mt-lg-1 {
  7753. margin-top: 0.25rem !important;
  7754. }
  7755. .mt-lg-2 {
  7756. margin-top: 0.5rem !important;
  7757. }
  7758. .mt-lg-3 {
  7759. margin-top: 1rem !important;
  7760. }
  7761. .mt-lg-4 {
  7762. margin-top: 1.5rem !important;
  7763. }
  7764. .mt-lg-5 {
  7765. margin-top: 3rem !important;
  7766. }
  7767. .mt-lg-auto {
  7768. margin-top: auto !important;
  7769. }
  7770. .me-lg-0 {
  7771. margin-right: 0 !important;
  7772. }
  7773. .me-lg-1 {
  7774. margin-right: 0.25rem !important;
  7775. }
  7776. .me-lg-2 {
  7777. margin-right: 0.5rem !important;
  7778. }
  7779. .me-lg-3 {
  7780. margin-right: 1rem !important;
  7781. }
  7782. .me-lg-4 {
  7783. margin-right: 1.5rem !important;
  7784. }
  7785. .me-lg-5 {
  7786. margin-right: 3rem !important;
  7787. }
  7788. .me-lg-auto {
  7789. margin-right: auto !important;
  7790. }
  7791. .mb-lg-0 {
  7792. margin-bottom: 0 !important;
  7793. }
  7794. .mb-lg-1 {
  7795. margin-bottom: 0.25rem !important;
  7796. }
  7797. .mb-lg-2 {
  7798. margin-bottom: 0.5rem !important;
  7799. }
  7800. .mb-lg-3 {
  7801. margin-bottom: 1rem !important;
  7802. }
  7803. .mb-lg-4 {
  7804. margin-bottom: 1.5rem !important;
  7805. }
  7806. .mb-lg-5 {
  7807. margin-bottom: 3rem !important;
  7808. }
  7809. .mb-lg-auto {
  7810. margin-bottom: auto !important;
  7811. }
  7812. .ms-lg-0 {
  7813. margin-left: 0 !important;
  7814. }
  7815. .ms-lg-1 {
  7816. margin-left: 0.25rem !important;
  7817. }
  7818. .ms-lg-2 {
  7819. margin-left: 0.5rem !important;
  7820. }
  7821. .ms-lg-3 {
  7822. margin-left: 1rem !important;
  7823. }
  7824. .ms-lg-4 {
  7825. margin-left: 1.5rem !important;
  7826. }
  7827. .ms-lg-5 {
  7828. margin-left: 3rem !important;
  7829. }
  7830. .ms-lg-auto {
  7831. margin-left: auto !important;
  7832. }
  7833. .p-lg-0 {
  7834. padding: 0 !important;
  7835. }
  7836. .p-lg-1 {
  7837. padding: 0.25rem !important;
  7838. }
  7839. .p-lg-2 {
  7840. padding: 0.5rem !important;
  7841. }
  7842. .p-lg-3 {
  7843. padding: 1rem !important;
  7844. }
  7845. .p-lg-4 {
  7846. padding: 1.5rem !important;
  7847. }
  7848. .p-lg-5 {
  7849. padding: 3rem !important;
  7850. }
  7851. .px-lg-0 {
  7852. padding-right: 0 !important;
  7853. padding-left: 0 !important;
  7854. }
  7855. .px-lg-1 {
  7856. padding-right: 0.25rem !important;
  7857. padding-left: 0.25rem !important;
  7858. }
  7859. .px-lg-2 {
  7860. padding-right: 0.5rem !important;
  7861. padding-left: 0.5rem !important;
  7862. }
  7863. .px-lg-3 {
  7864. padding-right: 1rem !important;
  7865. padding-left: 1rem !important;
  7866. }
  7867. .px-lg-4 {
  7868. padding-right: 1.5rem !important;
  7869. padding-left: 1.5rem !important;
  7870. }
  7871. .px-lg-5 {
  7872. padding-right: 3rem !important;
  7873. padding-left: 3rem !important;
  7874. }
  7875. .py-lg-0 {
  7876. padding-top: 0 !important;
  7877. padding-bottom: 0 !important;
  7878. }
  7879. .py-lg-1 {
  7880. padding-top: 0.25rem !important;
  7881. padding-bottom: 0.25rem !important;
  7882. }
  7883. .py-lg-2 {
  7884. padding-top: 0.5rem !important;
  7885. padding-bottom: 0.5rem !important;
  7886. }
  7887. .py-lg-3 {
  7888. padding-top: 1rem !important;
  7889. padding-bottom: 1rem !important;
  7890. }
  7891. .py-lg-4 {
  7892. padding-top: 1.5rem !important;
  7893. padding-bottom: 1.5rem !important;
  7894. }
  7895. .py-lg-5 {
  7896. padding-top: 3rem !important;
  7897. padding-bottom: 3rem !important;
  7898. }
  7899. .pt-lg-0 {
  7900. padding-top: 0 !important;
  7901. }
  7902. .pt-lg-1 {
  7903. padding-top: 0.25rem !important;
  7904. }
  7905. .pt-lg-2 {
  7906. padding-top: 0.5rem !important;
  7907. }
  7908. .pt-lg-3 {
  7909. padding-top: 1rem !important;
  7910. }
  7911. .pt-lg-4 {
  7912. padding-top: 1.5rem !important;
  7913. }
  7914. .pt-lg-5 {
  7915. padding-top: 3rem !important;
  7916. }
  7917. .pe-lg-0 {
  7918. padding-right: 0 !important;
  7919. }
  7920. .pe-lg-1 {
  7921. padding-right: 0.25rem !important;
  7922. }
  7923. .pe-lg-2 {
  7924. padding-right: 0.5rem !important;
  7925. }
  7926. .pe-lg-3 {
  7927. padding-right: 1rem !important;
  7928. }
  7929. .pe-lg-4 {
  7930. padding-right: 1.5rem !important;
  7931. }
  7932. .pe-lg-5 {
  7933. padding-right: 3rem !important;
  7934. }
  7935. .pb-lg-0 {
  7936. padding-bottom: 0 !important;
  7937. }
  7938. .pb-lg-1 {
  7939. padding-bottom: 0.25rem !important;
  7940. }
  7941. .pb-lg-2 {
  7942. padding-bottom: 0.5rem !important;
  7943. }
  7944. .pb-lg-3 {
  7945. padding-bottom: 1rem !important;
  7946. }
  7947. .pb-lg-4 {
  7948. padding-bottom: 1.5rem !important;
  7949. }
  7950. .pb-lg-5 {
  7951. padding-bottom: 3rem !important;
  7952. }
  7953. .ps-lg-0 {
  7954. padding-left: 0 !important;
  7955. }
  7956. .ps-lg-1 {
  7957. padding-left: 0.25rem !important;
  7958. }
  7959. .ps-lg-2 {
  7960. padding-left: 0.5rem !important;
  7961. }
  7962. .ps-lg-3 {
  7963. padding-left: 1rem !important;
  7964. }
  7965. .ps-lg-4 {
  7966. padding-left: 1.5rem !important;
  7967. }
  7968. .ps-lg-5 {
  7969. padding-left: 3rem !important;
  7970. }
  7971. .text-lg-start {
  7972. text-align: left !important;
  7973. }
  7974. .text-lg-end {
  7975. text-align: right !important;
  7976. }
  7977. .text-lg-center {
  7978. text-align: center !important;
  7979. }
  7980. }
  7981. @media (min-width: 1200px) {
  7982. .float-xl-start {
  7983. float: left !important;
  7984. }
  7985. .float-xl-end {
  7986. float: right !important;
  7987. }
  7988. .float-xl-none {
  7989. float: none !important;
  7990. }
  7991. .d-xl-inline {
  7992. display: inline !important;
  7993. }
  7994. .d-xl-inline-block {
  7995. display: inline-block !important;
  7996. }
  7997. .d-xl-block {
  7998. display: block !important;
  7999. }
  8000. .d-xl-grid {
  8001. display: grid !important;
  8002. }
  8003. .d-xl-table {
  8004. display: table !important;
  8005. }
  8006. .d-xl-table-row {
  8007. display: table-row !important;
  8008. }
  8009. .d-xl-table-cell {
  8010. display: table-cell !important;
  8011. }
  8012. .d-xl-flex {
  8013. display: flex !important;
  8014. }
  8015. .d-xl-inline-flex {
  8016. display: inline-flex !important;
  8017. }
  8018. .d-xl-none {
  8019. display: none !important;
  8020. }
  8021. .flex-xl-fill {
  8022. flex: 1 1 auto !important;
  8023. }
  8024. .flex-xl-row {
  8025. flex-direction: row !important;
  8026. }
  8027. .flex-xl-column {
  8028. flex-direction: column !important;
  8029. }
  8030. .flex-xl-row-reverse {
  8031. flex-direction: row-reverse !important;
  8032. }
  8033. .flex-xl-column-reverse {
  8034. flex-direction: column-reverse !important;
  8035. }
  8036. .flex-xl-grow-0 {
  8037. flex-grow: 0 !important;
  8038. }
  8039. .flex-xl-grow-1 {
  8040. flex-grow: 1 !important;
  8041. }
  8042. .flex-xl-shrink-0 {
  8043. flex-shrink: 0 !important;
  8044. }
  8045. .flex-xl-shrink-1 {
  8046. flex-shrink: 1 !important;
  8047. }
  8048. .flex-xl-wrap {
  8049. flex-wrap: wrap !important;
  8050. }
  8051. .flex-xl-nowrap {
  8052. flex-wrap: nowrap !important;
  8053. }
  8054. .flex-xl-wrap-reverse {
  8055. flex-wrap: wrap-reverse !important;
  8056. }
  8057. .gap-xl-0 {
  8058. gap: 0 !important;
  8059. }
  8060. .gap-xl-1 {
  8061. gap: 0.25rem !important;
  8062. }
  8063. .gap-xl-2 {
  8064. gap: 0.5rem !important;
  8065. }
  8066. .gap-xl-3 {
  8067. gap: 1rem !important;
  8068. }
  8069. .gap-xl-4 {
  8070. gap: 1.5rem !important;
  8071. }
  8072. .gap-xl-5 {
  8073. gap: 3rem !important;
  8074. }
  8075. .justify-content-xl-start {
  8076. justify-content: flex-start !important;
  8077. }
  8078. .justify-content-xl-end {
  8079. justify-content: flex-end !important;
  8080. }
  8081. .justify-content-xl-center {
  8082. justify-content: center !important;
  8083. }
  8084. .justify-content-xl-between {
  8085. justify-content: space-between !important;
  8086. }
  8087. .justify-content-xl-around {
  8088. justify-content: space-around !important;
  8089. }
  8090. .justify-content-xl-evenly {
  8091. justify-content: space-evenly !important;
  8092. }
  8093. .align-items-xl-start {
  8094. align-items: flex-start !important;
  8095. }
  8096. .align-items-xl-end {
  8097. align-items: flex-end !important;
  8098. }
  8099. .align-items-xl-center {
  8100. align-items: center !important;
  8101. }
  8102. .align-items-xl-baseline {
  8103. align-items: baseline !important;
  8104. }
  8105. .align-items-xl-stretch {
  8106. align-items: stretch !important;
  8107. }
  8108. .align-content-xl-start {
  8109. align-content: flex-start !important;
  8110. }
  8111. .align-content-xl-end {
  8112. align-content: flex-end !important;
  8113. }
  8114. .align-content-xl-center {
  8115. align-content: center !important;
  8116. }
  8117. .align-content-xl-between {
  8118. align-content: space-between !important;
  8119. }
  8120. .align-content-xl-around {
  8121. align-content: space-around !important;
  8122. }
  8123. .align-content-xl-stretch {
  8124. align-content: stretch !important;
  8125. }
  8126. .align-self-xl-auto {
  8127. align-self: auto !important;
  8128. }
  8129. .align-self-xl-start {
  8130. align-self: flex-start !important;
  8131. }
  8132. .align-self-xl-end {
  8133. align-self: flex-end !important;
  8134. }
  8135. .align-self-xl-center {
  8136. align-self: center !important;
  8137. }
  8138. .align-self-xl-baseline {
  8139. align-self: baseline !important;
  8140. }
  8141. .align-self-xl-stretch {
  8142. align-self: stretch !important;
  8143. }
  8144. .order-xl-first {
  8145. order: -1 !important;
  8146. }
  8147. .order-xl-0 {
  8148. order: 0 !important;
  8149. }
  8150. .order-xl-1 {
  8151. order: 1 !important;
  8152. }
  8153. .order-xl-2 {
  8154. order: 2 !important;
  8155. }
  8156. .order-xl-3 {
  8157. order: 3 !important;
  8158. }
  8159. .order-xl-4 {
  8160. order: 4 !important;
  8161. }
  8162. .order-xl-5 {
  8163. order: 5 !important;
  8164. }
  8165. .order-xl-last {
  8166. order: 6 !important;
  8167. }
  8168. .m-xl-0 {
  8169. margin: 0 !important;
  8170. }
  8171. .m-xl-1 {
  8172. margin: 0.25rem !important;
  8173. }
  8174. .m-xl-2 {
  8175. margin: 0.5rem !important;
  8176. }
  8177. .m-xl-3 {
  8178. margin: 1rem !important;
  8179. }
  8180. .m-xl-4 {
  8181. margin: 1.5rem !important;
  8182. }
  8183. .m-xl-5 {
  8184. margin: 3rem !important;
  8185. }
  8186. .m-xl-auto {
  8187. margin: auto !important;
  8188. }
  8189. .mx-xl-0 {
  8190. margin-right: 0 !important;
  8191. margin-left: 0 !important;
  8192. }
  8193. .mx-xl-1 {
  8194. margin-right: 0.25rem !important;
  8195. margin-left: 0.25rem !important;
  8196. }
  8197. .mx-xl-2 {
  8198. margin-right: 0.5rem !important;
  8199. margin-left: 0.5rem !important;
  8200. }
  8201. .mx-xl-3 {
  8202. margin-right: 1rem !important;
  8203. margin-left: 1rem !important;
  8204. }
  8205. .mx-xl-4 {
  8206. margin-right: 1.5rem !important;
  8207. margin-left: 1.5rem !important;
  8208. }
  8209. .mx-xl-5 {
  8210. margin-right: 3rem !important;
  8211. margin-left: 3rem !important;
  8212. }
  8213. .mx-xl-auto {
  8214. margin-right: auto !important;
  8215. margin-left: auto !important;
  8216. }
  8217. .my-xl-0 {
  8218. margin-top: 0 !important;
  8219. margin-bottom: 0 !important;
  8220. }
  8221. .my-xl-1 {
  8222. margin-top: 0.25rem !important;
  8223. margin-bottom: 0.25rem !important;
  8224. }
  8225. .my-xl-2 {
  8226. margin-top: 0.5rem !important;
  8227. margin-bottom: 0.5rem !important;
  8228. }
  8229. .my-xl-3 {
  8230. margin-top: 1rem !important;
  8231. margin-bottom: 1rem !important;
  8232. }
  8233. .my-xl-4 {
  8234. margin-top: 1.5rem !important;
  8235. margin-bottom: 1.5rem !important;
  8236. }
  8237. .my-xl-5 {
  8238. margin-top: 3rem !important;
  8239. margin-bottom: 3rem !important;
  8240. }
  8241. .my-xl-auto {
  8242. margin-top: auto !important;
  8243. margin-bottom: auto !important;
  8244. }
  8245. .mt-xl-0 {
  8246. margin-top: 0 !important;
  8247. }
  8248. .mt-xl-1 {
  8249. margin-top: 0.25rem !important;
  8250. }
  8251. .mt-xl-2 {
  8252. margin-top: 0.5rem !important;
  8253. }
  8254. .mt-xl-3 {
  8255. margin-top: 1rem !important;
  8256. }
  8257. .mt-xl-4 {
  8258. margin-top: 1.5rem !important;
  8259. }
  8260. .mt-xl-5 {
  8261. margin-top: 3rem !important;
  8262. }
  8263. .mt-xl-auto {
  8264. margin-top: auto !important;
  8265. }
  8266. .me-xl-0 {
  8267. margin-right: 0 !important;
  8268. }
  8269. .me-xl-1 {
  8270. margin-right: 0.25rem !important;
  8271. }
  8272. .me-xl-2 {
  8273. margin-right: 0.5rem !important;
  8274. }
  8275. .me-xl-3 {
  8276. margin-right: 1rem !important;
  8277. }
  8278. .me-xl-4 {
  8279. margin-right: 1.5rem !important;
  8280. }
  8281. .me-xl-5 {
  8282. margin-right: 3rem !important;
  8283. }
  8284. .me-xl-auto {
  8285. margin-right: auto !important;
  8286. }
  8287. .mb-xl-0 {
  8288. margin-bottom: 0 !important;
  8289. }
  8290. .mb-xl-1 {
  8291. margin-bottom: 0.25rem !important;
  8292. }
  8293. .mb-xl-2 {
  8294. margin-bottom: 0.5rem !important;
  8295. }
  8296. .mb-xl-3 {
  8297. margin-bottom: 1rem !important;
  8298. }
  8299. .mb-xl-4 {
  8300. margin-bottom: 1.5rem !important;
  8301. }
  8302. .mb-xl-5 {
  8303. margin-bottom: 3rem !important;
  8304. }
  8305. .mb-xl-auto {
  8306. margin-bottom: auto !important;
  8307. }
  8308. .ms-xl-0 {
  8309. margin-left: 0 !important;
  8310. }
  8311. .ms-xl-1 {
  8312. margin-left: 0.25rem !important;
  8313. }
  8314. .ms-xl-2 {
  8315. margin-left: 0.5rem !important;
  8316. }
  8317. .ms-xl-3 {
  8318. margin-left: 1rem !important;
  8319. }
  8320. .ms-xl-4 {
  8321. margin-left: 1.5rem !important;
  8322. }
  8323. .ms-xl-5 {
  8324. margin-left: 3rem !important;
  8325. }
  8326. .ms-xl-auto {
  8327. margin-left: auto !important;
  8328. }
  8329. .p-xl-0 {
  8330. padding: 0 !important;
  8331. }
  8332. .p-xl-1 {
  8333. padding: 0.25rem !important;
  8334. }
  8335. .p-xl-2 {
  8336. padding: 0.5rem !important;
  8337. }
  8338. .p-xl-3 {
  8339. padding: 1rem !important;
  8340. }
  8341. .p-xl-4 {
  8342. padding: 1.5rem !important;
  8343. }
  8344. .p-xl-5 {
  8345. padding: 3rem !important;
  8346. }
  8347. .px-xl-0 {
  8348. padding-right: 0 !important;
  8349. padding-left: 0 !important;
  8350. }
  8351. .px-xl-1 {
  8352. padding-right: 0.25rem !important;
  8353. padding-left: 0.25rem !important;
  8354. }
  8355. .px-xl-2 {
  8356. padding-right: 0.5rem !important;
  8357. padding-left: 0.5rem !important;
  8358. }
  8359. .px-xl-3 {
  8360. padding-right: 1rem !important;
  8361. padding-left: 1rem !important;
  8362. }
  8363. .px-xl-4 {
  8364. padding-right: 1.5rem !important;
  8365. padding-left: 1.5rem !important;
  8366. }
  8367. .px-xl-5 {
  8368. padding-right: 3rem !important;
  8369. padding-left: 3rem !important;
  8370. }
  8371. .py-xl-0 {
  8372. padding-top: 0 !important;
  8373. padding-bottom: 0 !important;
  8374. }
  8375. .py-xl-1 {
  8376. padding-top: 0.25rem !important;
  8377. padding-bottom: 0.25rem !important;
  8378. }
  8379. .py-xl-2 {
  8380. padding-top: 0.5rem !important;
  8381. padding-bottom: 0.5rem !important;
  8382. }
  8383. .py-xl-3 {
  8384. padding-top: 1rem !important;
  8385. padding-bottom: 1rem !important;
  8386. }
  8387. .py-xl-4 {
  8388. padding-top: 1.5rem !important;
  8389. padding-bottom: 1.5rem !important;
  8390. }
  8391. .py-xl-5 {
  8392. padding-top: 3rem !important;
  8393. padding-bottom: 3rem !important;
  8394. }
  8395. .pt-xl-0 {
  8396. padding-top: 0 !important;
  8397. }
  8398. .pt-xl-1 {
  8399. padding-top: 0.25rem !important;
  8400. }
  8401. .pt-xl-2 {
  8402. padding-top: 0.5rem !important;
  8403. }
  8404. .pt-xl-3 {
  8405. padding-top: 1rem !important;
  8406. }
  8407. .pt-xl-4 {
  8408. padding-top: 1.5rem !important;
  8409. }
  8410. .pt-xl-5 {
  8411. padding-top: 3rem !important;
  8412. }
  8413. .pe-xl-0 {
  8414. padding-right: 0 !important;
  8415. }
  8416. .pe-xl-1 {
  8417. padding-right: 0.25rem !important;
  8418. }
  8419. .pe-xl-2 {
  8420. padding-right: 0.5rem !important;
  8421. }
  8422. .pe-xl-3 {
  8423. padding-right: 1rem !important;
  8424. }
  8425. .pe-xl-4 {
  8426. padding-right: 1.5rem !important;
  8427. }
  8428. .pe-xl-5 {
  8429. padding-right: 3rem !important;
  8430. }
  8431. .pb-xl-0 {
  8432. padding-bottom: 0 !important;
  8433. }
  8434. .pb-xl-1 {
  8435. padding-bottom: 0.25rem !important;
  8436. }
  8437. .pb-xl-2 {
  8438. padding-bottom: 0.5rem !important;
  8439. }
  8440. .pb-xl-3 {
  8441. padding-bottom: 1rem !important;
  8442. }
  8443. .pb-xl-4 {
  8444. padding-bottom: 1.5rem !important;
  8445. }
  8446. .pb-xl-5 {
  8447. padding-bottom: 3rem !important;
  8448. }
  8449. .ps-xl-0 {
  8450. padding-left: 0 !important;
  8451. }
  8452. .ps-xl-1 {
  8453. padding-left: 0.25rem !important;
  8454. }
  8455. .ps-xl-2 {
  8456. padding-left: 0.5rem !important;
  8457. }
  8458. .ps-xl-3 {
  8459. padding-left: 1rem !important;
  8460. }
  8461. .ps-xl-4 {
  8462. padding-left: 1.5rem !important;
  8463. }
  8464. .ps-xl-5 {
  8465. padding-left: 3rem !important;
  8466. }
  8467. .text-xl-start {
  8468. text-align: left !important;
  8469. }
  8470. .text-xl-end {
  8471. text-align: right !important;
  8472. }
  8473. .text-xl-center {
  8474. text-align: center !important;
  8475. }
  8476. }
  8477. @media (min-width: 1400px) {
  8478. .float-xxl-start {
  8479. float: left !important;
  8480. }
  8481. .float-xxl-end {
  8482. float: right !important;
  8483. }
  8484. .float-xxl-none {
  8485. float: none !important;
  8486. }
  8487. .d-xxl-inline {
  8488. display: inline !important;
  8489. }
  8490. .d-xxl-inline-block {
  8491. display: inline-block !important;
  8492. }
  8493. .d-xxl-block {
  8494. display: block !important;
  8495. }
  8496. .d-xxl-grid {
  8497. display: grid !important;
  8498. }
  8499. .d-xxl-table {
  8500. display: table !important;
  8501. }
  8502. .d-xxl-table-row {
  8503. display: table-row !important;
  8504. }
  8505. .d-xxl-table-cell {
  8506. display: table-cell !important;
  8507. }
  8508. .d-xxl-flex {
  8509. display: flex !important;
  8510. }
  8511. .d-xxl-inline-flex {
  8512. display: inline-flex !important;
  8513. }
  8514. .d-xxl-none {
  8515. display: none !important;
  8516. }
  8517. .flex-xxl-fill {
  8518. flex: 1 1 auto !important;
  8519. }
  8520. .flex-xxl-row {
  8521. flex-direction: row !important;
  8522. }
  8523. .flex-xxl-column {
  8524. flex-direction: column !important;
  8525. }
  8526. .flex-xxl-row-reverse {
  8527. flex-direction: row-reverse !important;
  8528. }
  8529. .flex-xxl-column-reverse {
  8530. flex-direction: column-reverse !important;
  8531. }
  8532. .flex-xxl-grow-0 {
  8533. flex-grow: 0 !important;
  8534. }
  8535. .flex-xxl-grow-1 {
  8536. flex-grow: 1 !important;
  8537. }
  8538. .flex-xxl-shrink-0 {
  8539. flex-shrink: 0 !important;
  8540. }
  8541. .flex-xxl-shrink-1 {
  8542. flex-shrink: 1 !important;
  8543. }
  8544. .flex-xxl-wrap {
  8545. flex-wrap: wrap !important;
  8546. }
  8547. .flex-xxl-nowrap {
  8548. flex-wrap: nowrap !important;
  8549. }
  8550. .flex-xxl-wrap-reverse {
  8551. flex-wrap: wrap-reverse !important;
  8552. }
  8553. .gap-xxl-0 {
  8554. gap: 0 !important;
  8555. }
  8556. .gap-xxl-1 {
  8557. gap: 0.25rem !important;
  8558. }
  8559. .gap-xxl-2 {
  8560. gap: 0.5rem !important;
  8561. }
  8562. .gap-xxl-3 {
  8563. gap: 1rem !important;
  8564. }
  8565. .gap-xxl-4 {
  8566. gap: 1.5rem !important;
  8567. }
  8568. .gap-xxl-5 {
  8569. gap: 3rem !important;
  8570. }
  8571. .justify-content-xxl-start {
  8572. justify-content: flex-start !important;
  8573. }
  8574. .justify-content-xxl-end {
  8575. justify-content: flex-end !important;
  8576. }
  8577. .justify-content-xxl-center {
  8578. justify-content: center !important;
  8579. }
  8580. .justify-content-xxl-between {
  8581. justify-content: space-between !important;
  8582. }
  8583. .justify-content-xxl-around {
  8584. justify-content: space-around !important;
  8585. }
  8586. .justify-content-xxl-evenly {
  8587. justify-content: space-evenly !important;
  8588. }
  8589. .align-items-xxl-start {
  8590. align-items: flex-start !important;
  8591. }
  8592. .align-items-xxl-end {
  8593. align-items: flex-end !important;
  8594. }
  8595. .align-items-xxl-center {
  8596. align-items: center !important;
  8597. }
  8598. .align-items-xxl-baseline {
  8599. align-items: baseline !important;
  8600. }
  8601. .align-items-xxl-stretch {
  8602. align-items: stretch !important;
  8603. }
  8604. .align-content-xxl-start {
  8605. align-content: flex-start !important;
  8606. }
  8607. .align-content-xxl-end {
  8608. align-content: flex-end !important;
  8609. }
  8610. .align-content-xxl-center {
  8611. align-content: center !important;
  8612. }
  8613. .align-content-xxl-between {
  8614. align-content: space-between !important;
  8615. }
  8616. .align-content-xxl-around {
  8617. align-content: space-around !important;
  8618. }
  8619. .align-content-xxl-stretch {
  8620. align-content: stretch !important;
  8621. }
  8622. .align-self-xxl-auto {
  8623. align-self: auto !important;
  8624. }
  8625. .align-self-xxl-start {
  8626. align-self: flex-start !important;
  8627. }
  8628. .align-self-xxl-end {
  8629. align-self: flex-end !important;
  8630. }
  8631. .align-self-xxl-center {
  8632. align-self: center !important;
  8633. }
  8634. .align-self-xxl-baseline {
  8635. align-self: baseline !important;
  8636. }
  8637. .align-self-xxl-stretch {
  8638. align-self: stretch !important;
  8639. }
  8640. .order-xxl-first {
  8641. order: -1 !important;
  8642. }
  8643. .order-xxl-0 {
  8644. order: 0 !important;
  8645. }
  8646. .order-xxl-1 {
  8647. order: 1 !important;
  8648. }
  8649. .order-xxl-2 {
  8650. order: 2 !important;
  8651. }
  8652. .order-xxl-3 {
  8653. order: 3 !important;
  8654. }
  8655. .order-xxl-4 {
  8656. order: 4 !important;
  8657. }
  8658. .order-xxl-5 {
  8659. order: 5 !important;
  8660. }
  8661. .order-xxl-last {
  8662. order: 6 !important;
  8663. }
  8664. .m-xxl-0 {
  8665. margin: 0 !important;
  8666. }
  8667. .m-xxl-1 {
  8668. margin: 0.25rem !important;
  8669. }
  8670. .m-xxl-2 {
  8671. margin: 0.5rem !important;
  8672. }
  8673. .m-xxl-3 {
  8674. margin: 1rem !important;
  8675. }
  8676. .m-xxl-4 {
  8677. margin: 1.5rem !important;
  8678. }
  8679. .m-xxl-5 {
  8680. margin: 3rem !important;
  8681. }
  8682. .m-xxl-auto {
  8683. margin: auto !important;
  8684. }
  8685. .mx-xxl-0 {
  8686. margin-right: 0 !important;
  8687. margin-left: 0 !important;
  8688. }
  8689. .mx-xxl-1 {
  8690. margin-right: 0.25rem !important;
  8691. margin-left: 0.25rem !important;
  8692. }
  8693. .mx-xxl-2 {
  8694. margin-right: 0.5rem !important;
  8695. margin-left: 0.5rem !important;
  8696. }
  8697. .mx-xxl-3 {
  8698. margin-right: 1rem !important;
  8699. margin-left: 1rem !important;
  8700. }
  8701. .mx-xxl-4 {
  8702. margin-right: 1.5rem !important;
  8703. margin-left: 1.5rem !important;
  8704. }
  8705. .mx-xxl-5 {
  8706. margin-right: 3rem !important;
  8707. margin-left: 3rem !important;
  8708. }
  8709. .mx-xxl-auto {
  8710. margin-right: auto !important;
  8711. margin-left: auto !important;
  8712. }
  8713. .my-xxl-0 {
  8714. margin-top: 0 !important;
  8715. margin-bottom: 0 !important;
  8716. }
  8717. .my-xxl-1 {
  8718. margin-top: 0.25rem !important;
  8719. margin-bottom: 0.25rem !important;
  8720. }
  8721. .my-xxl-2 {
  8722. margin-top: 0.5rem !important;
  8723. margin-bottom: 0.5rem !important;
  8724. }
  8725. .my-xxl-3 {
  8726. margin-top: 1rem !important;
  8727. margin-bottom: 1rem !important;
  8728. }
  8729. .my-xxl-4 {
  8730. margin-top: 1.5rem !important;
  8731. margin-bottom: 1.5rem !important;
  8732. }
  8733. .my-xxl-5 {
  8734. margin-top: 3rem !important;
  8735. margin-bottom: 3rem !important;
  8736. }
  8737. .my-xxl-auto {
  8738. margin-top: auto !important;
  8739. margin-bottom: auto !important;
  8740. }
  8741. .mt-xxl-0 {
  8742. margin-top: 0 !important;
  8743. }
  8744. .mt-xxl-1 {
  8745. margin-top: 0.25rem !important;
  8746. }
  8747. .mt-xxl-2 {
  8748. margin-top: 0.5rem !important;
  8749. }
  8750. .mt-xxl-3 {
  8751. margin-top: 1rem !important;
  8752. }
  8753. .mt-xxl-4 {
  8754. margin-top: 1.5rem !important;
  8755. }
  8756. .mt-xxl-5 {
  8757. margin-top: 3rem !important;
  8758. }
  8759. .mt-xxl-auto {
  8760. margin-top: auto !important;
  8761. }
  8762. .me-xxl-0 {
  8763. margin-right: 0 !important;
  8764. }
  8765. .me-xxl-1 {
  8766. margin-right: 0.25rem !important;
  8767. }
  8768. .me-xxl-2 {
  8769. margin-right: 0.5rem !important;
  8770. }
  8771. .me-xxl-3 {
  8772. margin-right: 1rem !important;
  8773. }
  8774. .me-xxl-4 {
  8775. margin-right: 1.5rem !important;
  8776. }
  8777. .me-xxl-5 {
  8778. margin-right: 3rem !important;
  8779. }
  8780. .me-xxl-auto {
  8781. margin-right: auto !important;
  8782. }
  8783. .mb-xxl-0 {
  8784. margin-bottom: 0 !important;
  8785. }
  8786. .mb-xxl-1 {
  8787. margin-bottom: 0.25rem !important;
  8788. }
  8789. .mb-xxl-2 {
  8790. margin-bottom: 0.5rem !important;
  8791. }
  8792. .mb-xxl-3 {
  8793. margin-bottom: 1rem !important;
  8794. }
  8795. .mb-xxl-4 {
  8796. margin-bottom: 1.5rem !important;
  8797. }
  8798. .mb-xxl-5 {
  8799. margin-bottom: 3rem !important;
  8800. }
  8801. .mb-xxl-auto {
  8802. margin-bottom: auto !important;
  8803. }
  8804. .ms-xxl-0 {
  8805. margin-left: 0 !important;
  8806. }
  8807. .ms-xxl-1 {
  8808. margin-left: 0.25rem !important;
  8809. }
  8810. .ms-xxl-2 {
  8811. margin-left: 0.5rem !important;
  8812. }
  8813. .ms-xxl-3 {
  8814. margin-left: 1rem !important;
  8815. }
  8816. .ms-xxl-4 {
  8817. margin-left: 1.5rem !important;
  8818. }
  8819. .ms-xxl-5 {
  8820. margin-left: 3rem !important;
  8821. }
  8822. .ms-xxl-auto {
  8823. margin-left: auto !important;
  8824. }
  8825. .p-xxl-0 {
  8826. padding: 0 !important;
  8827. }
  8828. .p-xxl-1 {
  8829. padding: 0.25rem !important;
  8830. }
  8831. .p-xxl-2 {
  8832. padding: 0.5rem !important;
  8833. }
  8834. .p-xxl-3 {
  8835. padding: 1rem !important;
  8836. }
  8837. .p-xxl-4 {
  8838. padding: 1.5rem !important;
  8839. }
  8840. .p-xxl-5 {
  8841. padding: 3rem !important;
  8842. }
  8843. .px-xxl-0 {
  8844. padding-right: 0 !important;
  8845. padding-left: 0 !important;
  8846. }
  8847. .px-xxl-1 {
  8848. padding-right: 0.25rem !important;
  8849. padding-left: 0.25rem !important;
  8850. }
  8851. .px-xxl-2 {
  8852. padding-right: 0.5rem !important;
  8853. padding-left: 0.5rem !important;
  8854. }
  8855. .px-xxl-3 {
  8856. padding-right: 1rem !important;
  8857. padding-left: 1rem !important;
  8858. }
  8859. .px-xxl-4 {
  8860. padding-right: 1.5rem !important;
  8861. padding-left: 1.5rem !important;
  8862. }
  8863. .px-xxl-5 {
  8864. padding-right: 3rem !important;
  8865. padding-left: 3rem !important;
  8866. }
  8867. .py-xxl-0 {
  8868. padding-top: 0 !important;
  8869. padding-bottom: 0 !important;
  8870. }
  8871. .py-xxl-1 {
  8872. padding-top: 0.25rem !important;
  8873. padding-bottom: 0.25rem !important;
  8874. }
  8875. .py-xxl-2 {
  8876. padding-top: 0.5rem !important;
  8877. padding-bottom: 0.5rem !important;
  8878. }
  8879. .py-xxl-3 {
  8880. padding-top: 1rem !important;
  8881. padding-bottom: 1rem !important;
  8882. }
  8883. .py-xxl-4 {
  8884. padding-top: 1.5rem !important;
  8885. padding-bottom: 1.5rem !important;
  8886. }
  8887. .py-xxl-5 {
  8888. padding-top: 3rem !important;
  8889. padding-bottom: 3rem !important;
  8890. }
  8891. .pt-xxl-0 {
  8892. padding-top: 0 !important;
  8893. }
  8894. .pt-xxl-1 {
  8895. padding-top: 0.25rem !important;
  8896. }
  8897. .pt-xxl-2 {
  8898. padding-top: 0.5rem !important;
  8899. }
  8900. .pt-xxl-3 {
  8901. padding-top: 1rem !important;
  8902. }
  8903. .pt-xxl-4 {
  8904. padding-top: 1.5rem !important;
  8905. }
  8906. .pt-xxl-5 {
  8907. padding-top: 3rem !important;
  8908. }
  8909. .pe-xxl-0 {
  8910. padding-right: 0 !important;
  8911. }
  8912. .pe-xxl-1 {
  8913. padding-right: 0.25rem !important;
  8914. }
  8915. .pe-xxl-2 {
  8916. padding-right: 0.5rem !important;
  8917. }
  8918. .pe-xxl-3 {
  8919. padding-right: 1rem !important;
  8920. }
  8921. .pe-xxl-4 {
  8922. padding-right: 1.5rem !important;
  8923. }
  8924. .pe-xxl-5 {
  8925. padding-right: 3rem !important;
  8926. }
  8927. .pb-xxl-0 {
  8928. padding-bottom: 0 !important;
  8929. }
  8930. .pb-xxl-1 {
  8931. padding-bottom: 0.25rem !important;
  8932. }
  8933. .pb-xxl-2 {
  8934. padding-bottom: 0.5rem !important;
  8935. }
  8936. .pb-xxl-3 {
  8937. padding-bottom: 1rem !important;
  8938. }
  8939. .pb-xxl-4 {
  8940. padding-bottom: 1.5rem !important;
  8941. }
  8942. .pb-xxl-5 {
  8943. padding-bottom: 3rem !important;
  8944. }
  8945. .ps-xxl-0 {
  8946. padding-left: 0 !important;
  8947. }
  8948. .ps-xxl-1 {
  8949. padding-left: 0.25rem !important;
  8950. }
  8951. .ps-xxl-2 {
  8952. padding-left: 0.5rem !important;
  8953. }
  8954. .ps-xxl-3 {
  8955. padding-left: 1rem !important;
  8956. }
  8957. .ps-xxl-4 {
  8958. padding-left: 1.5rem !important;
  8959. }
  8960. .ps-xxl-5 {
  8961. padding-left: 3rem !important;
  8962. }
  8963. .text-xxl-start {
  8964. text-align: left !important;
  8965. }
  8966. .text-xxl-end {
  8967. text-align: right !important;
  8968. }
  8969. .text-xxl-center {
  8970. text-align: center !important;
  8971. }
  8972. }
  8973. @media (min-width: 1200px) {
  8974. .fs-1 {
  8975. font-size: 2.5rem !important;
  8976. }
  8977. .fs-2 {
  8978. font-size: 2rem !important;
  8979. }
  8980. .fs-3 {
  8981. font-size: 1.75rem !important;
  8982. }
  8983. .fs-4 {
  8984. font-size: 1.5rem !important;
  8985. }
  8986. }
  8987. @media print {
  8988. .d-print-inline {
  8989. display: inline !important;
  8990. }
  8991. .d-print-inline-block {
  8992. display: inline-block !important;
  8993. }
  8994. .d-print-block {
  8995. display: block !important;
  8996. }
  8997. .d-print-grid {
  8998. display: grid !important;
  8999. }
  9000. .d-print-table {
  9001. display: table !important;
  9002. }
  9003. .d-print-table-row {
  9004. display: table-row !important;
  9005. }
  9006. .d-print-table-cell {
  9007. display: table-cell !important;
  9008. }
  9009. .d-print-flex {
  9010. display: flex !important;
  9011. }
  9012. .d-print-inline-flex {
  9013. display: inline-flex !important;
  9014. }
  9015. .d-print-none {
  9016. display: none !important;
  9017. }
  9018. }
  9019. /*# sourceMappingURL=bootstrap.css.map */