text4u
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

styles.css 244KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243
  1. @charset "UTF-8";
  2. /*!
  3. * Start Bootstrap - SB Admin v7.0.7 (https://startbootstrap.com/template/sb-admin)
  4. * Copyright 2013-2023 Start Bootstrap
  5. * Licensed under MIT (https://github.com/StartBootstrap/startbootstrap-sb-admin/blob/master/LICENSE)
  6. */
  7. /*!
  8. * Bootstrap v5.2.3 (https://getbootstrap.com/)
  9. * Copyright 2011-2022 The Bootstrap Authors
  10. * Copyright 2011-2022 Twitter, Inc.
  11. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
  12. */
  13. :root {
  14. --bs-blue: #0d6efd;
  15. --bs-indigo: #6610f2;
  16. --bs-purple: #6f42c1;
  17. --bs-pink: #d63384;
  18. --bs-red: #dc3545;
  19. --bs-orange: #fd7e14;
  20. --bs-yellow: #ffc107;
  21. --bs-green: #198754;
  22. --bs-teal: #20c997;
  23. --bs-cyan: #0dcaf0;
  24. --bs-black: #000;
  25. --bs-white: #fff;
  26. --bs-gray: #6c757d;
  27. --bs-gray-dark: #343a40;
  28. --bs-gray-100: #f8f9fa;
  29. --bs-gray-200: #e9ecef;
  30. --bs-gray-300: #dee2e6;
  31. --bs-gray-400: #ced4da;
  32. --bs-gray-500: #adb5bd;
  33. --bs-gray-600: #6c757d;
  34. --bs-gray-700: #495057;
  35. --bs-gray-800: #343a40;
  36. --bs-gray-900: #212529;
  37. --bs-primary: #0d6efd;
  38. --bs-secondary: #6c757d;
  39. --bs-success: #198754;
  40. --bs-info: #0dcaf0;
  41. --bs-warning: #ffc107;
  42. --bs-danger: #dc3545;
  43. --bs-light: #f8f9fa;
  44. --bs-dark: #212529;
  45. --bs-primary-rgb: 13, 110, 253;
  46. --bs-secondary-rgb: 108, 117, 125;
  47. --bs-success-rgb: 25, 135, 84;
  48. --bs-info-rgb: 13, 202, 240;
  49. --bs-warning-rgb: 255, 193, 7;
  50. --bs-danger-rgb: 220, 53, 69;
  51. --bs-light-rgb: 248, 249, 250;
  52. --bs-dark-rgb: 33, 37, 41;
  53. --bs-white-rgb: 255, 255, 255;
  54. --bs-black-rgb: 0, 0, 0;
  55. --bs-body-color-rgb: 33, 37, 41;
  56. --bs-body-bg-rgb: 255, 255, 255;
  57. --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  58. --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  59. --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  60. --bs-body-font-family: var(--bs-font-sans-serif);
  61. --bs-body-font-size: 1rem;
  62. --bs-body-font-weight: 400;
  63. --bs-body-line-height: 1.5;
  64. --bs-body-color: #212529;
  65. --bs-body-bg: #fff;
  66. --bs-border-width: 1px;
  67. --bs-border-style: solid;
  68. --bs-border-color: #dee2e6;
  69. --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  70. --bs-border-radius: 0.375rem;
  71. --bs-border-radius-sm: 0.25rem;
  72. --bs-border-radius-lg: 0.5rem;
  73. --bs-border-radius-xl: 1rem;
  74. --bs-border-radius-2xl: 2rem;
  75. --bs-border-radius-pill: 50rem;
  76. --bs-link-color: #0d6efd;
  77. --bs-link-hover-color: #0a58ca;
  78. --bs-code-color: #d63384;
  79. --bs-highlight-bg: #fff3cd;
  80. }
  81. *,
  82. *::before,
  83. *::after {
  84. box-sizing: border-box;
  85. }
  86. @media (prefers-reduced-motion: no-preference) {
  87. :root {
  88. scroll-behavior: smooth;
  89. }
  90. }
  91. body {
  92. margin: 0;
  93. font-family: var(--bs-body-font-family);
  94. font-size: var(--bs-body-font-size);
  95. font-weight: var(--bs-body-font-weight);
  96. line-height: var(--bs-body-line-height);
  97. color: var(--bs-body-color);
  98. text-align: var(--bs-body-text-align);
  99. background-color: var(--bs-body-bg);
  100. -webkit-text-size-adjust: 100%;
  101. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  102. }
  103. hr {
  104. margin: 1rem 0;
  105. color: inherit;
  106. border: 0;
  107. border-top: 1px solid;
  108. opacity: 0.25;
  109. }
  110. h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  111. margin-top: 0;
  112. margin-bottom: 0.5rem;
  113. font-weight: 500;
  114. line-height: 1.2;
  115. }
  116. h1, .h1 {
  117. font-size: calc(1.375rem + 1.5vw);
  118. }
  119. @media (min-width: 1200px) {
  120. h1, .h1 {
  121. font-size: 2.5rem;
  122. }
  123. }
  124. h2, .h2 {
  125. font-size: calc(1.325rem + 0.9vw);
  126. }
  127. @media (min-width: 1200px) {
  128. h2, .h2 {
  129. font-size: 2rem;
  130. }
  131. }
  132. h3, .h3 {
  133. font-size: calc(1.3rem + 0.6vw);
  134. }
  135. @media (min-width: 1200px) {
  136. h3, .h3 {
  137. font-size: 1.75rem;
  138. }
  139. }
  140. h4, .h4 {
  141. font-size: calc(1.275rem + 0.3vw);
  142. }
  143. @media (min-width: 1200px) {
  144. h4, .h4 {
  145. font-size: 1.5rem;
  146. }
  147. }
  148. h5, .h5 {
  149. font-size: 1.25rem;
  150. }
  151. h6, .h6 {
  152. font-size: 1rem;
  153. }
  154. p {
  155. margin-top: 0;
  156. margin-bottom: 1rem;
  157. }
  158. abbr[title] {
  159. -webkit-text-decoration: underline dotted;
  160. text-decoration: underline dotted;
  161. cursor: help;
  162. -webkit-text-decoration-skip-ink: none;
  163. text-decoration-skip-ink: none;
  164. }
  165. address {
  166. margin-bottom: 1rem;
  167. font-style: normal;
  168. line-height: inherit;
  169. }
  170. ol,
  171. ul {
  172. padding-left: 2rem;
  173. }
  174. ol,
  175. ul,
  176. dl {
  177. margin-top: 0;
  178. margin-bottom: 1rem;
  179. }
  180. ol ol,
  181. ul ul,
  182. ol ul,
  183. ul ol {
  184. margin-bottom: 0;
  185. }
  186. dt {
  187. font-weight: 700;
  188. }
  189. dd {
  190. margin-bottom: 0.5rem;
  191. margin-left: 0;
  192. }
  193. blockquote {
  194. margin: 0 0 1rem;
  195. }
  196. b,
  197. strong {
  198. font-weight: bolder;
  199. }
  200. small, .small {
  201. font-size: 0.875em;
  202. }
  203. mark, .mark {
  204. padding: 0.1875em;
  205. background-color: var(--bs-highlight-bg);
  206. }
  207. sub,
  208. sup {
  209. position: relative;
  210. font-size: 0.75em;
  211. line-height: 0;
  212. vertical-align: baseline;
  213. }
  214. sub {
  215. bottom: -0.25em;
  216. }
  217. sup {
  218. top: -0.5em;
  219. }
  220. a {
  221. color: var(--bs-link-color);
  222. text-decoration: underline;
  223. }
  224. a:hover {
  225. color: var(--bs-link-hover-color);
  226. }
  227. a:not([href]):not([class]), a:not([href]):not([class]):hover {
  228. color: inherit;
  229. text-decoration: none;
  230. }
  231. pre,
  232. code,
  233. kbd,
  234. samp {
  235. font-family: var(--bs-font-monospace);
  236. font-size: 1em;
  237. }
  238. pre {
  239. display: block;
  240. margin-top: 0;
  241. margin-bottom: 1rem;
  242. overflow: auto;
  243. font-size: 0.875em;
  244. }
  245. pre code {
  246. font-size: inherit;
  247. color: inherit;
  248. word-break: normal;
  249. }
  250. code {
  251. font-size: 0.875em;
  252. color: var(--bs-code-color);
  253. word-wrap: break-word;
  254. }
  255. a > code {
  256. color: inherit;
  257. }
  258. kbd {
  259. padding: 0.1875rem 0.375rem;
  260. font-size: 0.875em;
  261. color: var(--bs-body-bg);
  262. background-color: var(--bs-body-color);
  263. border-radius: 0.25rem;
  264. }
  265. kbd kbd {
  266. padding: 0;
  267. font-size: 1em;
  268. }
  269. figure {
  270. margin: 0 0 1rem;
  271. }
  272. img,
  273. svg {
  274. vertical-align: middle;
  275. }
  276. table {
  277. caption-side: bottom;
  278. border-collapse: collapse;
  279. }
  280. caption {
  281. padding-top: 0.5rem;
  282. padding-bottom: 0.5rem;
  283. color: #6c757d;
  284. text-align: left;
  285. }
  286. th {
  287. text-align: inherit;
  288. text-align: -webkit-match-parent;
  289. }
  290. thead,
  291. tbody,
  292. tfoot,
  293. tr,
  294. td,
  295. th {
  296. border-color: inherit;
  297. border-style: solid;
  298. border-width: 0;
  299. }
  300. label {
  301. display: inline-block;
  302. }
  303. button {
  304. border-radius: 0;
  305. }
  306. button:focus:not(:focus-visible) {
  307. outline: 0;
  308. }
  309. input,
  310. button,
  311. select,
  312. optgroup,
  313. textarea {
  314. margin: 0;
  315. font-family: inherit;
  316. font-size: inherit;
  317. line-height: inherit;
  318. }
  319. button,
  320. select {
  321. text-transform: none;
  322. }
  323. [role=button] {
  324. cursor: pointer;
  325. }
  326. select {
  327. word-wrap: normal;
  328. }
  329. select:disabled {
  330. opacity: 1;
  331. }
  332. [list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  333. display: none !important;
  334. }
  335. button,
  336. [type=button],
  337. [type=reset],
  338. [type=submit] {
  339. -webkit-appearance: button;
  340. }
  341. button:not(:disabled),
  342. [type=button]:not(:disabled),
  343. [type=reset]:not(:disabled),
  344. [type=submit]:not(:disabled) {
  345. cursor: pointer;
  346. }
  347. ::-moz-focus-inner {
  348. padding: 0;
  349. border-style: none;
  350. }
  351. textarea {
  352. resize: vertical;
  353. }
  354. fieldset {
  355. min-width: 0;
  356. padding: 0;
  357. margin: 0;
  358. border: 0;
  359. }
  360. legend {
  361. float: left;
  362. width: 100%;
  363. padding: 0;
  364. margin-bottom: 0.5rem;
  365. font-size: calc(1.275rem + 0.3vw);
  366. line-height: inherit;
  367. }
  368. @media (min-width: 1200px) {
  369. legend {
  370. font-size: 1.5rem;
  371. }
  372. }
  373. legend + * {
  374. clear: left;
  375. }
  376. ::-webkit-datetime-edit-fields-wrapper,
  377. ::-webkit-datetime-edit-text,
  378. ::-webkit-datetime-edit-minute,
  379. ::-webkit-datetime-edit-hour-field,
  380. ::-webkit-datetime-edit-day-field,
  381. ::-webkit-datetime-edit-month-field,
  382. ::-webkit-datetime-edit-year-field {
  383. padding: 0;
  384. }
  385. ::-webkit-inner-spin-button {
  386. height: auto;
  387. }
  388. [type=search] {
  389. outline-offset: -2px;
  390. -webkit-appearance: textfield;
  391. }
  392. /* rtl:raw:
  393. [type="tel"],
  394. [type="url"],
  395. [type="email"],
  396. [type="number"] {
  397. direction: ltr;
  398. }
  399. */
  400. ::-webkit-search-decoration {
  401. -webkit-appearance: none;
  402. }
  403. ::-webkit-color-swatch-wrapper {
  404. padding: 0;
  405. }
  406. ::file-selector-button {
  407. font: inherit;
  408. -webkit-appearance: button;
  409. }
  410. output {
  411. display: inline-block;
  412. }
  413. iframe {
  414. border: 0;
  415. }
  416. summary {
  417. display: list-item;
  418. cursor: pointer;
  419. }
  420. progress {
  421. vertical-align: baseline;
  422. }
  423. [hidden] {
  424. display: none !important;
  425. }
  426. .lead {
  427. font-size: 1.25rem;
  428. font-weight: 300;
  429. }
  430. .display-1 {
  431. font-size: calc(1.625rem + 4.5vw);
  432. font-weight: 300;
  433. line-height: 1.2;
  434. }
  435. @media (min-width: 1200px) {
  436. .display-1 {
  437. font-size: 5rem;
  438. }
  439. }
  440. .display-2 {
  441. font-size: calc(1.575rem + 3.9vw);
  442. font-weight: 300;
  443. line-height: 1.2;
  444. }
  445. @media (min-width: 1200px) {
  446. .display-2 {
  447. font-size: 4.5rem;
  448. }
  449. }
  450. .display-3 {
  451. font-size: calc(1.525rem + 3.3vw);
  452. font-weight: 300;
  453. line-height: 1.2;
  454. }
  455. @media (min-width: 1200px) {
  456. .display-3 {
  457. font-size: 4rem;
  458. }
  459. }
  460. .display-4 {
  461. font-size: calc(1.475rem + 2.7vw);
  462. font-weight: 300;
  463. line-height: 1.2;
  464. }
  465. @media (min-width: 1200px) {
  466. .display-4 {
  467. font-size: 3.5rem;
  468. }
  469. }
  470. .display-5 {
  471. font-size: calc(1.425rem + 2.1vw);
  472. font-weight: 300;
  473. line-height: 1.2;
  474. }
  475. @media (min-width: 1200px) {
  476. .display-5 {
  477. font-size: 3rem;
  478. }
  479. }
  480. .display-6 {
  481. font-size: calc(1.375rem + 1.5vw);
  482. font-weight: 300;
  483. line-height: 1.2;
  484. }
  485. @media (min-width: 1200px) {
  486. .display-6 {
  487. font-size: 2.5rem;
  488. }
  489. }
  490. .list-unstyled {
  491. padding-left: 0;
  492. list-style: none;
  493. }
  494. .list-inline {
  495. padding-left: 0;
  496. list-style: none;
  497. }
  498. .list-inline-item {
  499. display: inline-block;
  500. }
  501. .list-inline-item:not(:last-child) {
  502. margin-right: 0.5rem;
  503. }
  504. .initialism {
  505. font-size: 0.875em;
  506. text-transform: uppercase;
  507. }
  508. .blockquote {
  509. margin-bottom: 1rem;
  510. font-size: 1.25rem;
  511. }
  512. .blockquote > :last-child {
  513. margin-bottom: 0;
  514. }
  515. .blockquote-footer {
  516. margin-top: -1rem;
  517. margin-bottom: 1rem;
  518. font-size: 0.875em;
  519. color: #6c757d;
  520. }
  521. .blockquote-footer::before {
  522. content: "— ";
  523. }
  524. .img-fluid {
  525. max-width: 100%;
  526. height: auto;
  527. }
  528. .img-thumbnail {
  529. padding: 0.25rem;
  530. background-color: #fff;
  531. border: 1px solid var(--bs-border-color);
  532. border-radius: 0.375rem;
  533. max-width: 100%;
  534. height: auto;
  535. }
  536. .figure {
  537. display: inline-block;
  538. }
  539. .figure-img {
  540. margin-bottom: 0.5rem;
  541. line-height: 1;
  542. }
  543. .figure-caption {
  544. font-size: 0.875em;
  545. color: #6c757d;
  546. }
  547. .container,
  548. .container-fluid,
  549. .container-xxl,
  550. .container-xl,
  551. .container-lg,
  552. .container-md,
  553. .container-sm {
  554. --bs-gutter-x: 1.5rem;
  555. --bs-gutter-y: 0;
  556. width: 100%;
  557. padding-right: calc(var(--bs-gutter-x) * 0.5);
  558. padding-left: calc(var(--bs-gutter-x) * 0.5);
  559. margin-right: auto;
  560. margin-left: auto;
  561. }
  562. @media (min-width: 576px) {
  563. .container-sm, .container {
  564. max-width: 540px;
  565. }
  566. }
  567. @media (min-width: 768px) {
  568. .container-md, .container-sm, .container {
  569. max-width: 720px;
  570. }
  571. }
  572. @media (min-width: 992px) {
  573. .container-lg, .container-md, .container-sm, .container {
  574. max-width: 960px;
  575. }
  576. }
  577. @media (min-width: 1200px) {
  578. .container-xl, .container-lg, .container-md, .container-sm, .container {
  579. max-width: 1140px;
  580. }
  581. }
  582. @media (min-width: 1400px) {
  583. .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
  584. max-width: 1320px;
  585. }
  586. }
  587. .row {
  588. --bs-gutter-x: 1.5rem;
  589. --bs-gutter-y: 0;
  590. display: flex;
  591. flex-wrap: wrap;
  592. margin-top: calc(-1 * var(--bs-gutter-y));
  593. margin-right: calc(-0.5 * var(--bs-gutter-x));
  594. margin-left: calc(-0.5 * var(--bs-gutter-x));
  595. }
  596. .row > * {
  597. flex-shrink: 0;
  598. width: 100%;
  599. max-width: 100%;
  600. padding-right: calc(var(--bs-gutter-x) * 0.5);
  601. padding-left: calc(var(--bs-gutter-x) * 0.5);
  602. margin-top: var(--bs-gutter-y);
  603. }
  604. .col {
  605. flex: 1 0 0%;
  606. }
  607. .row-cols-auto > * {
  608. flex: 0 0 auto;
  609. width: auto;
  610. }
  611. .row-cols-1 > * {
  612. flex: 0 0 auto;
  613. width: 100%;
  614. }
  615. .row-cols-2 > * {
  616. flex: 0 0 auto;
  617. width: 50%;
  618. }
  619. .row-cols-3 > * {
  620. flex: 0 0 auto;
  621. width: 33.3333333333%;
  622. }
  623. .row-cols-4 > * {
  624. flex: 0 0 auto;
  625. width: 25%;
  626. }
  627. .row-cols-5 > * {
  628. flex: 0 0 auto;
  629. width: 20%;
  630. }
  631. .row-cols-6 > * {
  632. flex: 0 0 auto;
  633. width: 16.6666666667%;
  634. }
  635. .col-auto {
  636. flex: 0 0 auto;
  637. width: auto;
  638. }
  639. .col-1 {
  640. flex: 0 0 auto;
  641. width: 8.33333333%;
  642. }
  643. .col-2 {
  644. flex: 0 0 auto;
  645. width: 16.66666667%;
  646. }
  647. .col-3 {
  648. flex: 0 0 auto;
  649. width: 25%;
  650. }
  651. .col-4 {
  652. flex: 0 0 auto;
  653. width: 33.33333333%;
  654. }
  655. .col-5 {
  656. flex: 0 0 auto;
  657. width: 41.66666667%;
  658. }
  659. .col-6 {
  660. flex: 0 0 auto;
  661. width: 50%;
  662. }
  663. .col-7 {
  664. flex: 0 0 auto;
  665. width: 58.33333333%;
  666. }
  667. .col-8 {
  668. flex: 0 0 auto;
  669. width: 66.66666667%;
  670. }
  671. .col-9 {
  672. flex: 0 0 auto;
  673. width: 75%;
  674. }
  675. .col-10 {
  676. flex: 0 0 auto;
  677. width: 83.33333333%;
  678. }
  679. .col-11 {
  680. flex: 0 0 auto;
  681. width: 91.66666667%;
  682. }
  683. .col-12 {
  684. flex: 0 0 auto;
  685. width: 100%;
  686. }
  687. .offset-1 {
  688. margin-left: 8.33333333%;
  689. }
  690. .offset-2 {
  691. margin-left: 16.66666667%;
  692. }
  693. .offset-3 {
  694. margin-left: 25%;
  695. }
  696. .offset-4 {
  697. margin-left: 33.33333333%;
  698. }
  699. .offset-5 {
  700. margin-left: 41.66666667%;
  701. }
  702. .offset-6 {
  703. margin-left: 50%;
  704. }
  705. .offset-7 {
  706. margin-left: 58.33333333%;
  707. }
  708. .offset-8 {
  709. margin-left: 66.66666667%;
  710. }
  711. .offset-9 {
  712. margin-left: 75%;
  713. }
  714. .offset-10 {
  715. margin-left: 83.33333333%;
  716. }
  717. .offset-11 {
  718. margin-left: 91.66666667%;
  719. }
  720. .g-0,
  721. .gx-0 {
  722. --bs-gutter-x: 0;
  723. }
  724. .g-0,
  725. .gy-0 {
  726. --bs-gutter-y: 0;
  727. }
  728. .g-1,
  729. .gx-1 {
  730. --bs-gutter-x: 0.25rem;
  731. }
  732. .g-1,
  733. .gy-1 {
  734. --bs-gutter-y: 0.25rem;
  735. }
  736. .g-2,
  737. .gx-2 {
  738. --bs-gutter-x: 0.5rem;
  739. }
  740. .g-2,
  741. .gy-2 {
  742. --bs-gutter-y: 0.5rem;
  743. }
  744. .g-3,
  745. .gx-3 {
  746. --bs-gutter-x: 1rem;
  747. }
  748. .g-3,
  749. .gy-3 {
  750. --bs-gutter-y: 1rem;
  751. }
  752. .g-4,
  753. .gx-4 {
  754. --bs-gutter-x: 1.5rem;
  755. }
  756. .g-4,
  757. .gy-4 {
  758. --bs-gutter-y: 1.5rem;
  759. }
  760. .g-5,
  761. .gx-5 {
  762. --bs-gutter-x: 3rem;
  763. }
  764. .g-5,
  765. .gy-5 {
  766. --bs-gutter-y: 3rem;
  767. }
  768. @media (min-width: 576px) {
  769. .col-sm {
  770. flex: 1 0 0%;
  771. }
  772. .row-cols-sm-auto > * {
  773. flex: 0 0 auto;
  774. width: auto;
  775. }
  776. .row-cols-sm-1 > * {
  777. flex: 0 0 auto;
  778. width: 100%;
  779. }
  780. .row-cols-sm-2 > * {
  781. flex: 0 0 auto;
  782. width: 50%;
  783. }
  784. .row-cols-sm-3 > * {
  785. flex: 0 0 auto;
  786. width: 33.3333333333%;
  787. }
  788. .row-cols-sm-4 > * {
  789. flex: 0 0 auto;
  790. width: 25%;
  791. }
  792. .row-cols-sm-5 > * {
  793. flex: 0 0 auto;
  794. width: 20%;
  795. }
  796. .row-cols-sm-6 > * {
  797. flex: 0 0 auto;
  798. width: 16.6666666667%;
  799. }
  800. .col-sm-auto {
  801. flex: 0 0 auto;
  802. width: auto;
  803. }
  804. .col-sm-1 {
  805. flex: 0 0 auto;
  806. width: 8.33333333%;
  807. }
  808. .col-sm-2 {
  809. flex: 0 0 auto;
  810. width: 16.66666667%;
  811. }
  812. .col-sm-3 {
  813. flex: 0 0 auto;
  814. width: 25%;
  815. }
  816. .col-sm-4 {
  817. flex: 0 0 auto;
  818. width: 33.33333333%;
  819. }
  820. .col-sm-5 {
  821. flex: 0 0 auto;
  822. width: 41.66666667%;
  823. }
  824. .col-sm-6 {
  825. flex: 0 0 auto;
  826. width: 50%;
  827. }
  828. .col-sm-7 {
  829. flex: 0 0 auto;
  830. width: 58.33333333%;
  831. }
  832. .col-sm-8 {
  833. flex: 0 0 auto;
  834. width: 66.66666667%;
  835. }
  836. .col-sm-9 {
  837. flex: 0 0 auto;
  838. width: 75%;
  839. }
  840. .col-sm-10 {
  841. flex: 0 0 auto;
  842. width: 83.33333333%;
  843. }
  844. .col-sm-11 {
  845. flex: 0 0 auto;
  846. width: 91.66666667%;
  847. }
  848. .col-sm-12 {
  849. flex: 0 0 auto;
  850. width: 100%;
  851. }
  852. .offset-sm-0 {
  853. margin-left: 0;
  854. }
  855. .offset-sm-1 {
  856. margin-left: 8.33333333%;
  857. }
  858. .offset-sm-2 {
  859. margin-left: 16.66666667%;
  860. }
  861. .offset-sm-3 {
  862. margin-left: 25%;
  863. }
  864. .offset-sm-4 {
  865. margin-left: 33.33333333%;
  866. }
  867. .offset-sm-5 {
  868. margin-left: 41.66666667%;
  869. }
  870. .offset-sm-6 {
  871. margin-left: 50%;
  872. }
  873. .offset-sm-7 {
  874. margin-left: 58.33333333%;
  875. }
  876. .offset-sm-8 {
  877. margin-left: 66.66666667%;
  878. }
  879. .offset-sm-9 {
  880. margin-left: 75%;
  881. }
  882. .offset-sm-10 {
  883. margin-left: 83.33333333%;
  884. }
  885. .offset-sm-11 {
  886. margin-left: 91.66666667%;
  887. }
  888. .g-sm-0,
  889. .gx-sm-0 {
  890. --bs-gutter-x: 0;
  891. }
  892. .g-sm-0,
  893. .gy-sm-0 {
  894. --bs-gutter-y: 0;
  895. }
  896. .g-sm-1,
  897. .gx-sm-1 {
  898. --bs-gutter-x: 0.25rem;
  899. }
  900. .g-sm-1,
  901. .gy-sm-1 {
  902. --bs-gutter-y: 0.25rem;
  903. }
  904. .g-sm-2,
  905. .gx-sm-2 {
  906. --bs-gutter-x: 0.5rem;
  907. }
  908. .g-sm-2,
  909. .gy-sm-2 {
  910. --bs-gutter-y: 0.5rem;
  911. }
  912. .g-sm-3,
  913. .gx-sm-3 {
  914. --bs-gutter-x: 1rem;
  915. }
  916. .g-sm-3,
  917. .gy-sm-3 {
  918. --bs-gutter-y: 1rem;
  919. }
  920. .g-sm-4,
  921. .gx-sm-4 {
  922. --bs-gutter-x: 1.5rem;
  923. }
  924. .g-sm-4,
  925. .gy-sm-4 {
  926. --bs-gutter-y: 1.5rem;
  927. }
  928. .g-sm-5,
  929. .gx-sm-5 {
  930. --bs-gutter-x: 3rem;
  931. }
  932. .g-sm-5,
  933. .gy-sm-5 {
  934. --bs-gutter-y: 3rem;
  935. }
  936. }
  937. @media (min-width: 768px) {
  938. .col-md {
  939. flex: 1 0 0%;
  940. }
  941. .row-cols-md-auto > * {
  942. flex: 0 0 auto;
  943. width: auto;
  944. }
  945. .row-cols-md-1 > * {
  946. flex: 0 0 auto;
  947. width: 100%;
  948. }
  949. .row-cols-md-2 > * {
  950. flex: 0 0 auto;
  951. width: 50%;
  952. }
  953. .row-cols-md-3 > * {
  954. flex: 0 0 auto;
  955. width: 33.3333333333%;
  956. }
  957. .row-cols-md-4 > * {
  958. flex: 0 0 auto;
  959. width: 25%;
  960. }
  961. .row-cols-md-5 > * {
  962. flex: 0 0 auto;
  963. width: 20%;
  964. }
  965. .row-cols-md-6 > * {
  966. flex: 0 0 auto;
  967. width: 16.6666666667%;
  968. }
  969. .col-md-auto {
  970. flex: 0 0 auto;
  971. width: auto;
  972. }
  973. .col-md-1 {
  974. flex: 0 0 auto;
  975. width: 8.33333333%;
  976. }
  977. .col-md-2 {
  978. flex: 0 0 auto;
  979. width: 16.66666667%;
  980. }
  981. .col-md-3 {
  982. flex: 0 0 auto;
  983. width: 25%;
  984. }
  985. .col-md-4 {
  986. flex: 0 0 auto;
  987. width: 33.33333333%;
  988. }
  989. .col-md-5 {
  990. flex: 0 0 auto;
  991. width: 41.66666667%;
  992. }
  993. .col-md-6 {
  994. flex: 0 0 auto;
  995. width: 50%;
  996. }
  997. .col-md-7 {
  998. flex: 0 0 auto;
  999. width: 58.33333333%;
  1000. }
  1001. .col-md-8 {
  1002. flex: 0 0 auto;
  1003. width: 66.66666667%;
  1004. }
  1005. .col-md-9 {
  1006. flex: 0 0 auto;
  1007. width: 75%;
  1008. }
  1009. .col-md-10 {
  1010. flex: 0 0 auto;
  1011. width: 83.33333333%;
  1012. }
  1013. .col-md-11 {
  1014. flex: 0 0 auto;
  1015. width: 91.66666667%;
  1016. }
  1017. .col-md-12 {
  1018. flex: 0 0 auto;
  1019. width: 100%;
  1020. }
  1021. .offset-md-0 {
  1022. margin-left: 0;
  1023. }
  1024. .offset-md-1 {
  1025. margin-left: 8.33333333%;
  1026. }
  1027. .offset-md-2 {
  1028. margin-left: 16.66666667%;
  1029. }
  1030. .offset-md-3 {
  1031. margin-left: 25%;
  1032. }
  1033. .offset-md-4 {
  1034. margin-left: 33.33333333%;
  1035. }
  1036. .offset-md-5 {
  1037. margin-left: 41.66666667%;
  1038. }
  1039. .offset-md-6 {
  1040. margin-left: 50%;
  1041. }
  1042. .offset-md-7 {
  1043. margin-left: 58.33333333%;
  1044. }
  1045. .offset-md-8 {
  1046. margin-left: 66.66666667%;
  1047. }
  1048. .offset-md-9 {
  1049. margin-left: 75%;
  1050. }
  1051. .offset-md-10 {
  1052. margin-left: 83.33333333%;
  1053. }
  1054. .offset-md-11 {
  1055. margin-left: 91.66666667%;
  1056. }
  1057. .g-md-0,
  1058. .gx-md-0 {
  1059. --bs-gutter-x: 0;
  1060. }
  1061. .g-md-0,
  1062. .gy-md-0 {
  1063. --bs-gutter-y: 0;
  1064. }
  1065. .g-md-1,
  1066. .gx-md-1 {
  1067. --bs-gutter-x: 0.25rem;
  1068. }
  1069. .g-md-1,
  1070. .gy-md-1 {
  1071. --bs-gutter-y: 0.25rem;
  1072. }
  1073. .g-md-2,
  1074. .gx-md-2 {
  1075. --bs-gutter-x: 0.5rem;
  1076. }
  1077. .g-md-2,
  1078. .gy-md-2 {
  1079. --bs-gutter-y: 0.5rem;
  1080. }
  1081. .g-md-3,
  1082. .gx-md-3 {
  1083. --bs-gutter-x: 1rem;
  1084. }
  1085. .g-md-3,
  1086. .gy-md-3 {
  1087. --bs-gutter-y: 1rem;
  1088. }
  1089. .g-md-4,
  1090. .gx-md-4 {
  1091. --bs-gutter-x: 1.5rem;
  1092. }
  1093. .g-md-4,
  1094. .gy-md-4 {
  1095. --bs-gutter-y: 1.5rem;
  1096. }
  1097. .g-md-5,
  1098. .gx-md-5 {
  1099. --bs-gutter-x: 3rem;
  1100. }
  1101. .g-md-5,
  1102. .gy-md-5 {
  1103. --bs-gutter-y: 3rem;
  1104. }
  1105. }
  1106. @media (min-width: 992px) {
  1107. .col-lg {
  1108. flex: 1 0 0%;
  1109. }
  1110. .row-cols-lg-auto > * {
  1111. flex: 0 0 auto;
  1112. width: auto;
  1113. }
  1114. .row-cols-lg-1 > * {
  1115. flex: 0 0 auto;
  1116. width: 100%;
  1117. }
  1118. .row-cols-lg-2 > * {
  1119. flex: 0 0 auto;
  1120. width: 50%;
  1121. }
  1122. .row-cols-lg-3 > * {
  1123. flex: 0 0 auto;
  1124. width: 33.3333333333%;
  1125. }
  1126. .row-cols-lg-4 > * {
  1127. flex: 0 0 auto;
  1128. width: 25%;
  1129. }
  1130. .row-cols-lg-5 > * {
  1131. flex: 0 0 auto;
  1132. width: 20%;
  1133. }
  1134. .row-cols-lg-6 > * {
  1135. flex: 0 0 auto;
  1136. width: 16.6666666667%;
  1137. }
  1138. .col-lg-auto {
  1139. flex: 0 0 auto;
  1140. width: auto;
  1141. }
  1142. .col-lg-1 {
  1143. flex: 0 0 auto;
  1144. width: 8.33333333%;
  1145. }
  1146. .col-lg-2 {
  1147. flex: 0 0 auto;
  1148. width: 16.66666667%;
  1149. }
  1150. .col-lg-3 {
  1151. flex: 0 0 auto;
  1152. width: 25%;
  1153. }
  1154. .col-lg-4 {
  1155. flex: 0 0 auto;
  1156. width: 33.33333333%;
  1157. }
  1158. .col-lg-5 {
  1159. flex: 0 0 auto;
  1160. width: 41.66666667%;
  1161. }
  1162. .col-lg-6 {
  1163. flex: 0 0 auto;
  1164. width: 50%;
  1165. }
  1166. .col-lg-7 {
  1167. flex: 0 0 auto;
  1168. width: 58.33333333%;
  1169. }
  1170. .col-lg-8 {
  1171. flex: 0 0 auto;
  1172. width: 66.66666667%;
  1173. }
  1174. .col-lg-9 {
  1175. flex: 0 0 auto;
  1176. width: 75%;
  1177. }
  1178. .col-lg-10 {
  1179. flex: 0 0 auto;
  1180. width: 83.33333333%;
  1181. }
  1182. .col-lg-11 {
  1183. flex: 0 0 auto;
  1184. width: 91.66666667%;
  1185. }
  1186. .col-lg-12 {
  1187. flex: 0 0 auto;
  1188. width: 100%;
  1189. }
  1190. .offset-lg-0 {
  1191. margin-left: 0;
  1192. }
  1193. .offset-lg-1 {
  1194. margin-left: 8.33333333%;
  1195. }
  1196. .offset-lg-2 {
  1197. margin-left: 16.66666667%;
  1198. }
  1199. .offset-lg-3 {
  1200. margin-left: 25%;
  1201. }
  1202. .offset-lg-4 {
  1203. margin-left: 33.33333333%;
  1204. }
  1205. .offset-lg-5 {
  1206. margin-left: 41.66666667%;
  1207. }
  1208. .offset-lg-6 {
  1209. margin-left: 50%;
  1210. }
  1211. .offset-lg-7 {
  1212. margin-left: 58.33333333%;
  1213. }
  1214. .offset-lg-8 {
  1215. margin-left: 66.66666667%;
  1216. }
  1217. .offset-lg-9 {
  1218. margin-left: 75%;
  1219. }
  1220. .offset-lg-10 {
  1221. margin-left: 83.33333333%;
  1222. }
  1223. .offset-lg-11 {
  1224. margin-left: 91.66666667%;
  1225. }
  1226. .g-lg-0,
  1227. .gx-lg-0 {
  1228. --bs-gutter-x: 0;
  1229. }
  1230. .g-lg-0,
  1231. .gy-lg-0 {
  1232. --bs-gutter-y: 0;
  1233. }
  1234. .g-lg-1,
  1235. .gx-lg-1 {
  1236. --bs-gutter-x: 0.25rem;
  1237. }
  1238. .g-lg-1,
  1239. .gy-lg-1 {
  1240. --bs-gutter-y: 0.25rem;
  1241. }
  1242. .g-lg-2,
  1243. .gx-lg-2 {
  1244. --bs-gutter-x: 0.5rem;
  1245. }
  1246. .g-lg-2,
  1247. .gy-lg-2 {
  1248. --bs-gutter-y: 0.5rem;
  1249. }
  1250. .g-lg-3,
  1251. .gx-lg-3 {
  1252. --bs-gutter-x: 1rem;
  1253. }
  1254. .g-lg-3,
  1255. .gy-lg-3 {
  1256. --bs-gutter-y: 1rem;
  1257. }
  1258. .g-lg-4,
  1259. .gx-lg-4 {
  1260. --bs-gutter-x: 1.5rem;
  1261. }
  1262. .g-lg-4,
  1263. .gy-lg-4 {
  1264. --bs-gutter-y: 1.5rem;
  1265. }
  1266. .g-lg-5,
  1267. .gx-lg-5 {
  1268. --bs-gutter-x: 3rem;
  1269. }
  1270. .g-lg-5,
  1271. .gy-lg-5 {
  1272. --bs-gutter-y: 3rem;
  1273. }
  1274. }
  1275. @media (min-width: 1200px) {
  1276. .col-xl {
  1277. flex: 1 0 0%;
  1278. }
  1279. .row-cols-xl-auto > * {
  1280. flex: 0 0 auto;
  1281. width: auto;
  1282. }
  1283. .row-cols-xl-1 > * {
  1284. flex: 0 0 auto;
  1285. width: 100%;
  1286. }
  1287. .row-cols-xl-2 > * {
  1288. flex: 0 0 auto;
  1289. width: 50%;
  1290. }
  1291. .row-cols-xl-3 > * {
  1292. flex: 0 0 auto;
  1293. width: 33.3333333333%;
  1294. }
  1295. .row-cols-xl-4 > * {
  1296. flex: 0 0 auto;
  1297. width: 25%;
  1298. }
  1299. .row-cols-xl-5 > * {
  1300. flex: 0 0 auto;
  1301. width: 20%;
  1302. }
  1303. .row-cols-xl-6 > * {
  1304. flex: 0 0 auto;
  1305. width: 16.6666666667%;
  1306. }
  1307. .col-xl-auto {
  1308. flex: 0 0 auto;
  1309. width: auto;
  1310. }
  1311. .col-xl-1 {
  1312. flex: 0 0 auto;
  1313. width: 8.33333333%;
  1314. }
  1315. .col-xl-2 {
  1316. flex: 0 0 auto;
  1317. width: 16.66666667%;
  1318. }
  1319. .col-xl-3 {
  1320. flex: 0 0 auto;
  1321. width: 25%;
  1322. }
  1323. .col-xl-4 {
  1324. flex: 0 0 auto;
  1325. width: 33.33333333%;
  1326. }
  1327. .col-xl-5 {
  1328. flex: 0 0 auto;
  1329. width: 41.66666667%;
  1330. }
  1331. .col-xl-6 {
  1332. flex: 0 0 auto;
  1333. width: 50%;
  1334. }
  1335. .col-xl-7 {
  1336. flex: 0 0 auto;
  1337. width: 58.33333333%;
  1338. }
  1339. .col-xl-8 {
  1340. flex: 0 0 auto;
  1341. width: 66.66666667%;
  1342. }
  1343. .col-xl-9 {
  1344. flex: 0 0 auto;
  1345. width: 75%;
  1346. }
  1347. .col-xl-10 {
  1348. flex: 0 0 auto;
  1349. width: 83.33333333%;
  1350. }
  1351. .col-xl-11 {
  1352. flex: 0 0 auto;
  1353. width: 91.66666667%;
  1354. }
  1355. .col-xl-12 {
  1356. flex: 0 0 auto;
  1357. width: 100%;
  1358. }
  1359. .offset-xl-0 {
  1360. margin-left: 0;
  1361. }
  1362. .offset-xl-1 {
  1363. margin-left: 8.33333333%;
  1364. }
  1365. .offset-xl-2 {
  1366. margin-left: 16.66666667%;
  1367. }
  1368. .offset-xl-3 {
  1369. margin-left: 25%;
  1370. }
  1371. .offset-xl-4 {
  1372. margin-left: 33.33333333%;
  1373. }
  1374. .offset-xl-5 {
  1375. margin-left: 41.66666667%;
  1376. }
  1377. .offset-xl-6 {
  1378. margin-left: 50%;
  1379. }
  1380. .offset-xl-7 {
  1381. margin-left: 58.33333333%;
  1382. }
  1383. .offset-xl-8 {
  1384. margin-left: 66.66666667%;
  1385. }
  1386. .offset-xl-9 {
  1387. margin-left: 75%;
  1388. }
  1389. .offset-xl-10 {
  1390. margin-left: 83.33333333%;
  1391. }
  1392. .offset-xl-11 {
  1393. margin-left: 91.66666667%;
  1394. }
  1395. .g-xl-0,
  1396. .gx-xl-0 {
  1397. --bs-gutter-x: 0;
  1398. }
  1399. .g-xl-0,
  1400. .gy-xl-0 {
  1401. --bs-gutter-y: 0;
  1402. }
  1403. .g-xl-1,
  1404. .gx-xl-1 {
  1405. --bs-gutter-x: 0.25rem;
  1406. }
  1407. .g-xl-1,
  1408. .gy-xl-1 {
  1409. --bs-gutter-y: 0.25rem;
  1410. }
  1411. .g-xl-2,
  1412. .gx-xl-2 {
  1413. --bs-gutter-x: 0.5rem;
  1414. }
  1415. .g-xl-2,
  1416. .gy-xl-2 {
  1417. --bs-gutter-y: 0.5rem;
  1418. }
  1419. .g-xl-3,
  1420. .gx-xl-3 {
  1421. --bs-gutter-x: 1rem;
  1422. }
  1423. .g-xl-3,
  1424. .gy-xl-3 {
  1425. --bs-gutter-y: 1rem;
  1426. }
  1427. .g-xl-4,
  1428. .gx-xl-4 {
  1429. --bs-gutter-x: 1.5rem;
  1430. }
  1431. .g-xl-4,
  1432. .gy-xl-4 {
  1433. --bs-gutter-y: 1.5rem;
  1434. }
  1435. .g-xl-5,
  1436. .gx-xl-5 {
  1437. --bs-gutter-x: 3rem;
  1438. }
  1439. .g-xl-5,
  1440. .gy-xl-5 {
  1441. --bs-gutter-y: 3rem;
  1442. }
  1443. }
  1444. @media (min-width: 1400px) {
  1445. .col-xxl {
  1446. flex: 1 0 0%;
  1447. }
  1448. .row-cols-xxl-auto > * {
  1449. flex: 0 0 auto;
  1450. width: auto;
  1451. }
  1452. .row-cols-xxl-1 > * {
  1453. flex: 0 0 auto;
  1454. width: 100%;
  1455. }
  1456. .row-cols-xxl-2 > * {
  1457. flex: 0 0 auto;
  1458. width: 50%;
  1459. }
  1460. .row-cols-xxl-3 > * {
  1461. flex: 0 0 auto;
  1462. width: 33.3333333333%;
  1463. }
  1464. .row-cols-xxl-4 > * {
  1465. flex: 0 0 auto;
  1466. width: 25%;
  1467. }
  1468. .row-cols-xxl-5 > * {
  1469. flex: 0 0 auto;
  1470. width: 20%;
  1471. }
  1472. .row-cols-xxl-6 > * {
  1473. flex: 0 0 auto;
  1474. width: 16.6666666667%;
  1475. }
  1476. .col-xxl-auto {
  1477. flex: 0 0 auto;
  1478. width: auto;
  1479. }
  1480. .col-xxl-1 {
  1481. flex: 0 0 auto;
  1482. width: 8.33333333%;
  1483. }
  1484. .col-xxl-2 {
  1485. flex: 0 0 auto;
  1486. width: 16.66666667%;
  1487. }
  1488. .col-xxl-3 {
  1489. flex: 0 0 auto;
  1490. width: 25%;
  1491. }
  1492. .col-xxl-4 {
  1493. flex: 0 0 auto;
  1494. width: 33.33333333%;
  1495. }
  1496. .col-xxl-5 {
  1497. flex: 0 0 auto;
  1498. width: 41.66666667%;
  1499. }
  1500. .col-xxl-6 {
  1501. flex: 0 0 auto;
  1502. width: 50%;
  1503. }
  1504. .col-xxl-7 {
  1505. flex: 0 0 auto;
  1506. width: 58.33333333%;
  1507. }
  1508. .col-xxl-8 {
  1509. flex: 0 0 auto;
  1510. width: 66.66666667%;
  1511. }
  1512. .col-xxl-9 {
  1513. flex: 0 0 auto;
  1514. width: 75%;
  1515. }
  1516. .col-xxl-10 {
  1517. flex: 0 0 auto;
  1518. width: 83.33333333%;
  1519. }
  1520. .col-xxl-11 {
  1521. flex: 0 0 auto;
  1522. width: 91.66666667%;
  1523. }
  1524. .col-xxl-12 {
  1525. flex: 0 0 auto;
  1526. width: 100%;
  1527. }
  1528. .offset-xxl-0 {
  1529. margin-left: 0;
  1530. }
  1531. .offset-xxl-1 {
  1532. margin-left: 8.33333333%;
  1533. }
  1534. .offset-xxl-2 {
  1535. margin-left: 16.66666667%;
  1536. }
  1537. .offset-xxl-3 {
  1538. margin-left: 25%;
  1539. }
  1540. .offset-xxl-4 {
  1541. margin-left: 33.33333333%;
  1542. }
  1543. .offset-xxl-5 {
  1544. margin-left: 41.66666667%;
  1545. }
  1546. .offset-xxl-6 {
  1547. margin-left: 50%;
  1548. }
  1549. .offset-xxl-7 {
  1550. margin-left: 58.33333333%;
  1551. }
  1552. .offset-xxl-8 {
  1553. margin-left: 66.66666667%;
  1554. }
  1555. .offset-xxl-9 {
  1556. margin-left: 75%;
  1557. }
  1558. .offset-xxl-10 {
  1559. margin-left: 83.33333333%;
  1560. }
  1561. .offset-xxl-11 {
  1562. margin-left: 91.66666667%;
  1563. }
  1564. .g-xxl-0,
  1565. .gx-xxl-0 {
  1566. --bs-gutter-x: 0;
  1567. }
  1568. .g-xxl-0,
  1569. .gy-xxl-0 {
  1570. --bs-gutter-y: 0;
  1571. }
  1572. .g-xxl-1,
  1573. .gx-xxl-1 {
  1574. --bs-gutter-x: 0.25rem;
  1575. }
  1576. .g-xxl-1,
  1577. .gy-xxl-1 {
  1578. --bs-gutter-y: 0.25rem;
  1579. }
  1580. .g-xxl-2,
  1581. .gx-xxl-2 {
  1582. --bs-gutter-x: 0.5rem;
  1583. }
  1584. .g-xxl-2,
  1585. .gy-xxl-2 {
  1586. --bs-gutter-y: 0.5rem;
  1587. }
  1588. .g-xxl-3,
  1589. .gx-xxl-3 {
  1590. --bs-gutter-x: 1rem;
  1591. }
  1592. .g-xxl-3,
  1593. .gy-xxl-3 {
  1594. --bs-gutter-y: 1rem;
  1595. }
  1596. .g-xxl-4,
  1597. .gx-xxl-4 {
  1598. --bs-gutter-x: 1.5rem;
  1599. }
  1600. .g-xxl-4,
  1601. .gy-xxl-4 {
  1602. --bs-gutter-y: 1.5rem;
  1603. }
  1604. .g-xxl-5,
  1605. .gx-xxl-5 {
  1606. --bs-gutter-x: 3rem;
  1607. }
  1608. .g-xxl-5,
  1609. .gy-xxl-5 {
  1610. --bs-gutter-y: 3rem;
  1611. }
  1612. }
  1613. .table, .datatable-table {
  1614. --bs-table-color: var(--bs-body-color);
  1615. --bs-table-bg: transparent;
  1616. --bs-table-border-color: var(--bs-border-color);
  1617. --bs-table-accent-bg: transparent;
  1618. --bs-table-striped-color: var(--bs-body-color);
  1619. --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  1620. --bs-table-active-color: var(--bs-body-color);
  1621. --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  1622. --bs-table-hover-color: var(--bs-body-color);
  1623. --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  1624. width: 100%;
  1625. margin-bottom: 1rem;
  1626. color: var(--bs-table-color);
  1627. vertical-align: top;
  1628. border-color: var(--bs-table-border-color);
  1629. }
  1630. .table > :not(caption) > * > *, .datatable-table > :not(caption) > * > * {
  1631. padding: 0.5rem 0.5rem;
  1632. background-color: var(--bs-table-bg);
  1633. border-bottom-width: 1px;
  1634. box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
  1635. }
  1636. .table > tbody, .datatable-table > tbody {
  1637. vertical-align: inherit;
  1638. }
  1639. .table > thead, .datatable-table > thead {
  1640. vertical-align: bottom;
  1641. }
  1642. .table-group-divider {
  1643. border-top: 2px solid currentcolor;
  1644. }
  1645. .caption-top {
  1646. caption-side: top;
  1647. }
  1648. .table-sm > :not(caption) > * > * {
  1649. padding: 0.25rem 0.25rem;
  1650. }
  1651. .table-bordered > :not(caption) > *, .datatable-table > :not(caption) > * {
  1652. border-width: 1px 0;
  1653. }
  1654. .table-bordered > :not(caption) > * > *, .datatable-table > :not(caption) > * > * {
  1655. border-width: 0 1px;
  1656. }
  1657. .table-borderless > :not(caption) > * > * {
  1658. border-bottom-width: 0;
  1659. }
  1660. .table-borderless > :not(:first-child) {
  1661. border-top-width: 0;
  1662. }
  1663. .table-striped > tbody > tr:nth-of-type(odd) > * {
  1664. --bs-table-accent-bg: var(--bs-table-striped-bg);
  1665. color: var(--bs-table-striped-color);
  1666. }
  1667. .table-striped-columns > :not(caption) > tr > :nth-child(even) {
  1668. --bs-table-accent-bg: var(--bs-table-striped-bg);
  1669. color: var(--bs-table-striped-color);
  1670. }
  1671. .table-active {
  1672. --bs-table-accent-bg: var(--bs-table-active-bg);
  1673. color: var(--bs-table-active-color);
  1674. }
  1675. .table-hover > tbody > tr:hover > *, .datatable-table > tbody > tr:hover > * {
  1676. --bs-table-accent-bg: var(--bs-table-hover-bg);
  1677. color: var(--bs-table-hover-color);
  1678. }
  1679. .table-primary {
  1680. --bs-table-color: #000;
  1681. --bs-table-bg: #cfe2ff;
  1682. --bs-table-border-color: #bacbe6;
  1683. --bs-table-striped-bg: #c5d7f2;
  1684. --bs-table-striped-color: #000;
  1685. --bs-table-active-bg: #bacbe6;
  1686. --bs-table-active-color: #000;
  1687. --bs-table-hover-bg: #bfd1ec;
  1688. --bs-table-hover-color: #000;
  1689. color: var(--bs-table-color);
  1690. border-color: var(--bs-table-border-color);
  1691. }
  1692. .table-secondary {
  1693. --bs-table-color: #000;
  1694. --bs-table-bg: #e2e3e5;
  1695. --bs-table-border-color: #cbccce;
  1696. --bs-table-striped-bg: #d7d8da;
  1697. --bs-table-striped-color: #000;
  1698. --bs-table-active-bg: #cbccce;
  1699. --bs-table-active-color: #000;
  1700. --bs-table-hover-bg: #d1d2d4;
  1701. --bs-table-hover-color: #000;
  1702. color: var(--bs-table-color);
  1703. border-color: var(--bs-table-border-color);
  1704. }
  1705. .table-success {
  1706. --bs-table-color: #000;
  1707. --bs-table-bg: #d1e7dd;
  1708. --bs-table-border-color: #bcd0c7;
  1709. --bs-table-striped-bg: #c7dbd2;
  1710. --bs-table-striped-color: #000;
  1711. --bs-table-active-bg: #bcd0c7;
  1712. --bs-table-active-color: #000;
  1713. --bs-table-hover-bg: #c1d6cc;
  1714. --bs-table-hover-color: #000;
  1715. color: var(--bs-table-color);
  1716. border-color: var(--bs-table-border-color);
  1717. }
  1718. .table-info {
  1719. --bs-table-color: #000;
  1720. --bs-table-bg: #cff4fc;
  1721. --bs-table-border-color: #badce3;
  1722. --bs-table-striped-bg: #c5e8ef;
  1723. --bs-table-striped-color: #000;
  1724. --bs-table-active-bg: #badce3;
  1725. --bs-table-active-color: #000;
  1726. --bs-table-hover-bg: #bfe2e9;
  1727. --bs-table-hover-color: #000;
  1728. color: var(--bs-table-color);
  1729. border-color: var(--bs-table-border-color);
  1730. }
  1731. .table-warning {
  1732. --bs-table-color: #000;
  1733. --bs-table-bg: #fff3cd;
  1734. --bs-table-border-color: #e6dbb9;
  1735. --bs-table-striped-bg: #f2e7c3;
  1736. --bs-table-striped-color: #000;
  1737. --bs-table-active-bg: #e6dbb9;
  1738. --bs-table-active-color: #000;
  1739. --bs-table-hover-bg: #ece1be;
  1740. --bs-table-hover-color: #000;
  1741. color: var(--bs-table-color);
  1742. border-color: var(--bs-table-border-color);
  1743. }
  1744. .table-danger {
  1745. --bs-table-color: #000;
  1746. --bs-table-bg: #f8d7da;
  1747. --bs-table-border-color: #dfc2c4;
  1748. --bs-table-striped-bg: #eccccf;
  1749. --bs-table-striped-color: #000;
  1750. --bs-table-active-bg: #dfc2c4;
  1751. --bs-table-active-color: #000;
  1752. --bs-table-hover-bg: #e5c7ca;
  1753. --bs-table-hover-color: #000;
  1754. color: var(--bs-table-color);
  1755. border-color: var(--bs-table-border-color);
  1756. }
  1757. .table-light {
  1758. --bs-table-color: #000;
  1759. --bs-table-bg: #f8f9fa;
  1760. --bs-table-border-color: #dfe0e1;
  1761. --bs-table-striped-bg: #ecedee;
  1762. --bs-table-striped-color: #000;
  1763. --bs-table-active-bg: #dfe0e1;
  1764. --bs-table-active-color: #000;
  1765. --bs-table-hover-bg: #e5e6e7;
  1766. --bs-table-hover-color: #000;
  1767. color: var(--bs-table-color);
  1768. border-color: var(--bs-table-border-color);
  1769. }
  1770. .table-dark {
  1771. --bs-table-color: #fff;
  1772. --bs-table-bg: #212529;
  1773. --bs-table-border-color: #373b3e;
  1774. --bs-table-striped-bg: #2c3034;
  1775. --bs-table-striped-color: #fff;
  1776. --bs-table-active-bg: #373b3e;
  1777. --bs-table-active-color: #fff;
  1778. --bs-table-hover-bg: #323539;
  1779. --bs-table-hover-color: #fff;
  1780. color: var(--bs-table-color);
  1781. border-color: var(--bs-table-border-color);
  1782. }
  1783. .table-responsive, .datatable-wrapper .datatable-container {
  1784. overflow-x: auto;
  1785. -webkit-overflow-scrolling: touch;
  1786. }
  1787. @media (max-width: 575.98px) {
  1788. .table-responsive-sm {
  1789. overflow-x: auto;
  1790. -webkit-overflow-scrolling: touch;
  1791. }
  1792. }
  1793. @media (max-width: 767.98px) {
  1794. .table-responsive-md {
  1795. overflow-x: auto;
  1796. -webkit-overflow-scrolling: touch;
  1797. }
  1798. }
  1799. @media (max-width: 991.98px) {
  1800. .table-responsive-lg {
  1801. overflow-x: auto;
  1802. -webkit-overflow-scrolling: touch;
  1803. }
  1804. }
  1805. @media (max-width: 1199.98px) {
  1806. .table-responsive-xl {
  1807. overflow-x: auto;
  1808. -webkit-overflow-scrolling: touch;
  1809. }
  1810. }
  1811. @media (max-width: 1399.98px) {
  1812. .table-responsive-xxl {
  1813. overflow-x: auto;
  1814. -webkit-overflow-scrolling: touch;
  1815. }
  1816. }
  1817. .form-label {
  1818. margin-bottom: 0.5rem;
  1819. }
  1820. .col-form-label {
  1821. padding-top: calc(0.375rem + 1px);
  1822. padding-bottom: calc(0.375rem + 1px);
  1823. margin-bottom: 0;
  1824. font-size: inherit;
  1825. line-height: 1.5;
  1826. }
  1827. .col-form-label-lg {
  1828. padding-top: calc(0.5rem + 1px);
  1829. padding-bottom: calc(0.5rem + 1px);
  1830. font-size: 1.25rem;
  1831. }
  1832. .col-form-label-sm {
  1833. padding-top: calc(0.25rem + 1px);
  1834. padding-bottom: calc(0.25rem + 1px);
  1835. font-size: 0.875rem;
  1836. }
  1837. .form-text {
  1838. margin-top: 0.25rem;
  1839. font-size: 0.875em;
  1840. color: #6c757d;
  1841. }
  1842. .form-control, .datatable-input {
  1843. display: block;
  1844. width: 100%;
  1845. padding: 0.375rem 0.75rem;
  1846. font-size: 1rem;
  1847. font-weight: 400;
  1848. line-height: 1.5;
  1849. color: #212529;
  1850. background-color: #fff;
  1851. background-clip: padding-box;
  1852. border: 1px solid #ced4da;
  1853. -webkit-appearance: none;
  1854. -moz-appearance: none;
  1855. appearance: none;
  1856. border-radius: 0.375rem;
  1857. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  1858. }
  1859. @media (prefers-reduced-motion: reduce) {
  1860. .form-control, .datatable-input {
  1861. transition: none;
  1862. }
  1863. }
  1864. .form-control[type=file], [type=file].datatable-input {
  1865. overflow: hidden;
  1866. }
  1867. .form-control[type=file]:not(:disabled):not([readonly]), [type=file].datatable-input:not(:disabled):not([readonly]) {
  1868. cursor: pointer;
  1869. }
  1870. .form-control:focus, .datatable-input:focus {
  1871. color: #212529;
  1872. background-color: #fff;
  1873. border-color: #86b7fe;
  1874. outline: 0;
  1875. box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  1876. }
  1877. .form-control::-webkit-date-and-time-value, .datatable-input::-webkit-date-and-time-value {
  1878. height: 1.5em;
  1879. }
  1880. .form-control::-moz-placeholder, .datatable-input::-moz-placeholder {
  1881. color: #6c757d;
  1882. opacity: 1;
  1883. }
  1884. .form-control::placeholder, .datatable-input::placeholder {
  1885. color: #6c757d;
  1886. opacity: 1;
  1887. }
  1888. .form-control:disabled, .datatable-input:disabled {
  1889. background-color: #e9ecef;
  1890. opacity: 1;
  1891. }
  1892. .form-control::file-selector-button, .datatable-input::file-selector-button {
  1893. padding: 0.375rem 0.75rem;
  1894. margin: -0.375rem -0.75rem;
  1895. -webkit-margin-end: 0.75rem;
  1896. margin-inline-end: 0.75rem;
  1897. color: #212529;
  1898. background-color: #e9ecef;
  1899. pointer-events: none;
  1900. border-color: inherit;
  1901. border-style: solid;
  1902. border-width: 0;
  1903. border-inline-end-width: 1px;
  1904. border-radius: 0;
  1905. 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;
  1906. }
  1907. @media (prefers-reduced-motion: reduce) {
  1908. .form-control::file-selector-button, .datatable-input::file-selector-button {
  1909. transition: none;
  1910. }
  1911. }
  1912. .form-control:hover:not(:disabled):not([readonly])::file-selector-button, .datatable-input:hover:not(:disabled):not([readonly])::file-selector-button {
  1913. background-color: #dde0e3;
  1914. }
  1915. .form-control-plaintext {
  1916. display: block;
  1917. width: 100%;
  1918. padding: 0.375rem 0;
  1919. margin-bottom: 0;
  1920. line-height: 1.5;
  1921. color: #212529;
  1922. background-color: transparent;
  1923. border: solid transparent;
  1924. border-width: 1px 0;
  1925. }
  1926. .form-control-plaintext:focus {
  1927. outline: 0;
  1928. }
  1929. .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  1930. padding-right: 0;
  1931. padding-left: 0;
  1932. }
  1933. .form-control-sm {
  1934. min-height: calc(1.5em + 0.5rem + 2px);
  1935. padding: 0.25rem 0.5rem;
  1936. font-size: 0.875rem;
  1937. border-radius: 0.25rem;
  1938. }
  1939. .form-control-sm::file-selector-button {
  1940. padding: 0.25rem 0.5rem;
  1941. margin: -0.25rem -0.5rem;
  1942. -webkit-margin-end: 0.5rem;
  1943. margin-inline-end: 0.5rem;
  1944. }
  1945. .form-control-lg {
  1946. min-height: calc(1.5em + 1rem + 2px);
  1947. padding: 0.5rem 1rem;
  1948. font-size: 1.25rem;
  1949. border-radius: 0.5rem;
  1950. }
  1951. .form-control-lg::file-selector-button {
  1952. padding: 0.5rem 1rem;
  1953. margin: -0.5rem -1rem;
  1954. -webkit-margin-end: 1rem;
  1955. margin-inline-end: 1rem;
  1956. }
  1957. textarea.form-control, textarea.datatable-input {
  1958. min-height: calc(1.5em + 0.75rem + 2px);
  1959. }
  1960. textarea.form-control-sm {
  1961. min-height: calc(1.5em + 0.5rem + 2px);
  1962. }
  1963. textarea.form-control-lg {
  1964. min-height: calc(1.5em + 1rem + 2px);
  1965. }
  1966. .form-control-color {
  1967. width: 3rem;
  1968. height: calc(1.5em + 0.75rem + 2px);
  1969. padding: 0.375rem;
  1970. }
  1971. .form-control-color:not(:disabled):not([readonly]) {
  1972. cursor: pointer;
  1973. }
  1974. .form-control-color::-moz-color-swatch {
  1975. border: 0 !important;
  1976. border-radius: 0.375rem;
  1977. }
  1978. .form-control-color::-webkit-color-swatch {
  1979. border-radius: 0.375rem;
  1980. }
  1981. .form-control-color.form-control-sm {
  1982. height: calc(1.5em + 0.5rem + 2px);
  1983. }
  1984. .form-control-color.form-control-lg {
  1985. height: calc(1.5em + 1rem + 2px);
  1986. }
  1987. .form-select, .datatable-selector {
  1988. display: block;
  1989. width: 100%;
  1990. padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  1991. -moz-padding-start: calc(0.75rem - 3px);
  1992. font-size: 1rem;
  1993. font-weight: 400;
  1994. line-height: 1.5;
  1995. color: #212529;
  1996. background-color: #fff;
  1997. 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 5 6 6 6-6'/%3e%3c/svg%3e");
  1998. background-repeat: no-repeat;
  1999. background-position: right 0.75rem center;
  2000. background-size: 16px 12px;
  2001. border: 1px solid #ced4da;
  2002. border-radius: 0.375rem;
  2003. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2004. -webkit-appearance: none;
  2005. -moz-appearance: none;
  2006. appearance: none;
  2007. }
  2008. @media (prefers-reduced-motion: reduce) {
  2009. .form-select, .datatable-selector {
  2010. transition: none;
  2011. }
  2012. }
  2013. .form-select:focus, .datatable-selector:focus {
  2014. border-color: #86b7fe;
  2015. outline: 0;
  2016. box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  2017. }
  2018. .form-select[multiple], [multiple].datatable-selector, .form-select[size]:not([size="1"]), [size].datatable-selector:not([size="1"]) {
  2019. padding-right: 0.75rem;
  2020. background-image: none;
  2021. }
  2022. .form-select:disabled, .datatable-selector:disabled {
  2023. background-color: #e9ecef;
  2024. }
  2025. .form-select:-moz-focusring, .datatable-selector:-moz-focusring {
  2026. color: transparent;
  2027. text-shadow: 0 0 0 #212529;
  2028. }
  2029. .form-select-sm {
  2030. padding-top: 0.25rem;
  2031. padding-bottom: 0.25rem;
  2032. padding-left: 0.5rem;
  2033. font-size: 0.875rem;
  2034. border-radius: 0.25rem;
  2035. }
  2036. .form-select-lg {
  2037. padding-top: 0.5rem;
  2038. padding-bottom: 0.5rem;
  2039. padding-left: 1rem;
  2040. font-size: 1.25rem;
  2041. border-radius: 0.5rem;
  2042. }
  2043. .form-check {
  2044. display: block;
  2045. min-height: 1.5rem;
  2046. padding-left: 1.5em;
  2047. margin-bottom: 0.125rem;
  2048. }
  2049. .form-check .form-check-input {
  2050. float: left;
  2051. margin-left: -1.5em;
  2052. }
  2053. .form-check-reverse {
  2054. padding-right: 1.5em;
  2055. padding-left: 0;
  2056. text-align: right;
  2057. }
  2058. .form-check-reverse .form-check-input {
  2059. float: right;
  2060. margin-right: -1.5em;
  2061. margin-left: 0;
  2062. }
  2063. .form-check-input {
  2064. width: 1em;
  2065. height: 1em;
  2066. margin-top: 0.25em;
  2067. vertical-align: top;
  2068. background-color: #fff;
  2069. background-repeat: no-repeat;
  2070. background-position: center;
  2071. background-size: contain;
  2072. border: 1px solid rgba(0, 0, 0, 0.25);
  2073. -webkit-appearance: none;
  2074. -moz-appearance: none;
  2075. appearance: none;
  2076. -webkit-print-color-adjust: exact;
  2077. print-color-adjust: exact;
  2078. }
  2079. .form-check-input[type=checkbox] {
  2080. border-radius: 0.25em;
  2081. }
  2082. .form-check-input[type=radio] {
  2083. border-radius: 50%;
  2084. }
  2085. .form-check-input:active {
  2086. filter: brightness(90%);
  2087. }
  2088. .form-check-input:focus {
  2089. border-color: #86b7fe;
  2090. outline: 0;
  2091. box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  2092. }
  2093. .form-check-input:checked {
  2094. background-color: #0d6efd;
  2095. border-color: #0d6efd;
  2096. }
  2097. .form-check-input:checked[type=checkbox] {
  2098. 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 10 3 3 6-6'/%3e%3c/svg%3e");
  2099. }
  2100. .form-check-input:checked[type=radio] {
  2101. 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");
  2102. }
  2103. .form-check-input[type=checkbox]:indeterminate {
  2104. background-color: #0d6efd;
  2105. border-color: #0d6efd;
  2106. 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");
  2107. }
  2108. .form-check-input:disabled {
  2109. pointer-events: none;
  2110. filter: none;
  2111. opacity: 0.5;
  2112. }
  2113. .form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  2114. cursor: default;
  2115. opacity: 0.5;
  2116. }
  2117. .form-switch {
  2118. padding-left: 2.5em;
  2119. }
  2120. .form-switch .form-check-input {
  2121. width: 2em;
  2122. margin-left: -2.5em;
  2123. 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");
  2124. background-position: left center;
  2125. border-radius: 2em;
  2126. transition: background-position 0.15s ease-in-out;
  2127. }
  2128. @media (prefers-reduced-motion: reduce) {
  2129. .form-switch .form-check-input {
  2130. transition: none;
  2131. }
  2132. }
  2133. .form-switch .form-check-input:focus {
  2134. 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");
  2135. }
  2136. .form-switch .form-check-input:checked {
  2137. background-position: right center;
  2138. 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");
  2139. }
  2140. .form-switch.form-check-reverse {
  2141. padding-right: 2.5em;
  2142. padding-left: 0;
  2143. }
  2144. .form-switch.form-check-reverse .form-check-input {
  2145. margin-right: -2.5em;
  2146. margin-left: 0;
  2147. }
  2148. .form-check-inline {
  2149. display: inline-block;
  2150. margin-right: 1rem;
  2151. }
  2152. .btn-check {
  2153. position: absolute;
  2154. clip: rect(0, 0, 0, 0);
  2155. pointer-events: none;
  2156. }
  2157. .btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  2158. pointer-events: none;
  2159. filter: none;
  2160. opacity: 0.65;
  2161. }
  2162. .form-range {
  2163. width: 100%;
  2164. height: 1.5rem;
  2165. padding: 0;
  2166. background-color: transparent;
  2167. -webkit-appearance: none;
  2168. -moz-appearance: none;
  2169. appearance: none;
  2170. }
  2171. .form-range:focus {
  2172. outline: 0;
  2173. }
  2174. .form-range:focus::-webkit-slider-thumb {
  2175. box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  2176. }
  2177. .form-range:focus::-moz-range-thumb {
  2178. box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  2179. }
  2180. .form-range::-moz-focus-outer {
  2181. border: 0;
  2182. }
  2183. .form-range::-webkit-slider-thumb {
  2184. width: 1rem;
  2185. height: 1rem;
  2186. margin-top: -0.25rem;
  2187. background-color: #0d6efd;
  2188. border: 0;
  2189. border-radius: 1rem;
  2190. -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2191. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2192. -webkit-appearance: none;
  2193. appearance: none;
  2194. }
  2195. @media (prefers-reduced-motion: reduce) {
  2196. .form-range::-webkit-slider-thumb {
  2197. -webkit-transition: none;
  2198. transition: none;
  2199. }
  2200. }
  2201. .form-range::-webkit-slider-thumb:active {
  2202. background-color: #b6d4fe;
  2203. }
  2204. .form-range::-webkit-slider-runnable-track {
  2205. width: 100%;
  2206. height: 0.5rem;
  2207. color: transparent;
  2208. cursor: pointer;
  2209. background-color: #dee2e6;
  2210. border-color: transparent;
  2211. border-radius: 1rem;
  2212. }
  2213. .form-range::-moz-range-thumb {
  2214. width: 1rem;
  2215. height: 1rem;
  2216. background-color: #0d6efd;
  2217. border: 0;
  2218. border-radius: 1rem;
  2219. -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2220. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2221. -moz-appearance: none;
  2222. appearance: none;
  2223. }
  2224. @media (prefers-reduced-motion: reduce) {
  2225. .form-range::-moz-range-thumb {
  2226. -moz-transition: none;
  2227. transition: none;
  2228. }
  2229. }
  2230. .form-range::-moz-range-thumb:active {
  2231. background-color: #b6d4fe;
  2232. }
  2233. .form-range::-moz-range-track {
  2234. width: 100%;
  2235. height: 0.5rem;
  2236. color: transparent;
  2237. cursor: pointer;
  2238. background-color: #dee2e6;
  2239. border-color: transparent;
  2240. border-radius: 1rem;
  2241. }
  2242. .form-range:disabled {
  2243. pointer-events: none;
  2244. }
  2245. .form-range:disabled::-webkit-slider-thumb {
  2246. background-color: #adb5bd;
  2247. }
  2248. .form-range:disabled::-moz-range-thumb {
  2249. background-color: #adb5bd;
  2250. }
  2251. .form-floating {
  2252. position: relative;
  2253. }
  2254. .form-floating > .form-control, .form-floating > .datatable-input,
  2255. .form-floating > .form-control-plaintext,
  2256. .form-floating > .form-select,
  2257. .form-floating > .datatable-selector {
  2258. height: calc(3.5rem + 2px);
  2259. line-height: 1.25;
  2260. }
  2261. .form-floating > label {
  2262. position: absolute;
  2263. top: 0;
  2264. left: 0;
  2265. width: 100%;
  2266. height: 100%;
  2267. padding: 1rem 0.75rem;
  2268. overflow: hidden;
  2269. text-align: start;
  2270. text-overflow: ellipsis;
  2271. white-space: nowrap;
  2272. pointer-events: none;
  2273. border: 1px solid transparent;
  2274. transform-origin: 0 0;
  2275. transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  2276. }
  2277. @media (prefers-reduced-motion: reduce) {
  2278. .form-floating > label {
  2279. transition: none;
  2280. }
  2281. }
  2282. .form-floating > .form-control, .form-floating > .datatable-input,
  2283. .form-floating > .form-control-plaintext {
  2284. padding: 1rem 0.75rem;
  2285. }
  2286. .form-floating > .form-control::-moz-placeholder, .form-floating > .datatable-input::-moz-placeholder, .form-floating > .form-control-plaintext::-moz-placeholder {
  2287. color: transparent;
  2288. }
  2289. .form-floating > .form-control::placeholder, .form-floating > .datatable-input::placeholder,
  2290. .form-floating > .form-control-plaintext::placeholder {
  2291. color: transparent;
  2292. }
  2293. .form-floating > .form-control:not(:-moz-placeholder-shown), .form-floating > .datatable-input:not(:-moz-placeholder-shown), .form-floating > .form-control-plaintext:not(:-moz-placeholder-shown) {
  2294. padding-top: 1.625rem;
  2295. padding-bottom: 0.625rem;
  2296. }
  2297. .form-floating > .form-control:focus, .form-floating > .datatable-input:focus, .form-floating > .form-control:not(:placeholder-shown), .form-floating > .datatable-input:not(:placeholder-shown),
  2298. .form-floating > .form-control-plaintext:focus,
  2299. .form-floating > .form-control-plaintext:not(:placeholder-shown) {
  2300. padding-top: 1.625rem;
  2301. padding-bottom: 0.625rem;
  2302. }
  2303. .form-floating > .form-control:-webkit-autofill, .form-floating > .datatable-input:-webkit-autofill,
  2304. .form-floating > .form-control-plaintext:-webkit-autofill {
  2305. padding-top: 1.625rem;
  2306. padding-bottom: 0.625rem;
  2307. }
  2308. .form-floating > .form-select, .form-floating > .datatable-selector {
  2309. padding-top: 1.625rem;
  2310. padding-bottom: 0.625rem;
  2311. }
  2312. .form-floating > .form-control:not(:-moz-placeholder-shown) ~ label, .form-floating > .datatable-input:not(:-moz-placeholder-shown) ~ label {
  2313. opacity: 0.65;
  2314. transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  2315. }
  2316. .form-floating > .form-control:focus ~ label, .form-floating > .datatable-input:focus ~ label,
  2317. .form-floating > .form-control:not(:placeholder-shown) ~ label,
  2318. .form-floating > .datatable-input:not(:placeholder-shown) ~ label,
  2319. .form-floating > .form-control-plaintext ~ label,
  2320. .form-floating > .form-select ~ label,
  2321. .form-floating > .datatable-selector ~ label {
  2322. opacity: 0.65;
  2323. transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  2324. }
  2325. .form-floating > .form-control:-webkit-autofill ~ label, .form-floating > .datatable-input:-webkit-autofill ~ label {
  2326. opacity: 0.65;
  2327. transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  2328. }
  2329. .form-floating > .form-control-plaintext ~ label {
  2330. border-width: 1px 0;
  2331. }
  2332. .input-group {
  2333. position: relative;
  2334. display: flex;
  2335. flex-wrap: wrap;
  2336. align-items: stretch;
  2337. width: 100%;
  2338. }
  2339. .input-group > .form-control, .input-group > .datatable-input,
  2340. .input-group > .form-select,
  2341. .input-group > .datatable-selector,
  2342. .input-group > .form-floating {
  2343. position: relative;
  2344. flex: 1 1 auto;
  2345. width: 1%;
  2346. min-width: 0;
  2347. }
  2348. .input-group > .form-control:focus, .input-group > .datatable-input:focus,
  2349. .input-group > .form-select:focus,
  2350. .input-group > .datatable-selector:focus,
  2351. .input-group > .form-floating:focus-within {
  2352. z-index: 5;
  2353. }
  2354. .input-group .btn {
  2355. position: relative;
  2356. z-index: 2;
  2357. }
  2358. .input-group .btn:focus {
  2359. z-index: 5;
  2360. }
  2361. .input-group-text {
  2362. display: flex;
  2363. align-items: center;
  2364. padding: 0.375rem 0.75rem;
  2365. font-size: 1rem;
  2366. font-weight: 400;
  2367. line-height: 1.5;
  2368. color: #212529;
  2369. text-align: center;
  2370. white-space: nowrap;
  2371. background-color: #e9ecef;
  2372. border: 1px solid #ced4da;
  2373. border-radius: 0.375rem;
  2374. }
  2375. .input-group-lg > .form-control, .input-group-lg > .datatable-input,
  2376. .input-group-lg > .form-select,
  2377. .input-group-lg > .datatable-selector,
  2378. .input-group-lg > .input-group-text,
  2379. .input-group-lg > .btn {
  2380. padding: 0.5rem 1rem;
  2381. font-size: 1.25rem;
  2382. border-radius: 0.5rem;
  2383. }
  2384. .input-group-sm > .form-control, .input-group-sm > .datatable-input,
  2385. .input-group-sm > .form-select,
  2386. .input-group-sm > .datatable-selector,
  2387. .input-group-sm > .input-group-text,
  2388. .input-group-sm > .btn {
  2389. padding: 0.25rem 0.5rem;
  2390. font-size: 0.875rem;
  2391. border-radius: 0.25rem;
  2392. }
  2393. .input-group-lg > .form-select, .input-group-lg > .datatable-selector,
  2394. .input-group-sm > .form-select,
  2395. .input-group-sm > .datatable-selector {
  2396. padding-right: 3rem;
  2397. }
  2398. .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
  2399. .input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3),
  2400. .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control,
  2401. .input-group:not(.has-validation) > .form-floating:not(:last-child) > .datatable-input,
  2402. .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select,
  2403. .input-group:not(.has-validation) > .form-floating:not(:last-child) > .datatable-selector {
  2404. border-top-right-radius: 0;
  2405. border-bottom-right-radius: 0;
  2406. }
  2407. .input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
  2408. .input-group.has-validation > .dropdown-toggle:nth-last-child(n+4),
  2409. .input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-control,
  2410. .input-group.has-validation > .form-floating:nth-last-child(n+3) > .datatable-input,
  2411. .input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-select,
  2412. .input-group.has-validation > .form-floating:nth-last-child(n+3) > .datatable-selector {
  2413. border-top-right-radius: 0;
  2414. border-bottom-right-radius: 0;
  2415. }
  2416. .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  2417. margin-left: -1px;
  2418. border-top-left-radius: 0;
  2419. border-bottom-left-radius: 0;
  2420. }
  2421. .input-group > .form-floating:not(:first-child) > .form-control, .input-group > .form-floating:not(:first-child) > .datatable-input,
  2422. .input-group > .form-floating:not(:first-child) > .form-select,
  2423. .input-group > .form-floating:not(:first-child) > .datatable-selector {
  2424. border-top-left-radius: 0;
  2425. border-bottom-left-radius: 0;
  2426. }
  2427. .valid-feedback {
  2428. display: none;
  2429. width: 100%;
  2430. margin-top: 0.25rem;
  2431. font-size: 0.875em;
  2432. color: #198754;
  2433. }
  2434. .valid-tooltip {
  2435. position: absolute;
  2436. top: 100%;
  2437. z-index: 5;
  2438. display: none;
  2439. max-width: 100%;
  2440. padding: 0.25rem 0.5rem;
  2441. margin-top: 0.1rem;
  2442. font-size: 0.875rem;
  2443. color: #fff;
  2444. background-color: rgba(25, 135, 84, 0.9);
  2445. border-radius: 0.375rem;
  2446. }
  2447. .was-validated :valid ~ .valid-feedback,
  2448. .was-validated :valid ~ .valid-tooltip,
  2449. .is-valid ~ .valid-feedback,
  2450. .is-valid ~ .valid-tooltip {
  2451. display: block;
  2452. }
  2453. .was-validated .form-control:valid, .was-validated .datatable-input:valid, .form-control.is-valid, .is-valid.datatable-input {
  2454. border-color: #198754;
  2455. padding-right: calc(1.5em + 0.75rem);
  2456. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  2457. background-repeat: no-repeat;
  2458. background-position: right calc(0.375em + 0.1875rem) center;
  2459. background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2460. }
  2461. .was-validated .form-control:valid:focus, .was-validated .datatable-input:valid:focus, .form-control.is-valid:focus, .is-valid.datatable-input:focus {
  2462. border-color: #198754;
  2463. box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
  2464. }
  2465. .was-validated textarea.form-control:valid, .was-validated textarea.datatable-input:valid, textarea.form-control.is-valid, textarea.is-valid.datatable-input {
  2466. padding-right: calc(1.5em + 0.75rem);
  2467. background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
  2468. }
  2469. .was-validated .form-select:valid, .was-validated .datatable-selector:valid, .form-select.is-valid, .is-valid.datatable-selector {
  2470. border-color: #198754;
  2471. }
  2472. .was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .datatable-selector:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .was-validated .datatable-selector:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .is-valid.datatable-selector:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"], .is-valid.datatable-selector:not([multiple])[size="1"] {
  2473. padding-right: 4.125rem;
  2474. 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 5 6 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.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  2475. background-position: right 0.75rem center, center right 2.25rem;
  2476. background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2477. }
  2478. .was-validated .form-select:valid:focus, .was-validated .datatable-selector:valid:focus, .form-select.is-valid:focus, .is-valid.datatable-selector:focus {
  2479. border-color: #198754;
  2480. box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
  2481. }
  2482. .was-validated .form-control-color:valid, .form-control-color.is-valid {
  2483. width: calc(3rem + calc(1.5em + 0.75rem));
  2484. }
  2485. .was-validated .form-check-input:valid, .form-check-input.is-valid {
  2486. border-color: #198754;
  2487. }
  2488. .was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  2489. background-color: #198754;
  2490. }
  2491. .was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  2492. box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
  2493. }
  2494. .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  2495. color: #198754;
  2496. }
  2497. .form-check-inline .form-check-input ~ .valid-feedback {
  2498. margin-left: 0.5em;
  2499. }
  2500. .was-validated .input-group > .form-control:not(:focus):valid, .was-validated .input-group > .datatable-input:not(:focus):valid, .input-group > .form-control:not(:focus).is-valid, .input-group > .datatable-input:not(:focus).is-valid,
  2501. .was-validated .input-group > .form-select:not(:focus):valid,
  2502. .was-validated .input-group > .datatable-selector:not(:focus):valid,
  2503. .input-group > .form-select:not(:focus).is-valid,
  2504. .input-group > .datatable-selector:not(:focus).is-valid,
  2505. .was-validated .input-group > .form-floating:not(:focus-within):valid,
  2506. .input-group > .form-floating:not(:focus-within).is-valid {
  2507. z-index: 3;
  2508. }
  2509. .invalid-feedback {
  2510. display: none;
  2511. width: 100%;
  2512. margin-top: 0.25rem;
  2513. font-size: 0.875em;
  2514. color: #dc3545;
  2515. }
  2516. .invalid-tooltip {
  2517. position: absolute;
  2518. top: 100%;
  2519. z-index: 5;
  2520. display: none;
  2521. max-width: 100%;
  2522. padding: 0.25rem 0.5rem;
  2523. margin-top: 0.1rem;
  2524. font-size: 0.875rem;
  2525. color: #fff;
  2526. background-color: rgba(220, 53, 69, 0.9);
  2527. border-radius: 0.375rem;
  2528. }
  2529. .was-validated :invalid ~ .invalid-feedback,
  2530. .was-validated :invalid ~ .invalid-tooltip,
  2531. .is-invalid ~ .invalid-feedback,
  2532. .is-invalid ~ .invalid-tooltip {
  2533. display: block;
  2534. }
  2535. .was-validated .form-control:invalid, .was-validated .datatable-input:invalid, .form-control.is-invalid, .is-invalid.datatable-input {
  2536. border-color: #dc3545;
  2537. padding-right: calc(1.5em + 0.75rem);
  2538. 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");
  2539. background-repeat: no-repeat;
  2540. background-position: right calc(0.375em + 0.1875rem) center;
  2541. background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2542. }
  2543. .was-validated .form-control:invalid:focus, .was-validated .datatable-input:invalid:focus, .form-control.is-invalid:focus, .is-invalid.datatable-input:focus {
  2544. border-color: #dc3545;
  2545. box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
  2546. }
  2547. .was-validated textarea.form-control:invalid, .was-validated textarea.datatable-input:invalid, textarea.form-control.is-invalid, textarea.is-invalid.datatable-input {
  2548. padding-right: calc(1.5em + 0.75rem);
  2549. background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
  2550. }
  2551. .was-validated .form-select:invalid, .was-validated .datatable-selector:invalid, .form-select.is-invalid, .is-invalid.datatable-selector {
  2552. border-color: #dc3545;
  2553. }
  2554. .was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .datatable-selector:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .was-validated .datatable-selector:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .is-invalid.datatable-selector:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"], .is-invalid.datatable-selector:not([multiple])[size="1"] {
  2555. padding-right: 4.125rem;
  2556. 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 5 6 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");
  2557. background-position: right 0.75rem center, center right 2.25rem;
  2558. background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2559. }
  2560. .was-validated .form-select:invalid:focus, .was-validated .datatable-selector:invalid:focus, .form-select.is-invalid:focus, .is-invalid.datatable-selector:focus {
  2561. border-color: #dc3545;
  2562. box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
  2563. }
  2564. .was-validated .form-control-color:invalid, .form-control-color.is-invalid {
  2565. width: calc(3rem + calc(1.5em + 0.75rem));
  2566. }
  2567. .was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  2568. border-color: #dc3545;
  2569. }
  2570. .was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  2571. background-color: #dc3545;
  2572. }
  2573. .was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  2574. box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
  2575. }
  2576. .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  2577. color: #dc3545;
  2578. }
  2579. .form-check-inline .form-check-input ~ .invalid-feedback {
  2580. margin-left: 0.5em;
  2581. }
  2582. .was-validated .input-group > .form-control:not(:focus):invalid, .was-validated .input-group > .datatable-input:not(:focus):invalid, .input-group > .form-control:not(:focus).is-invalid, .input-group > .datatable-input:not(:focus).is-invalid,
  2583. .was-validated .input-group > .form-select:not(:focus):invalid,
  2584. .was-validated .input-group > .datatable-selector:not(:focus):invalid,
  2585. .input-group > .form-select:not(:focus).is-invalid,
  2586. .input-group > .datatable-selector:not(:focus).is-invalid,
  2587. .was-validated .input-group > .form-floating:not(:focus-within):invalid,
  2588. .input-group > .form-floating:not(:focus-within).is-invalid {
  2589. z-index: 4;
  2590. }
  2591. .btn {
  2592. --bs-btn-padding-x: 0.75rem;
  2593. --bs-btn-padding-y: 0.375rem;
  2594. --bs-btn-font-family: ;
  2595. --bs-btn-font-size: 1rem;
  2596. --bs-btn-font-weight: 400;
  2597. --bs-btn-line-height: 1.5;
  2598. --bs-btn-color: #212529;
  2599. --bs-btn-bg: transparent;
  2600. --bs-btn-border-width: 1px;
  2601. --bs-btn-border-color: transparent;
  2602. --bs-btn-border-radius: 0.375rem;
  2603. --bs-btn-hover-border-color: transparent;
  2604. --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  2605. --bs-btn-disabled-opacity: 0.65;
  2606. --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
  2607. display: inline-block;
  2608. padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  2609. font-family: var(--bs-btn-font-family);
  2610. font-size: var(--bs-btn-font-size);
  2611. font-weight: var(--bs-btn-font-weight);
  2612. line-height: var(--bs-btn-line-height);
  2613. color: var(--bs-btn-color);
  2614. text-align: center;
  2615. text-decoration: none;
  2616. vertical-align: middle;
  2617. cursor: pointer;
  2618. -webkit-user-select: none;
  2619. -moz-user-select: none;
  2620. user-select: none;
  2621. border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  2622. border-radius: var(--bs-btn-border-radius);
  2623. background-color: var(--bs-btn-bg);
  2624. 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;
  2625. }
  2626. @media (prefers-reduced-motion: reduce) {
  2627. .btn {
  2628. transition: none;
  2629. }
  2630. }
  2631. .btn:hover {
  2632. color: var(--bs-btn-hover-color);
  2633. background-color: var(--bs-btn-hover-bg);
  2634. border-color: var(--bs-btn-hover-border-color);
  2635. }
  2636. .btn-check + .btn:hover {
  2637. color: var(--bs-btn-color);
  2638. background-color: var(--bs-btn-bg);
  2639. border-color: var(--bs-btn-border-color);
  2640. }
  2641. .btn:focus-visible {
  2642. color: var(--bs-btn-hover-color);
  2643. background-color: var(--bs-btn-hover-bg);
  2644. border-color: var(--bs-btn-hover-border-color);
  2645. outline: 0;
  2646. box-shadow: var(--bs-btn-focus-box-shadow);
  2647. }
  2648. .btn-check:focus-visible + .btn {
  2649. border-color: var(--bs-btn-hover-border-color);
  2650. outline: 0;
  2651. box-shadow: var(--bs-btn-focus-box-shadow);
  2652. }
  2653. .btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
  2654. color: var(--bs-btn-active-color);
  2655. background-color: var(--bs-btn-active-bg);
  2656. border-color: var(--bs-btn-active-border-color);
  2657. }
  2658. .btn-check:checked + .btn:focus-visible, :not(.btn-check) + .btn:active:focus-visible, .btn:first-child:active:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible {
  2659. box-shadow: var(--bs-btn-focus-box-shadow);
  2660. }
  2661. .btn:disabled, .btn.disabled, fieldset:disabled .btn {
  2662. color: var(--bs-btn-disabled-color);
  2663. pointer-events: none;
  2664. background-color: var(--bs-btn-disabled-bg);
  2665. border-color: var(--bs-btn-disabled-border-color);
  2666. opacity: var(--bs-btn-disabled-opacity);
  2667. }
  2668. .btn-primary {
  2669. --bs-btn-color: #fff;
  2670. --bs-btn-bg: #0d6efd;
  2671. --bs-btn-border-color: #0d6efd;
  2672. --bs-btn-hover-color: #fff;
  2673. --bs-btn-hover-bg: #0b5ed7;
  2674. --bs-btn-hover-border-color: #0a58ca;
  2675. --bs-btn-focus-shadow-rgb: 49, 132, 253;
  2676. --bs-btn-active-color: #fff;
  2677. --bs-btn-active-bg: #0a58ca;
  2678. --bs-btn-active-border-color: #0a53be;
  2679. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2680. --bs-btn-disabled-color: #fff;
  2681. --bs-btn-disabled-bg: #0d6efd;
  2682. --bs-btn-disabled-border-color: #0d6efd;
  2683. }
  2684. .btn-secondary {
  2685. --bs-btn-color: #fff;
  2686. --bs-btn-bg: #6c757d;
  2687. --bs-btn-border-color: #6c757d;
  2688. --bs-btn-hover-color: #fff;
  2689. --bs-btn-hover-bg: #5c636a;
  2690. --bs-btn-hover-border-color: #565e64;
  2691. --bs-btn-focus-shadow-rgb: 130, 138, 145;
  2692. --bs-btn-active-color: #fff;
  2693. --bs-btn-active-bg: #565e64;
  2694. --bs-btn-active-border-color: #51585e;
  2695. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2696. --bs-btn-disabled-color: #fff;
  2697. --bs-btn-disabled-bg: #6c757d;
  2698. --bs-btn-disabled-border-color: #6c757d;
  2699. }
  2700. .btn-success {
  2701. --bs-btn-color: #fff;
  2702. --bs-btn-bg: #198754;
  2703. --bs-btn-border-color: #198754;
  2704. --bs-btn-hover-color: #fff;
  2705. --bs-btn-hover-bg: #157347;
  2706. --bs-btn-hover-border-color: #146c43;
  2707. --bs-btn-focus-shadow-rgb: 60, 153, 110;
  2708. --bs-btn-active-color: #fff;
  2709. --bs-btn-active-bg: #146c43;
  2710. --bs-btn-active-border-color: #13653f;
  2711. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2712. --bs-btn-disabled-color: #fff;
  2713. --bs-btn-disabled-bg: #198754;
  2714. --bs-btn-disabled-border-color: #198754;
  2715. }
  2716. .btn-info {
  2717. --bs-btn-color: #000;
  2718. --bs-btn-bg: #0dcaf0;
  2719. --bs-btn-border-color: #0dcaf0;
  2720. --bs-btn-hover-color: #000;
  2721. --bs-btn-hover-bg: #31d2f2;
  2722. --bs-btn-hover-border-color: #25cff2;
  2723. --bs-btn-focus-shadow-rgb: 11, 172, 204;
  2724. --bs-btn-active-color: #000;
  2725. --bs-btn-active-bg: #3dd5f3;
  2726. --bs-btn-active-border-color: #25cff2;
  2727. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2728. --bs-btn-disabled-color: #000;
  2729. --bs-btn-disabled-bg: #0dcaf0;
  2730. --bs-btn-disabled-border-color: #0dcaf0;
  2731. }
  2732. .btn-warning {
  2733. --bs-btn-color: #000;
  2734. --bs-btn-bg: #ffc107;
  2735. --bs-btn-border-color: #ffc107;
  2736. --bs-btn-hover-color: #000;
  2737. --bs-btn-hover-bg: #ffca2c;
  2738. --bs-btn-hover-border-color: #ffc720;
  2739. --bs-btn-focus-shadow-rgb: 217, 164, 6;
  2740. --bs-btn-active-color: #000;
  2741. --bs-btn-active-bg: #ffcd39;
  2742. --bs-btn-active-border-color: #ffc720;
  2743. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2744. --bs-btn-disabled-color: #000;
  2745. --bs-btn-disabled-bg: #ffc107;
  2746. --bs-btn-disabled-border-color: #ffc107;
  2747. }
  2748. .btn-danger {
  2749. --bs-btn-color: #fff;
  2750. --bs-btn-bg: #dc3545;
  2751. --bs-btn-border-color: #dc3545;
  2752. --bs-btn-hover-color: #fff;
  2753. --bs-btn-hover-bg: #bb2d3b;
  2754. --bs-btn-hover-border-color: #b02a37;
  2755. --bs-btn-focus-shadow-rgb: 225, 83, 97;
  2756. --bs-btn-active-color: #fff;
  2757. --bs-btn-active-bg: #b02a37;
  2758. --bs-btn-active-border-color: #a52834;
  2759. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2760. --bs-btn-disabled-color: #fff;
  2761. --bs-btn-disabled-bg: #dc3545;
  2762. --bs-btn-disabled-border-color: #dc3545;
  2763. }
  2764. .btn-light {
  2765. --bs-btn-color: #000;
  2766. --bs-btn-bg: #f8f9fa;
  2767. --bs-btn-border-color: #f8f9fa;
  2768. --bs-btn-hover-color: #000;
  2769. --bs-btn-hover-bg: #d3d4d5;
  2770. --bs-btn-hover-border-color: #c6c7c8;
  2771. --bs-btn-focus-shadow-rgb: 211, 212, 213;
  2772. --bs-btn-active-color: #000;
  2773. --bs-btn-active-bg: #c6c7c8;
  2774. --bs-btn-active-border-color: #babbbc;
  2775. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2776. --bs-btn-disabled-color: #000;
  2777. --bs-btn-disabled-bg: #f8f9fa;
  2778. --bs-btn-disabled-border-color: #f8f9fa;
  2779. }
  2780. .btn-dark {
  2781. --bs-btn-color: #fff;
  2782. --bs-btn-bg: #212529;
  2783. --bs-btn-border-color: #212529;
  2784. --bs-btn-hover-color: #fff;
  2785. --bs-btn-hover-bg: #424649;
  2786. --bs-btn-hover-border-color: #373b3e;
  2787. --bs-btn-focus-shadow-rgb: 66, 70, 73;
  2788. --bs-btn-active-color: #fff;
  2789. --bs-btn-active-bg: #4d5154;
  2790. --bs-btn-active-border-color: #373b3e;
  2791. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2792. --bs-btn-disabled-color: #fff;
  2793. --bs-btn-disabled-bg: #212529;
  2794. --bs-btn-disabled-border-color: #212529;
  2795. }
  2796. .btn-outline-primary {
  2797. --bs-btn-color: #0d6efd;
  2798. --bs-btn-border-color: #0d6efd;
  2799. --bs-btn-hover-color: #fff;
  2800. --bs-btn-hover-bg: #0d6efd;
  2801. --bs-btn-hover-border-color: #0d6efd;
  2802. --bs-btn-focus-shadow-rgb: 13, 110, 253;
  2803. --bs-btn-active-color: #fff;
  2804. --bs-btn-active-bg: #0d6efd;
  2805. --bs-btn-active-border-color: #0d6efd;
  2806. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2807. --bs-btn-disabled-color: #0d6efd;
  2808. --bs-btn-disabled-bg: transparent;
  2809. --bs-btn-disabled-border-color: #0d6efd;
  2810. --bs-gradient: none;
  2811. }
  2812. .btn-outline-secondary {
  2813. --bs-btn-color: #6c757d;
  2814. --bs-btn-border-color: #6c757d;
  2815. --bs-btn-hover-color: #fff;
  2816. --bs-btn-hover-bg: #6c757d;
  2817. --bs-btn-hover-border-color: #6c757d;
  2818. --bs-btn-focus-shadow-rgb: 108, 117, 125;
  2819. --bs-btn-active-color: #fff;
  2820. --bs-btn-active-bg: #6c757d;
  2821. --bs-btn-active-border-color: #6c757d;
  2822. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2823. --bs-btn-disabled-color: #6c757d;
  2824. --bs-btn-disabled-bg: transparent;
  2825. --bs-btn-disabled-border-color: #6c757d;
  2826. --bs-gradient: none;
  2827. }
  2828. .btn-outline-success {
  2829. --bs-btn-color: #198754;
  2830. --bs-btn-border-color: #198754;
  2831. --bs-btn-hover-color: #fff;
  2832. --bs-btn-hover-bg: #198754;
  2833. --bs-btn-hover-border-color: #198754;
  2834. --bs-btn-focus-shadow-rgb: 25, 135, 84;
  2835. --bs-btn-active-color: #fff;
  2836. --bs-btn-active-bg: #198754;
  2837. --bs-btn-active-border-color: #198754;
  2838. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2839. --bs-btn-disabled-color: #198754;
  2840. --bs-btn-disabled-bg: transparent;
  2841. --bs-btn-disabled-border-color: #198754;
  2842. --bs-gradient: none;
  2843. }
  2844. .btn-outline-info {
  2845. --bs-btn-color: #0dcaf0;
  2846. --bs-btn-border-color: #0dcaf0;
  2847. --bs-btn-hover-color: #000;
  2848. --bs-btn-hover-bg: #0dcaf0;
  2849. --bs-btn-hover-border-color: #0dcaf0;
  2850. --bs-btn-focus-shadow-rgb: 13, 202, 240;
  2851. --bs-btn-active-color: #000;
  2852. --bs-btn-active-bg: #0dcaf0;
  2853. --bs-btn-active-border-color: #0dcaf0;
  2854. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2855. --bs-btn-disabled-color: #0dcaf0;
  2856. --bs-btn-disabled-bg: transparent;
  2857. --bs-btn-disabled-border-color: #0dcaf0;
  2858. --bs-gradient: none;
  2859. }
  2860. .btn-outline-warning {
  2861. --bs-btn-color: #ffc107;
  2862. --bs-btn-border-color: #ffc107;
  2863. --bs-btn-hover-color: #000;
  2864. --bs-btn-hover-bg: #ffc107;
  2865. --bs-btn-hover-border-color: #ffc107;
  2866. --bs-btn-focus-shadow-rgb: 255, 193, 7;
  2867. --bs-btn-active-color: #000;
  2868. --bs-btn-active-bg: #ffc107;
  2869. --bs-btn-active-border-color: #ffc107;
  2870. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2871. --bs-btn-disabled-color: #ffc107;
  2872. --bs-btn-disabled-bg: transparent;
  2873. --bs-btn-disabled-border-color: #ffc107;
  2874. --bs-gradient: none;
  2875. }
  2876. .btn-outline-danger {
  2877. --bs-btn-color: #dc3545;
  2878. --bs-btn-border-color: #dc3545;
  2879. --bs-btn-hover-color: #fff;
  2880. --bs-btn-hover-bg: #dc3545;
  2881. --bs-btn-hover-border-color: #dc3545;
  2882. --bs-btn-focus-shadow-rgb: 220, 53, 69;
  2883. --bs-btn-active-color: #fff;
  2884. --bs-btn-active-bg: #dc3545;
  2885. --bs-btn-active-border-color: #dc3545;
  2886. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2887. --bs-btn-disabled-color: #dc3545;
  2888. --bs-btn-disabled-bg: transparent;
  2889. --bs-btn-disabled-border-color: #dc3545;
  2890. --bs-gradient: none;
  2891. }
  2892. .btn-outline-light {
  2893. --bs-btn-color: #f8f9fa;
  2894. --bs-btn-border-color: #f8f9fa;
  2895. --bs-btn-hover-color: #000;
  2896. --bs-btn-hover-bg: #f8f9fa;
  2897. --bs-btn-hover-border-color: #f8f9fa;
  2898. --bs-btn-focus-shadow-rgb: 248, 249, 250;
  2899. --bs-btn-active-color: #000;
  2900. --bs-btn-active-bg: #f8f9fa;
  2901. --bs-btn-active-border-color: #f8f9fa;
  2902. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2903. --bs-btn-disabled-color: #f8f9fa;
  2904. --bs-btn-disabled-bg: transparent;
  2905. --bs-btn-disabled-border-color: #f8f9fa;
  2906. --bs-gradient: none;
  2907. }
  2908. .btn-outline-dark {
  2909. --bs-btn-color: #212529;
  2910. --bs-btn-border-color: #212529;
  2911. --bs-btn-hover-color: #fff;
  2912. --bs-btn-hover-bg: #212529;
  2913. --bs-btn-hover-border-color: #212529;
  2914. --bs-btn-focus-shadow-rgb: 33, 37, 41;
  2915. --bs-btn-active-color: #fff;
  2916. --bs-btn-active-bg: #212529;
  2917. --bs-btn-active-border-color: #212529;
  2918. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2919. --bs-btn-disabled-color: #212529;
  2920. --bs-btn-disabled-bg: transparent;
  2921. --bs-btn-disabled-border-color: #212529;
  2922. --bs-gradient: none;
  2923. }
  2924. .btn-link {
  2925. --bs-btn-font-weight: 400;
  2926. --bs-btn-color: var(--bs-link-color);
  2927. --bs-btn-bg: transparent;
  2928. --bs-btn-border-color: transparent;
  2929. --bs-btn-hover-color: var(--bs-link-hover-color);
  2930. --bs-btn-hover-border-color: transparent;
  2931. --bs-btn-active-color: var(--bs-link-hover-color);
  2932. --bs-btn-active-border-color: transparent;
  2933. --bs-btn-disabled-color: #6c757d;
  2934. --bs-btn-disabled-border-color: transparent;
  2935. --bs-btn-box-shadow: none;
  2936. --bs-btn-focus-shadow-rgb: 49, 132, 253;
  2937. text-decoration: underline;
  2938. }
  2939. .btn-link:focus-visible {
  2940. color: var(--bs-btn-color);
  2941. }
  2942. .btn-link:hover {
  2943. color: var(--bs-btn-hover-color);
  2944. }
  2945. .btn-lg, .btn-group-lg > .btn {
  2946. --bs-btn-padding-y: 0.5rem;
  2947. --bs-btn-padding-x: 1rem;
  2948. --bs-btn-font-size: 1.25rem;
  2949. --bs-btn-border-radius: 0.5rem;
  2950. }
  2951. .btn-sm, .btn-group-sm > .btn {
  2952. --bs-btn-padding-y: 0.25rem;
  2953. --bs-btn-padding-x: 0.5rem;
  2954. --bs-btn-font-size: 0.875rem;
  2955. --bs-btn-border-radius: 0.25rem;
  2956. }
  2957. .fade {
  2958. transition: opacity 0.15s linear;
  2959. }
  2960. @media (prefers-reduced-motion: reduce) {
  2961. .fade {
  2962. transition: none;
  2963. }
  2964. }
  2965. .fade:not(.show) {
  2966. opacity: 0;
  2967. }
  2968. .collapse:not(.show) {
  2969. display: none;
  2970. }
  2971. .collapsing {
  2972. height: 0;
  2973. overflow: hidden;
  2974. transition: height 0.35s ease;
  2975. }
  2976. @media (prefers-reduced-motion: reduce) {
  2977. .collapsing {
  2978. transition: none;
  2979. }
  2980. }
  2981. .collapsing.collapse-horizontal {
  2982. width: 0;
  2983. height: auto;
  2984. transition: width 0.35s ease;
  2985. }
  2986. @media (prefers-reduced-motion: reduce) {
  2987. .collapsing.collapse-horizontal {
  2988. transition: none;
  2989. }
  2990. }
  2991. .dropup,
  2992. .dropend,
  2993. .dropdown,
  2994. .dropstart,
  2995. .dropup-center,
  2996. .dropdown-center {
  2997. position: relative;
  2998. }
  2999. .dropdown-toggle {
  3000. white-space: nowrap;
  3001. }
  3002. .dropdown-toggle::after {
  3003. display: inline-block;
  3004. margin-left: 0.255em;
  3005. vertical-align: 0.255em;
  3006. content: "";
  3007. border-top: 0.3em solid;
  3008. border-right: 0.3em solid transparent;
  3009. border-bottom: 0;
  3010. border-left: 0.3em solid transparent;
  3011. }
  3012. .dropdown-toggle:empty::after {
  3013. margin-left: 0;
  3014. }
  3015. .dropdown-menu {
  3016. --bs-dropdown-zindex: 1000;
  3017. --bs-dropdown-min-width: 10rem;
  3018. --bs-dropdown-padding-x: 0;
  3019. --bs-dropdown-padding-y: 0.5rem;
  3020. --bs-dropdown-spacer: 0.125rem;
  3021. --bs-dropdown-font-size: 1rem;
  3022. --bs-dropdown-color: #212529;
  3023. --bs-dropdown-bg: #fff;
  3024. --bs-dropdown-border-color: var(--bs-border-color-translucent);
  3025. --bs-dropdown-border-radius: 0.375rem;
  3026. --bs-dropdown-border-width: 1px;
  3027. --bs-dropdown-inner-border-radius: calc(0.375rem - 1px);
  3028. --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  3029. --bs-dropdown-divider-margin-y: 0.5rem;
  3030. --bs-dropdown-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  3031. --bs-dropdown-link-color: #212529;
  3032. --bs-dropdown-link-hover-color: #1e2125;
  3033. --bs-dropdown-link-hover-bg: #e9ecef;
  3034. --bs-dropdown-link-active-color: #fff;
  3035. --bs-dropdown-link-active-bg: #0d6efd;
  3036. --bs-dropdown-link-disabled-color: #adb5bd;
  3037. --bs-dropdown-item-padding-x: 1rem;
  3038. --bs-dropdown-item-padding-y: 0.25rem;
  3039. --bs-dropdown-header-color: #6c757d;
  3040. --bs-dropdown-header-padding-x: 1rem;
  3041. --bs-dropdown-header-padding-y: 0.5rem;
  3042. position: absolute;
  3043. z-index: var(--bs-dropdown-zindex);
  3044. display: none;
  3045. min-width: var(--bs-dropdown-min-width);
  3046. padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  3047. margin: 0;
  3048. font-size: var(--bs-dropdown-font-size);
  3049. color: var(--bs-dropdown-color);
  3050. text-align: left;
  3051. list-style: none;
  3052. background-color: var(--bs-dropdown-bg);
  3053. background-clip: padding-box;
  3054. border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  3055. border-radius: var(--bs-dropdown-border-radius);
  3056. }
  3057. .dropdown-menu[data-bs-popper] {
  3058. top: 100%;
  3059. left: 0;
  3060. margin-top: var(--bs-dropdown-spacer);
  3061. }
  3062. .dropdown-menu-start {
  3063. --bs-position: start;
  3064. }
  3065. .dropdown-menu-start[data-bs-popper] {
  3066. right: auto;
  3067. left: 0;
  3068. }
  3069. .dropdown-menu-end {
  3070. --bs-position: end;
  3071. }
  3072. .dropdown-menu-end[data-bs-popper] {
  3073. right: 0;
  3074. left: auto;
  3075. }
  3076. @media (min-width: 576px) {
  3077. .dropdown-menu-sm-start {
  3078. --bs-position: start;
  3079. }
  3080. .dropdown-menu-sm-start[data-bs-popper] {
  3081. right: auto;
  3082. left: 0;
  3083. }
  3084. .dropdown-menu-sm-end {
  3085. --bs-position: end;
  3086. }
  3087. .dropdown-menu-sm-end[data-bs-popper] {
  3088. right: 0;
  3089. left: auto;
  3090. }
  3091. }
  3092. @media (min-width: 768px) {
  3093. .dropdown-menu-md-start {
  3094. --bs-position: start;
  3095. }
  3096. .dropdown-menu-md-start[data-bs-popper] {
  3097. right: auto;
  3098. left: 0;
  3099. }
  3100. .dropdown-menu-md-end {
  3101. --bs-position: end;
  3102. }
  3103. .dropdown-menu-md-end[data-bs-popper] {
  3104. right: 0;
  3105. left: auto;
  3106. }
  3107. }
  3108. @media (min-width: 992px) {
  3109. .dropdown-menu-lg-start {
  3110. --bs-position: start;
  3111. }
  3112. .dropdown-menu-lg-start[data-bs-popper] {
  3113. right: auto;
  3114. left: 0;
  3115. }
  3116. .dropdown-menu-lg-end {
  3117. --bs-position: end;
  3118. }
  3119. .dropdown-menu-lg-end[data-bs-popper] {
  3120. right: 0;
  3121. left: auto;
  3122. }
  3123. }
  3124. @media (min-width: 1200px) {
  3125. .dropdown-menu-xl-start {
  3126. --bs-position: start;
  3127. }
  3128. .dropdown-menu-xl-start[data-bs-popper] {
  3129. right: auto;
  3130. left: 0;
  3131. }
  3132. .dropdown-menu-xl-end {
  3133. --bs-position: end;
  3134. }
  3135. .dropdown-menu-xl-end[data-bs-popper] {
  3136. right: 0;
  3137. left: auto;
  3138. }
  3139. }
  3140. @media (min-width: 1400px) {
  3141. .dropdown-menu-xxl-start {
  3142. --bs-position: start;
  3143. }
  3144. .dropdown-menu-xxl-start[data-bs-popper] {
  3145. right: auto;
  3146. left: 0;
  3147. }
  3148. .dropdown-menu-xxl-end {
  3149. --bs-position: end;
  3150. }
  3151. .dropdown-menu-xxl-end[data-bs-popper] {
  3152. right: 0;
  3153. left: auto;
  3154. }
  3155. }
  3156. .dropup .dropdown-menu[data-bs-popper] {
  3157. top: auto;
  3158. bottom: 100%;
  3159. margin-top: 0;
  3160. margin-bottom: var(--bs-dropdown-spacer);
  3161. }
  3162. .dropup .dropdown-toggle::after {
  3163. display: inline-block;
  3164. margin-left: 0.255em;
  3165. vertical-align: 0.255em;
  3166. content: "";
  3167. border-top: 0;
  3168. border-right: 0.3em solid transparent;
  3169. border-bottom: 0.3em solid;
  3170. border-left: 0.3em solid transparent;
  3171. }
  3172. .dropup .dropdown-toggle:empty::after {
  3173. margin-left: 0;
  3174. }
  3175. .dropend .dropdown-menu[data-bs-popper] {
  3176. top: 0;
  3177. right: auto;
  3178. left: 100%;
  3179. margin-top: 0;
  3180. margin-left: var(--bs-dropdown-spacer);
  3181. }
  3182. .dropend .dropdown-toggle::after {
  3183. display: inline-block;
  3184. margin-left: 0.255em;
  3185. vertical-align: 0.255em;
  3186. content: "";
  3187. border-top: 0.3em solid transparent;
  3188. border-right: 0;
  3189. border-bottom: 0.3em solid transparent;
  3190. border-left: 0.3em solid;
  3191. }
  3192. .dropend .dropdown-toggle:empty::after {
  3193. margin-left: 0;
  3194. }
  3195. .dropend .dropdown-toggle::after {
  3196. vertical-align: 0;
  3197. }
  3198. .dropstart .dropdown-menu[data-bs-popper] {
  3199. top: 0;
  3200. right: 100%;
  3201. left: auto;
  3202. margin-top: 0;
  3203. margin-right: var(--bs-dropdown-spacer);
  3204. }
  3205. .dropstart .dropdown-toggle::after {
  3206. display: inline-block;
  3207. margin-left: 0.255em;
  3208. vertical-align: 0.255em;
  3209. content: "";
  3210. }
  3211. .dropstart .dropdown-toggle::after {
  3212. display: none;
  3213. }
  3214. .dropstart .dropdown-toggle::before {
  3215. display: inline-block;
  3216. margin-right: 0.255em;
  3217. vertical-align: 0.255em;
  3218. content: "";
  3219. border-top: 0.3em solid transparent;
  3220. border-right: 0.3em solid;
  3221. border-bottom: 0.3em solid transparent;
  3222. }
  3223. .dropstart .dropdown-toggle:empty::after {
  3224. margin-left: 0;
  3225. }
  3226. .dropstart .dropdown-toggle::before {
  3227. vertical-align: 0;
  3228. }
  3229. .dropdown-divider {
  3230. height: 0;
  3231. margin: var(--bs-dropdown-divider-margin-y) 0;
  3232. overflow: hidden;
  3233. border-top: 1px solid var(--bs-dropdown-divider-bg);
  3234. opacity: 1;
  3235. }
  3236. .dropdown-item {
  3237. display: block;
  3238. width: 100%;
  3239. padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  3240. clear: both;
  3241. font-weight: 400;
  3242. color: var(--bs-dropdown-link-color);
  3243. text-align: inherit;
  3244. text-decoration: none;
  3245. white-space: nowrap;
  3246. background-color: transparent;
  3247. border: 0;
  3248. }
  3249. .dropdown-item:hover, .dropdown-item:focus {
  3250. color: var(--bs-dropdown-link-hover-color);
  3251. background-color: var(--bs-dropdown-link-hover-bg);
  3252. }
  3253. .dropdown-item.active, .dropdown-item:active {
  3254. color: var(--bs-dropdown-link-active-color);
  3255. text-decoration: none;
  3256. background-color: var(--bs-dropdown-link-active-bg);
  3257. }
  3258. .dropdown-item.disabled, .dropdown-item:disabled {
  3259. color: var(--bs-dropdown-link-disabled-color);
  3260. pointer-events: none;
  3261. background-color: transparent;
  3262. }
  3263. .dropdown-menu.show {
  3264. display: block;
  3265. }
  3266. .dropdown-header {
  3267. display: block;
  3268. padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
  3269. margin-bottom: 0;
  3270. font-size: 0.875rem;
  3271. color: var(--bs-dropdown-header-color);
  3272. white-space: nowrap;
  3273. }
  3274. .dropdown-item-text {
  3275. display: block;
  3276. padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  3277. color: var(--bs-dropdown-link-color);
  3278. }
  3279. .dropdown-menu-dark {
  3280. --bs-dropdown-color: #dee2e6;
  3281. --bs-dropdown-bg: #343a40;
  3282. --bs-dropdown-border-color: var(--bs-border-color-translucent);
  3283. --bs-dropdown-box-shadow: ;
  3284. --bs-dropdown-link-color: #dee2e6;
  3285. --bs-dropdown-link-hover-color: #fff;
  3286. --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  3287. --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
  3288. --bs-dropdown-link-active-color: #fff;
  3289. --bs-dropdown-link-active-bg: #0d6efd;
  3290. --bs-dropdown-link-disabled-color: #adb5bd;
  3291. --bs-dropdown-header-color: #adb5bd;
  3292. }
  3293. .btn-group,
  3294. .btn-group-vertical {
  3295. position: relative;
  3296. display: inline-flex;
  3297. vertical-align: middle;
  3298. }
  3299. .btn-group > .btn,
  3300. .btn-group-vertical > .btn {
  3301. position: relative;
  3302. flex: 1 1 auto;
  3303. }
  3304. .btn-group > .btn-check:checked + .btn,
  3305. .btn-group > .btn-check:focus + .btn,
  3306. .btn-group > .btn:hover,
  3307. .btn-group > .btn:focus,
  3308. .btn-group > .btn:active,
  3309. .btn-group > .btn.active,
  3310. .btn-group-vertical > .btn-check:checked + .btn,
  3311. .btn-group-vertical > .btn-check:focus + .btn,
  3312. .btn-group-vertical > .btn:hover,
  3313. .btn-group-vertical > .btn:focus,
  3314. .btn-group-vertical > .btn:active,
  3315. .btn-group-vertical > .btn.active {
  3316. z-index: 1;
  3317. }
  3318. .btn-toolbar {
  3319. display: flex;
  3320. flex-wrap: wrap;
  3321. justify-content: flex-start;
  3322. }
  3323. .btn-toolbar .input-group {
  3324. width: auto;
  3325. }
  3326. .btn-group {
  3327. border-radius: 0.375rem;
  3328. }
  3329. .btn-group > :not(.btn-check:first-child) + .btn,
  3330. .btn-group > .btn-group:not(:first-child) {
  3331. margin-left: -1px;
  3332. }
  3333. .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
  3334. .btn-group > .btn.dropdown-toggle-split:first-child,
  3335. .btn-group > .btn-group:not(:last-child) > .btn {
  3336. border-top-right-radius: 0;
  3337. border-bottom-right-radius: 0;
  3338. }
  3339. .btn-group > .btn:nth-child(n+3),
  3340. .btn-group > :not(.btn-check) + .btn,
  3341. .btn-group > .btn-group:not(:first-child) > .btn {
  3342. border-top-left-radius: 0;
  3343. border-bottom-left-radius: 0;
  3344. }
  3345. .dropdown-toggle-split {
  3346. padding-right: 0.5625rem;
  3347. padding-left: 0.5625rem;
  3348. }
  3349. .dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
  3350. margin-left: 0;
  3351. }
  3352. .dropstart .dropdown-toggle-split::before {
  3353. margin-right: 0;
  3354. }
  3355. .btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  3356. padding-right: 0.375rem;
  3357. padding-left: 0.375rem;
  3358. }
  3359. .btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  3360. padding-right: 0.75rem;
  3361. padding-left: 0.75rem;
  3362. }
  3363. .btn-group-vertical {
  3364. flex-direction: column;
  3365. align-items: flex-start;
  3366. justify-content: center;
  3367. }
  3368. .btn-group-vertical > .btn,
  3369. .btn-group-vertical > .btn-group {
  3370. width: 100%;
  3371. }
  3372. .btn-group-vertical > .btn:not(:first-child),
  3373. .btn-group-vertical > .btn-group:not(:first-child) {
  3374. margin-top: -1px;
  3375. }
  3376. .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
  3377. .btn-group-vertical > .btn-group:not(:last-child) > .btn {
  3378. border-bottom-right-radius: 0;
  3379. border-bottom-left-radius: 0;
  3380. }
  3381. .btn-group-vertical > .btn ~ .btn,
  3382. .btn-group-vertical > .btn-group:not(:first-child) > .btn {
  3383. border-top-left-radius: 0;
  3384. border-top-right-radius: 0;
  3385. }
  3386. .nav {
  3387. --bs-nav-link-padding-x: 1rem;
  3388. --bs-nav-link-padding-y: 0.5rem;
  3389. --bs-nav-link-font-weight: ;
  3390. --bs-nav-link-color: var(--bs-link-color);
  3391. --bs-nav-link-hover-color: var(--bs-link-hover-color);
  3392. --bs-nav-link-disabled-color: #6c757d;
  3393. display: flex;
  3394. flex-wrap: wrap;
  3395. padding-left: 0;
  3396. margin-bottom: 0;
  3397. list-style: none;
  3398. }
  3399. .nav-link {
  3400. display: block;
  3401. padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  3402. font-size: var(--bs-nav-link-font-size);
  3403. font-weight: var(--bs-nav-link-font-weight);
  3404. color: var(--bs-nav-link-color);
  3405. text-decoration: none;
  3406. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  3407. }
  3408. @media (prefers-reduced-motion: reduce) {
  3409. .nav-link {
  3410. transition: none;
  3411. }
  3412. }
  3413. .nav-link:hover, .nav-link:focus {
  3414. color: var(--bs-nav-link-hover-color);
  3415. }
  3416. .nav-link.disabled {
  3417. color: var(--bs-nav-link-disabled-color);
  3418. pointer-events: none;
  3419. cursor: default;
  3420. }
  3421. .nav-tabs {
  3422. --bs-nav-tabs-border-width: 1px;
  3423. --bs-nav-tabs-border-color: #dee2e6;
  3424. --bs-nav-tabs-border-radius: 0.375rem;
  3425. --bs-nav-tabs-link-hover-border-color: #e9ecef #e9ecef #dee2e6;
  3426. --bs-nav-tabs-link-active-color: #495057;
  3427. --bs-nav-tabs-link-active-bg: #fff;
  3428. --bs-nav-tabs-link-active-border-color: #dee2e6 #dee2e6 #fff;
  3429. border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
  3430. }
  3431. .nav-tabs .nav-link {
  3432. margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
  3433. background: none;
  3434. border: var(--bs-nav-tabs-border-width) solid transparent;
  3435. border-top-left-radius: var(--bs-nav-tabs-border-radius);
  3436. border-top-right-radius: var(--bs-nav-tabs-border-radius);
  3437. }
  3438. .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  3439. isolation: isolate;
  3440. border-color: var(--bs-nav-tabs-link-hover-border-color);
  3441. }
  3442. .nav-tabs .nav-link.disabled, .nav-tabs .nav-link:disabled {
  3443. color: var(--bs-nav-link-disabled-color);
  3444. background-color: transparent;
  3445. border-color: transparent;
  3446. }
  3447. .nav-tabs .nav-link.active,
  3448. .nav-tabs .nav-item.show .nav-link {
  3449. color: var(--bs-nav-tabs-link-active-color);
  3450. background-color: var(--bs-nav-tabs-link-active-bg);
  3451. border-color: var(--bs-nav-tabs-link-active-border-color);
  3452. }
  3453. .nav-tabs .dropdown-menu {
  3454. margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
  3455. border-top-left-radius: 0;
  3456. border-top-right-radius: 0;
  3457. }
  3458. .nav-pills {
  3459. --bs-nav-pills-border-radius: 0.375rem;
  3460. --bs-nav-pills-link-active-color: #fff;
  3461. --bs-nav-pills-link-active-bg: #0d6efd;
  3462. }
  3463. .nav-pills .nav-link {
  3464. background: none;
  3465. border: 0;
  3466. border-radius: var(--bs-nav-pills-border-radius);
  3467. }
  3468. .nav-pills .nav-link:disabled {
  3469. color: var(--bs-nav-link-disabled-color);
  3470. background-color: transparent;
  3471. border-color: transparent;
  3472. }
  3473. .nav-pills .nav-link.active,
  3474. .nav-pills .show > .nav-link {
  3475. color: var(--bs-nav-pills-link-active-color);
  3476. background-color: var(--bs-nav-pills-link-active-bg);
  3477. }
  3478. .nav-fill > .nav-link,
  3479. .nav-fill .nav-item {
  3480. flex: 1 1 auto;
  3481. text-align: center;
  3482. }
  3483. .nav-justified > .nav-link,
  3484. .nav-justified .nav-item {
  3485. flex-basis: 0;
  3486. flex-grow: 1;
  3487. text-align: center;
  3488. }
  3489. .nav-fill .nav-item .nav-link,
  3490. .nav-justified .nav-item .nav-link {
  3491. width: 100%;
  3492. }
  3493. .tab-content > .tab-pane {
  3494. display: none;
  3495. }
  3496. .tab-content > .active {
  3497. display: block;
  3498. }
  3499. .navbar {
  3500. --bs-navbar-padding-x: 0;
  3501. --bs-navbar-padding-y: 0.5rem;
  3502. --bs-navbar-color: rgba(0, 0, 0, 0.55);
  3503. --bs-navbar-hover-color: rgba(0, 0, 0, 0.7);
  3504. --bs-navbar-disabled-color: rgba(0, 0, 0, 0.3);
  3505. --bs-navbar-active-color: rgba(0, 0, 0, 0.9);
  3506. --bs-navbar-brand-padding-y: 0.3125rem;
  3507. --bs-navbar-brand-margin-end: 1rem;
  3508. --bs-navbar-brand-font-size: 1.25rem;
  3509. --bs-navbar-brand-color: rgba(0, 0, 0, 0.9);
  3510. --bs-navbar-brand-hover-color: rgba(0, 0, 0, 0.9);
  3511. --bs-navbar-nav-link-padding-x: 0.5rem;
  3512. --bs-navbar-toggler-padding-y: 0.25rem;
  3513. --bs-navbar-toggler-padding-x: 0.75rem;
  3514. --bs-navbar-toggler-font-size: 1.25rem;
  3515. --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  3516. --bs-navbar-toggler-border-color: rgba(0, 0, 0, 0.1);
  3517. --bs-navbar-toggler-border-radius: 0.375rem;
  3518. --bs-navbar-toggler-focus-width: 0.25rem;
  3519. --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
  3520. position: relative;
  3521. display: flex;
  3522. flex-wrap: wrap;
  3523. align-items: center;
  3524. justify-content: space-between;
  3525. padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
  3526. }
  3527. .navbar > .container,
  3528. .navbar > .container-fluid,
  3529. .navbar > .container-sm,
  3530. .navbar > .container-md,
  3531. .navbar > .container-lg,
  3532. .navbar > .container-xl,
  3533. .navbar > .container-xxl {
  3534. display: flex;
  3535. flex-wrap: inherit;
  3536. align-items: center;
  3537. justify-content: space-between;
  3538. }
  3539. .navbar-brand {
  3540. padding-top: var(--bs-navbar-brand-padding-y);
  3541. padding-bottom: var(--bs-navbar-brand-padding-y);
  3542. margin-right: var(--bs-navbar-brand-margin-end);
  3543. font-size: var(--bs-navbar-brand-font-size);
  3544. color: var(--bs-navbar-brand-color);
  3545. text-decoration: none;
  3546. white-space: nowrap;
  3547. }
  3548. .navbar-brand:hover, .navbar-brand:focus {
  3549. color: var(--bs-navbar-brand-hover-color);
  3550. }
  3551. .navbar-nav {
  3552. --bs-nav-link-padding-x: 0;
  3553. --bs-nav-link-padding-y: 0.5rem;
  3554. --bs-nav-link-font-weight: ;
  3555. --bs-nav-link-color: var(--bs-navbar-color);
  3556. --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  3557. --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  3558. display: flex;
  3559. flex-direction: column;
  3560. padding-left: 0;
  3561. margin-bottom: 0;
  3562. list-style: none;
  3563. }
  3564. .navbar-nav .show > .nav-link,
  3565. .navbar-nav .nav-link.active {
  3566. color: var(--bs-navbar-active-color);
  3567. }
  3568. .navbar-nav .dropdown-menu {
  3569. position: static;
  3570. }
  3571. .navbar-text {
  3572. padding-top: 0.5rem;
  3573. padding-bottom: 0.5rem;
  3574. color: var(--bs-navbar-color);
  3575. }
  3576. .navbar-text a,
  3577. .navbar-text a:hover,
  3578. .navbar-text a:focus {
  3579. color: var(--bs-navbar-active-color);
  3580. }
  3581. .navbar-collapse {
  3582. flex-basis: 100%;
  3583. flex-grow: 1;
  3584. align-items: center;
  3585. }
  3586. .navbar-toggler {
  3587. padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  3588. font-size: var(--bs-navbar-toggler-font-size);
  3589. line-height: 1;
  3590. color: var(--bs-navbar-color);
  3591. background-color: transparent;
  3592. border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  3593. border-radius: var(--bs-navbar-toggler-border-radius);
  3594. transition: var(--bs-navbar-toggler-transition);
  3595. }
  3596. @media (prefers-reduced-motion: reduce) {
  3597. .navbar-toggler {
  3598. transition: none;
  3599. }
  3600. }
  3601. .navbar-toggler:hover {
  3602. text-decoration: none;
  3603. }
  3604. .navbar-toggler:focus {
  3605. text-decoration: none;
  3606. outline: 0;
  3607. box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
  3608. }
  3609. .navbar-toggler-icon {
  3610. display: inline-block;
  3611. width: 1.5em;
  3612. height: 1.5em;
  3613. vertical-align: middle;
  3614. background-image: var(--bs-navbar-toggler-icon-bg);
  3615. background-repeat: no-repeat;
  3616. background-position: center;
  3617. background-size: 100%;
  3618. }
  3619. .navbar-nav-scroll {
  3620. max-height: var(--bs-scroll-height, 75vh);
  3621. overflow-y: auto;
  3622. }
  3623. @media (min-width: 576px) {
  3624. .navbar-expand-sm {
  3625. flex-wrap: nowrap;
  3626. justify-content: flex-start;
  3627. }
  3628. .navbar-expand-sm .navbar-nav {
  3629. flex-direction: row;
  3630. }
  3631. .navbar-expand-sm .navbar-nav .dropdown-menu {
  3632. position: absolute;
  3633. }
  3634. .navbar-expand-sm .navbar-nav .nav-link {
  3635. padding-right: var(--bs-navbar-nav-link-padding-x);
  3636. padding-left: var(--bs-navbar-nav-link-padding-x);
  3637. }
  3638. .navbar-expand-sm .navbar-nav-scroll {
  3639. overflow: visible;
  3640. }
  3641. .navbar-expand-sm .navbar-collapse {
  3642. display: flex !important;
  3643. flex-basis: auto;
  3644. }
  3645. .navbar-expand-sm .navbar-toggler {
  3646. display: none;
  3647. }
  3648. .navbar-expand-sm .offcanvas {
  3649. position: static;
  3650. z-index: auto;
  3651. flex-grow: 1;
  3652. width: auto !important;
  3653. height: auto !important;
  3654. visibility: visible !important;
  3655. background-color: transparent !important;
  3656. border: 0 !important;
  3657. transform: none !important;
  3658. transition: none;
  3659. }
  3660. .navbar-expand-sm .offcanvas .offcanvas-header {
  3661. display: none;
  3662. }
  3663. .navbar-expand-sm .offcanvas .offcanvas-body {
  3664. display: flex;
  3665. flex-grow: 0;
  3666. padding: 0;
  3667. overflow-y: visible;
  3668. }
  3669. }
  3670. @media (min-width: 768px) {
  3671. .navbar-expand-md {
  3672. flex-wrap: nowrap;
  3673. justify-content: flex-start;
  3674. }
  3675. .navbar-expand-md .navbar-nav {
  3676. flex-direction: row;
  3677. }
  3678. .navbar-expand-md .navbar-nav .dropdown-menu {
  3679. position: absolute;
  3680. }
  3681. .navbar-expand-md .navbar-nav .nav-link {
  3682. padding-right: var(--bs-navbar-nav-link-padding-x);
  3683. padding-left: var(--bs-navbar-nav-link-padding-x);
  3684. }
  3685. .navbar-expand-md .navbar-nav-scroll {
  3686. overflow: visible;
  3687. }
  3688. .navbar-expand-md .navbar-collapse {
  3689. display: flex !important;
  3690. flex-basis: auto;
  3691. }
  3692. .navbar-expand-md .navbar-toggler {
  3693. display: none;
  3694. }
  3695. .navbar-expand-md .offcanvas {
  3696. position: static;
  3697. z-index: auto;
  3698. flex-grow: 1;
  3699. width: auto !important;
  3700. height: auto !important;
  3701. visibility: visible !important;
  3702. background-color: transparent !important;
  3703. border: 0 !important;
  3704. transform: none !important;
  3705. transition: none;
  3706. }
  3707. .navbar-expand-md .offcanvas .offcanvas-header {
  3708. display: none;
  3709. }
  3710. .navbar-expand-md .offcanvas .offcanvas-body {
  3711. display: flex;
  3712. flex-grow: 0;
  3713. padding: 0;
  3714. overflow-y: visible;
  3715. }
  3716. }
  3717. @media (min-width: 992px) {
  3718. .navbar-expand-lg {
  3719. flex-wrap: nowrap;
  3720. justify-content: flex-start;
  3721. }
  3722. .navbar-expand-lg .navbar-nav {
  3723. flex-direction: row;
  3724. }
  3725. .navbar-expand-lg .navbar-nav .dropdown-menu {
  3726. position: absolute;
  3727. }
  3728. .navbar-expand-lg .navbar-nav .nav-link {
  3729. padding-right: var(--bs-navbar-nav-link-padding-x);
  3730. padding-left: var(--bs-navbar-nav-link-padding-x);
  3731. }
  3732. .navbar-expand-lg .navbar-nav-scroll {
  3733. overflow: visible;
  3734. }
  3735. .navbar-expand-lg .navbar-collapse {
  3736. display: flex !important;
  3737. flex-basis: auto;
  3738. }
  3739. .navbar-expand-lg .navbar-toggler {
  3740. display: none;
  3741. }
  3742. .navbar-expand-lg .offcanvas {
  3743. position: static;
  3744. z-index: auto;
  3745. flex-grow: 1;
  3746. width: auto !important;
  3747. height: auto !important;
  3748. visibility: visible !important;
  3749. background-color: transparent !important;
  3750. border: 0 !important;
  3751. transform: none !important;
  3752. transition: none;
  3753. }
  3754. .navbar-expand-lg .offcanvas .offcanvas-header {
  3755. display: none;
  3756. }
  3757. .navbar-expand-lg .offcanvas .offcanvas-body {
  3758. display: flex;
  3759. flex-grow: 0;
  3760. padding: 0;
  3761. overflow-y: visible;
  3762. }
  3763. }
  3764. @media (min-width: 1200px) {
  3765. .navbar-expand-xl {
  3766. flex-wrap: nowrap;
  3767. justify-content: flex-start;
  3768. }
  3769. .navbar-expand-xl .navbar-nav {
  3770. flex-direction: row;
  3771. }
  3772. .navbar-expand-xl .navbar-nav .dropdown-menu {
  3773. position: absolute;
  3774. }
  3775. .navbar-expand-xl .navbar-nav .nav-link {
  3776. padding-right: var(--bs-navbar-nav-link-padding-x);
  3777. padding-left: var(--bs-navbar-nav-link-padding-x);
  3778. }
  3779. .navbar-expand-xl .navbar-nav-scroll {
  3780. overflow: visible;
  3781. }
  3782. .navbar-expand-xl .navbar-collapse {
  3783. display: flex !important;
  3784. flex-basis: auto;
  3785. }
  3786. .navbar-expand-xl .navbar-toggler {
  3787. display: none;
  3788. }
  3789. .navbar-expand-xl .offcanvas {
  3790. position: static;
  3791. z-index: auto;
  3792. flex-grow: 1;
  3793. width: auto !important;
  3794. height: auto !important;
  3795. visibility: visible !important;
  3796. background-color: transparent !important;
  3797. border: 0 !important;
  3798. transform: none !important;
  3799. transition: none;
  3800. }
  3801. .navbar-expand-xl .offcanvas .offcanvas-header {
  3802. display: none;
  3803. }
  3804. .navbar-expand-xl .offcanvas .offcanvas-body {
  3805. display: flex;
  3806. flex-grow: 0;
  3807. padding: 0;
  3808. overflow-y: visible;
  3809. }
  3810. }
  3811. @media (min-width: 1400px) {
  3812. .navbar-expand-xxl {
  3813. flex-wrap: nowrap;
  3814. justify-content: flex-start;
  3815. }
  3816. .navbar-expand-xxl .navbar-nav {
  3817. flex-direction: row;
  3818. }
  3819. .navbar-expand-xxl .navbar-nav .dropdown-menu {
  3820. position: absolute;
  3821. }
  3822. .navbar-expand-xxl .navbar-nav .nav-link {
  3823. padding-right: var(--bs-navbar-nav-link-padding-x);
  3824. padding-left: var(--bs-navbar-nav-link-padding-x);
  3825. }
  3826. .navbar-expand-xxl .navbar-nav-scroll {
  3827. overflow: visible;
  3828. }
  3829. .navbar-expand-xxl .navbar-collapse {
  3830. display: flex !important;
  3831. flex-basis: auto;
  3832. }
  3833. .navbar-expand-xxl .navbar-toggler {
  3834. display: none;
  3835. }
  3836. .navbar-expand-xxl .offcanvas {
  3837. position: static;
  3838. z-index: auto;
  3839. flex-grow: 1;
  3840. width: auto !important;
  3841. height: auto !important;
  3842. visibility: visible !important;
  3843. background-color: transparent !important;
  3844. border: 0 !important;
  3845. transform: none !important;
  3846. transition: none;
  3847. }
  3848. .navbar-expand-xxl .offcanvas .offcanvas-header {
  3849. display: none;
  3850. }
  3851. .navbar-expand-xxl .offcanvas .offcanvas-body {
  3852. display: flex;
  3853. flex-grow: 0;
  3854. padding: 0;
  3855. overflow-y: visible;
  3856. }
  3857. }
  3858. .navbar-expand {
  3859. flex-wrap: nowrap;
  3860. justify-content: flex-start;
  3861. }
  3862. .navbar-expand .navbar-nav {
  3863. flex-direction: row;
  3864. }
  3865. .navbar-expand .navbar-nav .dropdown-menu {
  3866. position: absolute;
  3867. }
  3868. .navbar-expand .navbar-nav .nav-link {
  3869. padding-right: var(--bs-navbar-nav-link-padding-x);
  3870. padding-left: var(--bs-navbar-nav-link-padding-x);
  3871. }
  3872. .navbar-expand .navbar-nav-scroll {
  3873. overflow: visible;
  3874. }
  3875. .navbar-expand .navbar-collapse {
  3876. display: flex !important;
  3877. flex-basis: auto;
  3878. }
  3879. .navbar-expand .navbar-toggler {
  3880. display: none;
  3881. }
  3882. .navbar-expand .offcanvas {
  3883. position: static;
  3884. z-index: auto;
  3885. flex-grow: 1;
  3886. width: auto !important;
  3887. height: auto !important;
  3888. visibility: visible !important;
  3889. background-color: transparent !important;
  3890. border: 0 !important;
  3891. transform: none !important;
  3892. transition: none;
  3893. }
  3894. .navbar-expand .offcanvas .offcanvas-header {
  3895. display: none;
  3896. }
  3897. .navbar-expand .offcanvas .offcanvas-body {
  3898. display: flex;
  3899. flex-grow: 0;
  3900. padding: 0;
  3901. overflow-y: visible;
  3902. }
  3903. .navbar-dark {
  3904. --bs-navbar-color: rgba(255, 255, 255, 0.55);
  3905. --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
  3906. --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
  3907. --bs-navbar-active-color: #fff;
  3908. --bs-navbar-brand-color: #fff;
  3909. --bs-navbar-brand-hover-color: #fff;
  3910. --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
  3911. --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  3912. }
  3913. .card {
  3914. --bs-card-spacer-y: 1rem;
  3915. --bs-card-spacer-x: 1rem;
  3916. --bs-card-title-spacer-y: 0.5rem;
  3917. --bs-card-border-width: 1px;
  3918. --bs-card-border-color: var(--bs-border-color-translucent);
  3919. --bs-card-border-radius: 0.375rem;
  3920. --bs-card-box-shadow: ;
  3921. --bs-card-inner-border-radius: calc(0.375rem - 1px);
  3922. --bs-card-cap-padding-y: 0.5rem;
  3923. --bs-card-cap-padding-x: 1rem;
  3924. --bs-card-cap-bg: rgba(0, 0, 0, 0.03);
  3925. --bs-card-cap-color: ;
  3926. --bs-card-height: ;
  3927. --bs-card-color: ;
  3928. --bs-card-bg: #fff;
  3929. --bs-card-img-overlay-padding: 1rem;
  3930. --bs-card-group-margin: 0.75rem;
  3931. position: relative;
  3932. display: flex;
  3933. flex-direction: column;
  3934. min-width: 0;
  3935. height: var(--bs-card-height);
  3936. word-wrap: break-word;
  3937. background-color: var(--bs-card-bg);
  3938. background-clip: border-box;
  3939. border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  3940. border-radius: var(--bs-card-border-radius);
  3941. }
  3942. .card > hr {
  3943. margin-right: 0;
  3944. margin-left: 0;
  3945. }
  3946. .card > .list-group {
  3947. border-top: inherit;
  3948. border-bottom: inherit;
  3949. }
  3950. .card > .list-group:first-child {
  3951. border-top-width: 0;
  3952. border-top-left-radius: var(--bs-card-inner-border-radius);
  3953. border-top-right-radius: var(--bs-card-inner-border-radius);
  3954. }
  3955. .card > .list-group:last-child {
  3956. border-bottom-width: 0;
  3957. border-bottom-right-radius: var(--bs-card-inner-border-radius);
  3958. border-bottom-left-radius: var(--bs-card-inner-border-radius);
  3959. }
  3960. .card > .card-header + .list-group,
  3961. .card > .list-group + .card-footer {
  3962. border-top: 0;
  3963. }
  3964. .card-body {
  3965. flex: 1 1 auto;
  3966. padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  3967. color: var(--bs-card-color);
  3968. }
  3969. .card-title {
  3970. margin-bottom: var(--bs-card-title-spacer-y);
  3971. }
  3972. .card-subtitle {
  3973. margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
  3974. margin-bottom: 0;
  3975. }
  3976. .card-text:last-child {
  3977. margin-bottom: 0;
  3978. }
  3979. .card-link + .card-link {
  3980. margin-left: var(--bs-card-spacer-x);
  3981. }
  3982. .card-header {
  3983. padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  3984. margin-bottom: 0;
  3985. color: var(--bs-card-cap-color);
  3986. background-color: var(--bs-card-cap-bg);
  3987. border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
  3988. }
  3989. .card-header:first-child {
  3990. border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
  3991. }
  3992. .card-footer {
  3993. padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  3994. color: var(--bs-card-cap-color);
  3995. background-color: var(--bs-card-cap-bg);
  3996. border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
  3997. }
  3998. .card-footer:last-child {
  3999. border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
  4000. }
  4001. .card-header-tabs {
  4002. margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  4003. margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
  4004. margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
  4005. border-bottom: 0;
  4006. }
  4007. .card-header-tabs .nav-link.active {
  4008. background-color: var(--bs-card-bg);
  4009. border-bottom-color: var(--bs-card-bg);
  4010. }
  4011. .card-header-pills {
  4012. margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  4013. margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
  4014. }
  4015. .card-img-overlay {
  4016. position: absolute;
  4017. top: 0;
  4018. right: 0;
  4019. bottom: 0;
  4020. left: 0;
  4021. padding: var(--bs-card-img-overlay-padding);
  4022. border-radius: var(--bs-card-inner-border-radius);
  4023. }
  4024. .card-img,
  4025. .card-img-top,
  4026. .card-img-bottom {
  4027. width: 100%;
  4028. }
  4029. .card-img,
  4030. .card-img-top {
  4031. border-top-left-radius: var(--bs-card-inner-border-radius);
  4032. border-top-right-radius: var(--bs-card-inner-border-radius);
  4033. }
  4034. .card-img,
  4035. .card-img-bottom {
  4036. border-bottom-right-radius: var(--bs-card-inner-border-radius);
  4037. border-bottom-left-radius: var(--bs-card-inner-border-radius);
  4038. }
  4039. .card-group > .card {
  4040. margin-bottom: var(--bs-card-group-margin);
  4041. }
  4042. @media (min-width: 576px) {
  4043. .card-group {
  4044. display: flex;
  4045. flex-flow: row wrap;
  4046. }
  4047. .card-group > .card {
  4048. flex: 1 0 0%;
  4049. margin-bottom: 0;
  4050. }
  4051. .card-group > .card + .card {
  4052. margin-left: 0;
  4053. border-left: 0;
  4054. }
  4055. .card-group > .card:not(:last-child) {
  4056. border-top-right-radius: 0;
  4057. border-bottom-right-radius: 0;
  4058. }
  4059. .card-group > .card:not(:last-child) .card-img-top,
  4060. .card-group > .card:not(:last-child) .card-header {
  4061. border-top-right-radius: 0;
  4062. }
  4063. .card-group > .card:not(:last-child) .card-img-bottom,
  4064. .card-group > .card:not(:last-child) .card-footer {
  4065. border-bottom-right-radius: 0;
  4066. }
  4067. .card-group > .card:not(:first-child) {
  4068. border-top-left-radius: 0;
  4069. border-bottom-left-radius: 0;
  4070. }
  4071. .card-group > .card:not(:first-child) .card-img-top,
  4072. .card-group > .card:not(:first-child) .card-header {
  4073. border-top-left-radius: 0;
  4074. }
  4075. .card-group > .card:not(:first-child) .card-img-bottom,
  4076. .card-group > .card:not(:first-child) .card-footer {
  4077. border-bottom-left-radius: 0;
  4078. }
  4079. }
  4080. .accordion {
  4081. --bs-accordion-color: #212529;
  4082. --bs-accordion-bg: #fff;
  4083. --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  4084. --bs-accordion-border-color: var(--bs-border-color);
  4085. --bs-accordion-border-width: 1px;
  4086. --bs-accordion-border-radius: 0.375rem;
  4087. --bs-accordion-inner-border-radius: calc(0.375rem - 1px);
  4088. --bs-accordion-btn-padding-x: 1.25rem;
  4089. --bs-accordion-btn-padding-y: 1rem;
  4090. --bs-accordion-btn-color: #212529;
  4091. --bs-accordion-btn-bg: var(--bs-accordion-bg);
  4092. --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  4093. --bs-accordion-btn-icon-width: 1.25rem;
  4094. --bs-accordion-btn-icon-transform: rotate(-180deg);
  4095. --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  4096. --bs-accordion-btn-active-icon: 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");
  4097. --bs-accordion-btn-focus-border-color: #86b7fe;
  4098. --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  4099. --bs-accordion-body-padding-x: 1.25rem;
  4100. --bs-accordion-body-padding-y: 1rem;
  4101. --bs-accordion-active-color: #0c63e4;
  4102. --bs-accordion-active-bg: #e7f1ff;
  4103. }
  4104. .accordion-button {
  4105. position: relative;
  4106. display: flex;
  4107. align-items: center;
  4108. width: 100%;
  4109. padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  4110. font-size: 1rem;
  4111. color: var(--bs-accordion-btn-color);
  4112. text-align: left;
  4113. background-color: var(--bs-accordion-btn-bg);
  4114. border: 0;
  4115. border-radius: 0;
  4116. overflow-anchor: none;
  4117. transition: var(--bs-accordion-transition);
  4118. }
  4119. @media (prefers-reduced-motion: reduce) {
  4120. .accordion-button {
  4121. transition: none;
  4122. }
  4123. }
  4124. .accordion-button:not(.collapsed) {
  4125. color: var(--bs-accordion-active-color);
  4126. background-color: var(--bs-accordion-active-bg);
  4127. box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
  4128. }
  4129. .accordion-button:not(.collapsed)::after {
  4130. background-image: var(--bs-accordion-btn-active-icon);
  4131. transform: var(--bs-accordion-btn-icon-transform);
  4132. }
  4133. .accordion-button::after {
  4134. flex-shrink: 0;
  4135. width: var(--bs-accordion-btn-icon-width);
  4136. height: var(--bs-accordion-btn-icon-width);
  4137. margin-left: auto;
  4138. content: "";
  4139. background-image: var(--bs-accordion-btn-icon);
  4140. background-repeat: no-repeat;
  4141. background-size: var(--bs-accordion-btn-icon-width);
  4142. transition: var(--bs-accordion-btn-icon-transition);
  4143. }
  4144. @media (prefers-reduced-motion: reduce) {
  4145. .accordion-button::after {
  4146. transition: none;
  4147. }
  4148. }
  4149. .accordion-button:hover {
  4150. z-index: 2;
  4151. }
  4152. .accordion-button:focus {
  4153. z-index: 3;
  4154. border-color: var(--bs-accordion-btn-focus-border-color);
  4155. outline: 0;
  4156. box-shadow: var(--bs-accordion-btn-focus-box-shadow);
  4157. }
  4158. .accordion-header {
  4159. margin-bottom: 0;
  4160. }
  4161. .accordion-item {
  4162. color: var(--bs-accordion-color);
  4163. background-color: var(--bs-accordion-bg);
  4164. border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
  4165. }
  4166. .accordion-item:first-of-type {
  4167. border-top-left-radius: var(--bs-accordion-border-radius);
  4168. border-top-right-radius: var(--bs-accordion-border-radius);
  4169. }
  4170. .accordion-item:first-of-type .accordion-button {
  4171. border-top-left-radius: var(--bs-accordion-inner-border-radius);
  4172. border-top-right-radius: var(--bs-accordion-inner-border-radius);
  4173. }
  4174. .accordion-item:not(:first-of-type) {
  4175. border-top: 0;
  4176. }
  4177. .accordion-item:last-of-type {
  4178. border-bottom-right-radius: var(--bs-accordion-border-radius);
  4179. border-bottom-left-radius: var(--bs-accordion-border-radius);
  4180. }
  4181. .accordion-item:last-of-type .accordion-button.collapsed {
  4182. border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
  4183. border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
  4184. }
  4185. .accordion-item:last-of-type .accordion-collapse {
  4186. border-bottom-right-radius: var(--bs-accordion-border-radius);
  4187. border-bottom-left-radius: var(--bs-accordion-border-radius);
  4188. }
  4189. .accordion-body {
  4190. padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
  4191. }
  4192. .accordion-flush .accordion-collapse {
  4193. border-width: 0;
  4194. }
  4195. .accordion-flush .accordion-item {
  4196. border-right: 0;
  4197. border-left: 0;
  4198. border-radius: 0;
  4199. }
  4200. .accordion-flush .accordion-item:first-child {
  4201. border-top: 0;
  4202. }
  4203. .accordion-flush .accordion-item:last-child {
  4204. border-bottom: 0;
  4205. }
  4206. .accordion-flush .accordion-item .accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {
  4207. border-radius: 0;
  4208. }
  4209. .breadcrumb {
  4210. --bs-breadcrumb-padding-x: 0;
  4211. --bs-breadcrumb-padding-y: 0;
  4212. --bs-breadcrumb-margin-bottom: 1rem;
  4213. --bs-breadcrumb-bg: ;
  4214. --bs-breadcrumb-border-radius: ;
  4215. --bs-breadcrumb-divider-color: #6c757d;
  4216. --bs-breadcrumb-item-padding-x: 0.5rem;
  4217. --bs-breadcrumb-item-active-color: #6c757d;
  4218. display: flex;
  4219. flex-wrap: wrap;
  4220. padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
  4221. margin-bottom: var(--bs-breadcrumb-margin-bottom);
  4222. font-size: var(--bs-breadcrumb-font-size);
  4223. list-style: none;
  4224. background-color: var(--bs-breadcrumb-bg);
  4225. border-radius: var(--bs-breadcrumb-border-radius);
  4226. }
  4227. .breadcrumb-item + .breadcrumb-item {
  4228. padding-left: var(--bs-breadcrumb-item-padding-x);
  4229. }
  4230. .breadcrumb-item + .breadcrumb-item::before {
  4231. float: left;
  4232. padding-right: var(--bs-breadcrumb-item-padding-x);
  4233. color: var(--bs-breadcrumb-divider-color);
  4234. content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
  4235. }
  4236. .breadcrumb-item.active {
  4237. color: var(--bs-breadcrumb-item-active-color);
  4238. }
  4239. .pagination, .datatable-pagination ul {
  4240. --bs-pagination-padding-x: 0.75rem;
  4241. --bs-pagination-padding-y: 0.375rem;
  4242. --bs-pagination-font-size: 1rem;
  4243. --bs-pagination-color: var(--bs-link-color);
  4244. --bs-pagination-bg: #fff;
  4245. --bs-pagination-border-width: 1px;
  4246. --bs-pagination-border-color: #dee2e6;
  4247. --bs-pagination-border-radius: 0.375rem;
  4248. --bs-pagination-hover-color: var(--bs-link-hover-color);
  4249. --bs-pagination-hover-bg: #e9ecef;
  4250. --bs-pagination-hover-border-color: #dee2e6;
  4251. --bs-pagination-focus-color: var(--bs-link-hover-color);
  4252. --bs-pagination-focus-bg: #e9ecef;
  4253. --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  4254. --bs-pagination-active-color: #fff;
  4255. --bs-pagination-active-bg: #0d6efd;
  4256. --bs-pagination-active-border-color: #0d6efd;
  4257. --bs-pagination-disabled-color: #6c757d;
  4258. --bs-pagination-disabled-bg: #fff;
  4259. --bs-pagination-disabled-border-color: #dee2e6;
  4260. display: flex;
  4261. padding-left: 0;
  4262. list-style: none;
  4263. }
  4264. .page-link, .datatable-pagination a {
  4265. position: relative;
  4266. display: block;
  4267. padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  4268. font-size: var(--bs-pagination-font-size);
  4269. color: var(--bs-pagination-color);
  4270. text-decoration: none;
  4271. background-color: var(--bs-pagination-bg);
  4272. border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
  4273. 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;
  4274. }
  4275. @media (prefers-reduced-motion: reduce) {
  4276. .page-link, .datatable-pagination a {
  4277. transition: none;
  4278. }
  4279. }
  4280. .page-link:hover, .datatable-pagination a:hover {
  4281. z-index: 2;
  4282. color: var(--bs-pagination-hover-color);
  4283. background-color: var(--bs-pagination-hover-bg);
  4284. border-color: var(--bs-pagination-hover-border-color);
  4285. }
  4286. .page-link:focus, .datatable-pagination a:focus {
  4287. z-index: 3;
  4288. color: var(--bs-pagination-focus-color);
  4289. background-color: var(--bs-pagination-focus-bg);
  4290. outline: 0;
  4291. box-shadow: var(--bs-pagination-focus-box-shadow);
  4292. }
  4293. .page-link.active, .datatable-pagination a.active, .active > .page-link, .datatable-pagination .active > a {
  4294. z-index: 3;
  4295. color: var(--bs-pagination-active-color);
  4296. background-color: var(--bs-pagination-active-bg);
  4297. border-color: var(--bs-pagination-active-border-color);
  4298. }
  4299. .page-link.disabled, .datatable-pagination a.disabled, .disabled > .page-link, .datatable-pagination .disabled > a {
  4300. color: var(--bs-pagination-disabled-color);
  4301. pointer-events: none;
  4302. background-color: var(--bs-pagination-disabled-bg);
  4303. border-color: var(--bs-pagination-disabled-border-color);
  4304. }
  4305. .page-item:not(:first-child) .page-link, .page-item:not(:first-child) .datatable-pagination a, .datatable-pagination .page-item:not(:first-child) a, .datatable-pagination li:not(:first-child) .page-link, .datatable-pagination li:not(:first-child) a {
  4306. margin-left: -1px;
  4307. }
  4308. .page-item:first-child .page-link, .page-item:first-child .datatable-pagination a, .datatable-pagination .page-item:first-child a, .datatable-pagination li:first-child .page-link, .datatable-pagination li:first-child a {
  4309. border-top-left-radius: var(--bs-pagination-border-radius);
  4310. border-bottom-left-radius: var(--bs-pagination-border-radius);
  4311. }
  4312. .page-item:last-child .page-link, .page-item:last-child .datatable-pagination a, .datatable-pagination .page-item:last-child a, .datatable-pagination li:last-child .page-link, .datatable-pagination li:last-child a {
  4313. border-top-right-radius: var(--bs-pagination-border-radius);
  4314. border-bottom-right-radius: var(--bs-pagination-border-radius);
  4315. }
  4316. .pagination-lg {
  4317. --bs-pagination-padding-x: 1.5rem;
  4318. --bs-pagination-padding-y: 0.75rem;
  4319. --bs-pagination-font-size: 1.25rem;
  4320. --bs-pagination-border-radius: 0.5rem;
  4321. }
  4322. .pagination-sm {
  4323. --bs-pagination-padding-x: 0.5rem;
  4324. --bs-pagination-padding-y: 0.25rem;
  4325. --bs-pagination-font-size: 0.875rem;
  4326. --bs-pagination-border-radius: 0.25rem;
  4327. }
  4328. .badge {
  4329. --bs-badge-padding-x: 0.65em;
  4330. --bs-badge-padding-y: 0.35em;
  4331. --bs-badge-font-size: 0.75em;
  4332. --bs-badge-font-weight: 700;
  4333. --bs-badge-color: #fff;
  4334. --bs-badge-border-radius: 0.375rem;
  4335. display: inline-block;
  4336. padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
  4337. font-size: var(--bs-badge-font-size);
  4338. font-weight: var(--bs-badge-font-weight);
  4339. line-height: 1;
  4340. color: var(--bs-badge-color);
  4341. text-align: center;
  4342. white-space: nowrap;
  4343. vertical-align: baseline;
  4344. border-radius: var(--bs-badge-border-radius);
  4345. }
  4346. .badge:empty {
  4347. display: none;
  4348. }
  4349. .btn .badge {
  4350. position: relative;
  4351. top: -1px;
  4352. }
  4353. .alert {
  4354. --bs-alert-bg: transparent;
  4355. --bs-alert-padding-x: 1rem;
  4356. --bs-alert-padding-y: 1rem;
  4357. --bs-alert-margin-bottom: 1rem;
  4358. --bs-alert-color: inherit;
  4359. --bs-alert-border-color: transparent;
  4360. --bs-alert-border: 1px solid var(--bs-alert-border-color);
  4361. --bs-alert-border-radius: 0.375rem;
  4362. position: relative;
  4363. padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
  4364. margin-bottom: var(--bs-alert-margin-bottom);
  4365. color: var(--bs-alert-color);
  4366. background-color: var(--bs-alert-bg);
  4367. border: var(--bs-alert-border);
  4368. border-radius: var(--bs-alert-border-radius);
  4369. }
  4370. .alert-heading {
  4371. color: inherit;
  4372. }
  4373. .alert-link {
  4374. font-weight: 700;
  4375. }
  4376. .alert-dismissible {
  4377. padding-right: 3rem;
  4378. }
  4379. .alert-dismissible .btn-close {
  4380. position: absolute;
  4381. top: 0;
  4382. right: 0;
  4383. z-index: 2;
  4384. padding: 1.25rem 1rem;
  4385. }
  4386. .alert-primary {
  4387. --bs-alert-color: #084298;
  4388. --bs-alert-bg: #cfe2ff;
  4389. --bs-alert-border-color: #b6d4fe;
  4390. }
  4391. .alert-primary .alert-link {
  4392. color: #06357a;
  4393. }
  4394. .alert-secondary {
  4395. --bs-alert-color: #41464b;
  4396. --bs-alert-bg: #e2e3e5;
  4397. --bs-alert-border-color: #d3d6d8;
  4398. }
  4399. .alert-secondary .alert-link {
  4400. color: #34383c;
  4401. }
  4402. .alert-success {
  4403. --bs-alert-color: #0f5132;
  4404. --bs-alert-bg: #d1e7dd;
  4405. --bs-alert-border-color: #badbcc;
  4406. }
  4407. .alert-success .alert-link {
  4408. color: #0c4128;
  4409. }
  4410. .alert-info {
  4411. --bs-alert-color: #055160;
  4412. --bs-alert-bg: #cff4fc;
  4413. --bs-alert-border-color: #b6effb;
  4414. }
  4415. .alert-info .alert-link {
  4416. color: #04414d;
  4417. }
  4418. .alert-warning {
  4419. --bs-alert-color: #664d03;
  4420. --bs-alert-bg: #fff3cd;
  4421. --bs-alert-border-color: #ffecb5;
  4422. }
  4423. .alert-warning .alert-link {
  4424. color: #523e02;
  4425. }
  4426. .alert-danger {
  4427. --bs-alert-color: #842029;
  4428. --bs-alert-bg: #f8d7da;
  4429. --bs-alert-border-color: #f5c2c7;
  4430. }
  4431. .alert-danger .alert-link {
  4432. color: #6a1a21;
  4433. }
  4434. .alert-light {
  4435. --bs-alert-color: #636464;
  4436. --bs-alert-bg: #fefefe;
  4437. --bs-alert-border-color: #fdfdfe;
  4438. }
  4439. .alert-light .alert-link {
  4440. color: #4f5050;
  4441. }
  4442. .alert-dark {
  4443. --bs-alert-color: #141619;
  4444. --bs-alert-bg: #d3d3d4;
  4445. --bs-alert-border-color: #bcbebf;
  4446. }
  4447. .alert-dark .alert-link {
  4448. color: #101214;
  4449. }
  4450. @keyframes progress-bar-stripes {
  4451. 0% {
  4452. background-position-x: 1rem;
  4453. }
  4454. }
  4455. .progress {
  4456. --bs-progress-height: 1rem;
  4457. --bs-progress-font-size: 0.75rem;
  4458. --bs-progress-bg: #e9ecef;
  4459. --bs-progress-border-radius: 0.375rem;
  4460. --bs-progress-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  4461. --bs-progress-bar-color: #fff;
  4462. --bs-progress-bar-bg: #0d6efd;
  4463. --bs-progress-bar-transition: width 0.6s ease;
  4464. display: flex;
  4465. height: var(--bs-progress-height);
  4466. overflow: hidden;
  4467. font-size: var(--bs-progress-font-size);
  4468. background-color: var(--bs-progress-bg);
  4469. border-radius: var(--bs-progress-border-radius);
  4470. }
  4471. .progress-bar {
  4472. display: flex;
  4473. flex-direction: column;
  4474. justify-content: center;
  4475. overflow: hidden;
  4476. color: var(--bs-progress-bar-color);
  4477. text-align: center;
  4478. white-space: nowrap;
  4479. background-color: var(--bs-progress-bar-bg);
  4480. transition: var(--bs-progress-bar-transition);
  4481. }
  4482. @media (prefers-reduced-motion: reduce) {
  4483. .progress-bar {
  4484. transition: none;
  4485. }
  4486. }
  4487. .progress-bar-striped {
  4488. 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);
  4489. background-size: var(--bs-progress-height) var(--bs-progress-height);
  4490. }
  4491. .progress-bar-animated {
  4492. animation: 1s linear infinite progress-bar-stripes;
  4493. }
  4494. @media (prefers-reduced-motion: reduce) {
  4495. .progress-bar-animated {
  4496. animation: none;
  4497. }
  4498. }
  4499. .list-group {
  4500. --bs-list-group-color: #212529;
  4501. --bs-list-group-bg: #fff;
  4502. --bs-list-group-border-color: rgba(0, 0, 0, 0.125);
  4503. --bs-list-group-border-width: 1px;
  4504. --bs-list-group-border-radius: 0.375rem;
  4505. --bs-list-group-item-padding-x: 1rem;
  4506. --bs-list-group-item-padding-y: 0.5rem;
  4507. --bs-list-group-action-color: #495057;
  4508. --bs-list-group-action-hover-color: #495057;
  4509. --bs-list-group-action-hover-bg: #f8f9fa;
  4510. --bs-list-group-action-active-color: #212529;
  4511. --bs-list-group-action-active-bg: #e9ecef;
  4512. --bs-list-group-disabled-color: #6c757d;
  4513. --bs-list-group-disabled-bg: #fff;
  4514. --bs-list-group-active-color: #fff;
  4515. --bs-list-group-active-bg: #0d6efd;
  4516. --bs-list-group-active-border-color: #0d6efd;
  4517. display: flex;
  4518. flex-direction: column;
  4519. padding-left: 0;
  4520. margin-bottom: 0;
  4521. border-radius: var(--bs-list-group-border-radius);
  4522. }
  4523. .list-group-numbered {
  4524. list-style-type: none;
  4525. counter-reset: section;
  4526. }
  4527. .list-group-numbered > .list-group-item::before {
  4528. content: counters(section, ".") ". ";
  4529. counter-increment: section;
  4530. }
  4531. .list-group-item-action {
  4532. width: 100%;
  4533. color: var(--bs-list-group-action-color);
  4534. text-align: inherit;
  4535. }
  4536. .list-group-item-action:hover, .list-group-item-action:focus {
  4537. z-index: 1;
  4538. color: var(--bs-list-group-action-hover-color);
  4539. text-decoration: none;
  4540. background-color: var(--bs-list-group-action-hover-bg);
  4541. }
  4542. .list-group-item-action:active {
  4543. color: var(--bs-list-group-action-active-color);
  4544. background-color: var(--bs-list-group-action-active-bg);
  4545. }
  4546. .list-group-item {
  4547. position: relative;
  4548. display: block;
  4549. padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
  4550. color: var(--bs-list-group-color);
  4551. text-decoration: none;
  4552. background-color: var(--bs-list-group-bg);
  4553. border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
  4554. }
  4555. .list-group-item:first-child {
  4556. border-top-left-radius: inherit;
  4557. border-top-right-radius: inherit;
  4558. }
  4559. .list-group-item:last-child {
  4560. border-bottom-right-radius: inherit;
  4561. border-bottom-left-radius: inherit;
  4562. }
  4563. .list-group-item.disabled, .list-group-item:disabled {
  4564. color: var(--bs-list-group-disabled-color);
  4565. pointer-events: none;
  4566. background-color: var(--bs-list-group-disabled-bg);
  4567. }
  4568. .list-group-item.active {
  4569. z-index: 2;
  4570. color: var(--bs-list-group-active-color);
  4571. background-color: var(--bs-list-group-active-bg);
  4572. border-color: var(--bs-list-group-active-border-color);
  4573. }
  4574. .list-group-item + .list-group-item {
  4575. border-top-width: 0;
  4576. }
  4577. .list-group-item + .list-group-item.active {
  4578. margin-top: calc(-1 * var(--bs-list-group-border-width));
  4579. border-top-width: var(--bs-list-group-border-width);
  4580. }
  4581. .list-group-horizontal {
  4582. flex-direction: row;
  4583. }
  4584. .list-group-horizontal > .list-group-item:first-child:not(:last-child) {
  4585. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4586. border-top-right-radius: 0;
  4587. }
  4588. .list-group-horizontal > .list-group-item:last-child:not(:first-child) {
  4589. border-top-right-radius: var(--bs-list-group-border-radius);
  4590. border-bottom-left-radius: 0;
  4591. }
  4592. .list-group-horizontal > .list-group-item.active {
  4593. margin-top: 0;
  4594. }
  4595. .list-group-horizontal > .list-group-item + .list-group-item {
  4596. border-top-width: var(--bs-list-group-border-width);
  4597. border-left-width: 0;
  4598. }
  4599. .list-group-horizontal > .list-group-item + .list-group-item.active {
  4600. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4601. border-left-width: var(--bs-list-group-border-width);
  4602. }
  4603. @media (min-width: 576px) {
  4604. .list-group-horizontal-sm {
  4605. flex-direction: row;
  4606. }
  4607. .list-group-horizontal-sm > .list-group-item:first-child:not(:last-child) {
  4608. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4609. border-top-right-radius: 0;
  4610. }
  4611. .list-group-horizontal-sm > .list-group-item:last-child:not(:first-child) {
  4612. border-top-right-radius: var(--bs-list-group-border-radius);
  4613. border-bottom-left-radius: 0;
  4614. }
  4615. .list-group-horizontal-sm > .list-group-item.active {
  4616. margin-top: 0;
  4617. }
  4618. .list-group-horizontal-sm > .list-group-item + .list-group-item {
  4619. border-top-width: var(--bs-list-group-border-width);
  4620. border-left-width: 0;
  4621. }
  4622. .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
  4623. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4624. border-left-width: var(--bs-list-group-border-width);
  4625. }
  4626. }
  4627. @media (min-width: 768px) {
  4628. .list-group-horizontal-md {
  4629. flex-direction: row;
  4630. }
  4631. .list-group-horizontal-md > .list-group-item:first-child:not(:last-child) {
  4632. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4633. border-top-right-radius: 0;
  4634. }
  4635. .list-group-horizontal-md > .list-group-item:last-child:not(:first-child) {
  4636. border-top-right-radius: var(--bs-list-group-border-radius);
  4637. border-bottom-left-radius: 0;
  4638. }
  4639. .list-group-horizontal-md > .list-group-item.active {
  4640. margin-top: 0;
  4641. }
  4642. .list-group-horizontal-md > .list-group-item + .list-group-item {
  4643. border-top-width: var(--bs-list-group-border-width);
  4644. border-left-width: 0;
  4645. }
  4646. .list-group-horizontal-md > .list-group-item + .list-group-item.active {
  4647. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4648. border-left-width: var(--bs-list-group-border-width);
  4649. }
  4650. }
  4651. @media (min-width: 992px) {
  4652. .list-group-horizontal-lg {
  4653. flex-direction: row;
  4654. }
  4655. .list-group-horizontal-lg > .list-group-item:first-child:not(:last-child) {
  4656. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4657. border-top-right-radius: 0;
  4658. }
  4659. .list-group-horizontal-lg > .list-group-item:last-child:not(:first-child) {
  4660. border-top-right-radius: var(--bs-list-group-border-radius);
  4661. border-bottom-left-radius: 0;
  4662. }
  4663. .list-group-horizontal-lg > .list-group-item.active {
  4664. margin-top: 0;
  4665. }
  4666. .list-group-horizontal-lg > .list-group-item + .list-group-item {
  4667. border-top-width: var(--bs-list-group-border-width);
  4668. border-left-width: 0;
  4669. }
  4670. .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
  4671. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4672. border-left-width: var(--bs-list-group-border-width);
  4673. }
  4674. }
  4675. @media (min-width: 1200px) {
  4676. .list-group-horizontal-xl {
  4677. flex-direction: row;
  4678. }
  4679. .list-group-horizontal-xl > .list-group-item:first-child:not(:last-child) {
  4680. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4681. border-top-right-radius: 0;
  4682. }
  4683. .list-group-horizontal-xl > .list-group-item:last-child:not(:first-child) {
  4684. border-top-right-radius: var(--bs-list-group-border-radius);
  4685. border-bottom-left-radius: 0;
  4686. }
  4687. .list-group-horizontal-xl > .list-group-item.active {
  4688. margin-top: 0;
  4689. }
  4690. .list-group-horizontal-xl > .list-group-item + .list-group-item {
  4691. border-top-width: var(--bs-list-group-border-width);
  4692. border-left-width: 0;
  4693. }
  4694. .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
  4695. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4696. border-left-width: var(--bs-list-group-border-width);
  4697. }
  4698. }
  4699. @media (min-width: 1400px) {
  4700. .list-group-horizontal-xxl {
  4701. flex-direction: row;
  4702. }
  4703. .list-group-horizontal-xxl > .list-group-item:first-child:not(:last-child) {
  4704. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4705. border-top-right-radius: 0;
  4706. }
  4707. .list-group-horizontal-xxl > .list-group-item:last-child:not(:first-child) {
  4708. border-top-right-radius: var(--bs-list-group-border-radius);
  4709. border-bottom-left-radius: 0;
  4710. }
  4711. .list-group-horizontal-xxl > .list-group-item.active {
  4712. margin-top: 0;
  4713. }
  4714. .list-group-horizontal-xxl > .list-group-item + .list-group-item {
  4715. border-top-width: var(--bs-list-group-border-width);
  4716. border-left-width: 0;
  4717. }
  4718. .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
  4719. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4720. border-left-width: var(--bs-list-group-border-width);
  4721. }
  4722. }
  4723. .list-group-flush {
  4724. border-radius: 0;
  4725. }
  4726. .list-group-flush > .list-group-item {
  4727. border-width: 0 0 var(--bs-list-group-border-width);
  4728. }
  4729. .list-group-flush > .list-group-item:last-child {
  4730. border-bottom-width: 0;
  4731. }
  4732. .list-group-item-primary {
  4733. color: #084298;
  4734. background-color: #cfe2ff;
  4735. }
  4736. .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  4737. color: #084298;
  4738. background-color: #bacbe6;
  4739. }
  4740. .list-group-item-primary.list-group-item-action.active {
  4741. color: #fff;
  4742. background-color: #084298;
  4743. border-color: #084298;
  4744. }
  4745. .list-group-item-secondary {
  4746. color: #41464b;
  4747. background-color: #e2e3e5;
  4748. }
  4749. .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  4750. color: #41464b;
  4751. background-color: #cbccce;
  4752. }
  4753. .list-group-item-secondary.list-group-item-action.active {
  4754. color: #fff;
  4755. background-color: #41464b;
  4756. border-color: #41464b;
  4757. }
  4758. .list-group-item-success {
  4759. color: #0f5132;
  4760. background-color: #d1e7dd;
  4761. }
  4762. .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  4763. color: #0f5132;
  4764. background-color: #bcd0c7;
  4765. }
  4766. .list-group-item-success.list-group-item-action.active {
  4767. color: #fff;
  4768. background-color: #0f5132;
  4769. border-color: #0f5132;
  4770. }
  4771. .list-group-item-info {
  4772. color: #055160;
  4773. background-color: #cff4fc;
  4774. }
  4775. .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  4776. color: #055160;
  4777. background-color: #badce3;
  4778. }
  4779. .list-group-item-info.list-group-item-action.active {
  4780. color: #fff;
  4781. background-color: #055160;
  4782. border-color: #055160;
  4783. }
  4784. .list-group-item-warning {
  4785. color: #664d03;
  4786. background-color: #fff3cd;
  4787. }
  4788. .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  4789. color: #664d03;
  4790. background-color: #e6dbb9;
  4791. }
  4792. .list-group-item-warning.list-group-item-action.active {
  4793. color: #fff;
  4794. background-color: #664d03;
  4795. border-color: #664d03;
  4796. }
  4797. .list-group-item-danger {
  4798. color: #842029;
  4799. background-color: #f8d7da;
  4800. }
  4801. .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  4802. color: #842029;
  4803. background-color: #dfc2c4;
  4804. }
  4805. .list-group-item-danger.list-group-item-action.active {
  4806. color: #fff;
  4807. background-color: #842029;
  4808. border-color: #842029;
  4809. }
  4810. .list-group-item-light {
  4811. color: #636464;
  4812. background-color: #fefefe;
  4813. }
  4814. .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  4815. color: #636464;
  4816. background-color: #e5e5e5;
  4817. }
  4818. .list-group-item-light.list-group-item-action.active {
  4819. color: #fff;
  4820. background-color: #636464;
  4821. border-color: #636464;
  4822. }
  4823. .list-group-item-dark {
  4824. color: #141619;
  4825. background-color: #d3d3d4;
  4826. }
  4827. .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  4828. color: #141619;
  4829. background-color: #bebebf;
  4830. }
  4831. .list-group-item-dark.list-group-item-action.active {
  4832. color: #fff;
  4833. background-color: #141619;
  4834. border-color: #141619;
  4835. }
  4836. .btn-close {
  4837. box-sizing: content-box;
  4838. width: 1em;
  4839. height: 1em;
  4840. padding: 0.25em 0.25em;
  4841. color: #000;
  4842. 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 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  4843. border: 0;
  4844. border-radius: 0.375rem;
  4845. opacity: 0.5;
  4846. }
  4847. .btn-close:hover {
  4848. color: #000;
  4849. text-decoration: none;
  4850. opacity: 0.75;
  4851. }
  4852. .btn-close:focus {
  4853. outline: 0;
  4854. box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  4855. opacity: 1;
  4856. }
  4857. .btn-close:disabled, .btn-close.disabled {
  4858. pointer-events: none;
  4859. -webkit-user-select: none;
  4860. -moz-user-select: none;
  4861. user-select: none;
  4862. opacity: 0.25;
  4863. }
  4864. .btn-close-white {
  4865. filter: invert(1) grayscale(100%) brightness(200%);
  4866. }
  4867. .toast {
  4868. --bs-toast-zindex: 1090;
  4869. --bs-toast-padding-x: 0.75rem;
  4870. --bs-toast-padding-y: 0.5rem;
  4871. --bs-toast-spacing: 1.5rem;
  4872. --bs-toast-max-width: 350px;
  4873. --bs-toast-font-size: 0.875rem;
  4874. --bs-toast-color: ;
  4875. --bs-toast-bg: rgba(255, 255, 255, 0.85);
  4876. --bs-toast-border-width: 1px;
  4877. --bs-toast-border-color: var(--bs-border-color-translucent);
  4878. --bs-toast-border-radius: 0.375rem;
  4879. --bs-toast-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  4880. --bs-toast-header-color: #6c757d;
  4881. --bs-toast-header-bg: rgba(255, 255, 255, 0.85);
  4882. --bs-toast-header-border-color: rgba(0, 0, 0, 0.05);
  4883. width: var(--bs-toast-max-width);
  4884. max-width: 100%;
  4885. font-size: var(--bs-toast-font-size);
  4886. color: var(--bs-toast-color);
  4887. pointer-events: auto;
  4888. background-color: var(--bs-toast-bg);
  4889. background-clip: padding-box;
  4890. border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
  4891. box-shadow: var(--bs-toast-box-shadow);
  4892. border-radius: var(--bs-toast-border-radius);
  4893. }
  4894. .toast.showing {
  4895. opacity: 0;
  4896. }
  4897. .toast:not(.show) {
  4898. display: none;
  4899. }
  4900. .toast-container {
  4901. --bs-toast-zindex: 1090;
  4902. position: absolute;
  4903. z-index: var(--bs-toast-zindex);
  4904. width: -moz-max-content;
  4905. width: max-content;
  4906. max-width: 100%;
  4907. pointer-events: none;
  4908. }
  4909. .toast-container > :not(:last-child) {
  4910. margin-bottom: var(--bs-toast-spacing);
  4911. }
  4912. .toast-header {
  4913. display: flex;
  4914. align-items: center;
  4915. padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
  4916. color: var(--bs-toast-header-color);
  4917. background-color: var(--bs-toast-header-bg);
  4918. background-clip: padding-box;
  4919. border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
  4920. border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
  4921. border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
  4922. }
  4923. .toast-header .btn-close {
  4924. margin-right: calc(-0.5 * var(--bs-toast-padding-x));
  4925. margin-left: var(--bs-toast-padding-x);
  4926. }
  4927. .toast-body {
  4928. padding: var(--bs-toast-padding-x);
  4929. word-wrap: break-word;
  4930. }
  4931. .modal {
  4932. --bs-modal-zindex: 1055;
  4933. --bs-modal-width: 500px;
  4934. --bs-modal-padding: 1rem;
  4935. --bs-modal-margin: 0.5rem;
  4936. --bs-modal-color: ;
  4937. --bs-modal-bg: #fff;
  4938. --bs-modal-border-color: var(--bs-border-color-translucent);
  4939. --bs-modal-border-width: 1px;
  4940. --bs-modal-border-radius: 0.5rem;
  4941. --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  4942. --bs-modal-inner-border-radius: calc(0.5rem - 1px);
  4943. --bs-modal-header-padding-x: 1rem;
  4944. --bs-modal-header-padding-y: 1rem;
  4945. --bs-modal-header-padding: 1rem 1rem;
  4946. --bs-modal-header-border-color: var(--bs-border-color);
  4947. --bs-modal-header-border-width: 1px;
  4948. --bs-modal-title-line-height: 1.5;
  4949. --bs-modal-footer-gap: 0.5rem;
  4950. --bs-modal-footer-bg: ;
  4951. --bs-modal-footer-border-color: var(--bs-border-color);
  4952. --bs-modal-footer-border-width: 1px;
  4953. position: fixed;
  4954. top: 0;
  4955. left: 0;
  4956. z-index: var(--bs-modal-zindex);
  4957. display: none;
  4958. width: 100%;
  4959. height: 100%;
  4960. overflow-x: hidden;
  4961. overflow-y: auto;
  4962. outline: 0;
  4963. }
  4964. .modal-dialog {
  4965. position: relative;
  4966. width: auto;
  4967. margin: var(--bs-modal-margin);
  4968. pointer-events: none;
  4969. }
  4970. .modal.fade .modal-dialog {
  4971. transition: transform 0.3s ease-out;
  4972. transform: translate(0, -50px);
  4973. }
  4974. @media (prefers-reduced-motion: reduce) {
  4975. .modal.fade .modal-dialog {
  4976. transition: none;
  4977. }
  4978. }
  4979. .modal.show .modal-dialog {
  4980. transform: none;
  4981. }
  4982. .modal.modal-static .modal-dialog {
  4983. transform: scale(1.02);
  4984. }
  4985. .modal-dialog-scrollable {
  4986. height: calc(100% - var(--bs-modal-margin) * 2);
  4987. }
  4988. .modal-dialog-scrollable .modal-content {
  4989. max-height: 100%;
  4990. overflow: hidden;
  4991. }
  4992. .modal-dialog-scrollable .modal-body {
  4993. overflow-y: auto;
  4994. }
  4995. .modal-dialog-centered {
  4996. display: flex;
  4997. align-items: center;
  4998. min-height: calc(100% - var(--bs-modal-margin) * 2);
  4999. }
  5000. .modal-content {
  5001. position: relative;
  5002. display: flex;
  5003. flex-direction: column;
  5004. width: 100%;
  5005. color: var(--bs-modal-color);
  5006. pointer-events: auto;
  5007. background-color: var(--bs-modal-bg);
  5008. background-clip: padding-box;
  5009. border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  5010. border-radius: var(--bs-modal-border-radius);
  5011. outline: 0;
  5012. }
  5013. .modal-backdrop {
  5014. --bs-backdrop-zindex: 1050;
  5015. --bs-backdrop-bg: #000;
  5016. --bs-backdrop-opacity: 0.5;
  5017. position: fixed;
  5018. top: 0;
  5019. left: 0;
  5020. z-index: var(--bs-backdrop-zindex);
  5021. width: 100vw;
  5022. height: 100vh;
  5023. background-color: var(--bs-backdrop-bg);
  5024. }
  5025. .modal-backdrop.fade {
  5026. opacity: 0;
  5027. }
  5028. .modal-backdrop.show {
  5029. opacity: var(--bs-backdrop-opacity);
  5030. }
  5031. .modal-header {
  5032. display: flex;
  5033. flex-shrink: 0;
  5034. align-items: center;
  5035. justify-content: space-between;
  5036. padding: var(--bs-modal-header-padding);
  5037. border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  5038. border-top-left-radius: var(--bs-modal-inner-border-radius);
  5039. border-top-right-radius: var(--bs-modal-inner-border-radius);
  5040. }
  5041. .modal-header .btn-close {
  5042. padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  5043. margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
  5044. }
  5045. .modal-title {
  5046. margin-bottom: 0;
  5047. line-height: var(--bs-modal-title-line-height);
  5048. }
  5049. .modal-body {
  5050. position: relative;
  5051. flex: 1 1 auto;
  5052. padding: var(--bs-modal-padding);
  5053. }
  5054. .modal-footer {
  5055. display: flex;
  5056. flex-shrink: 0;
  5057. flex-wrap: wrap;
  5058. align-items: center;
  5059. justify-content: flex-end;
  5060. padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
  5061. background-color: var(--bs-modal-footer-bg);
  5062. border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  5063. border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  5064. border-bottom-left-radius: var(--bs-modal-inner-border-radius);
  5065. }
  5066. .modal-footer > * {
  5067. margin: calc(var(--bs-modal-footer-gap) * 0.5);
  5068. }
  5069. @media (min-width: 576px) {
  5070. .modal {
  5071. --bs-modal-margin: 1.75rem;
  5072. --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  5073. }
  5074. .modal-dialog {
  5075. max-width: var(--bs-modal-width);
  5076. margin-right: auto;
  5077. margin-left: auto;
  5078. }
  5079. .modal-sm {
  5080. --bs-modal-width: 300px;
  5081. }
  5082. }
  5083. @media (min-width: 992px) {
  5084. .modal-lg,
  5085. .modal-xl {
  5086. --bs-modal-width: 800px;
  5087. }
  5088. }
  5089. @media (min-width: 1200px) {
  5090. .modal-xl {
  5091. --bs-modal-width: 1140px;
  5092. }
  5093. }
  5094. .modal-fullscreen {
  5095. width: 100vw;
  5096. max-width: none;
  5097. height: 100%;
  5098. margin: 0;
  5099. }
  5100. .modal-fullscreen .modal-content {
  5101. height: 100%;
  5102. border: 0;
  5103. border-radius: 0;
  5104. }
  5105. .modal-fullscreen .modal-header,
  5106. .modal-fullscreen .modal-footer {
  5107. border-radius: 0;
  5108. }
  5109. .modal-fullscreen .modal-body {
  5110. overflow-y: auto;
  5111. }
  5112. @media (max-width: 575.98px) {
  5113. .modal-fullscreen-sm-down {
  5114. width: 100vw;
  5115. max-width: none;
  5116. height: 100%;
  5117. margin: 0;
  5118. }
  5119. .modal-fullscreen-sm-down .modal-content {
  5120. height: 100%;
  5121. border: 0;
  5122. border-radius: 0;
  5123. }
  5124. .modal-fullscreen-sm-down .modal-header,
  5125. .modal-fullscreen-sm-down .modal-footer {
  5126. border-radius: 0;
  5127. }
  5128. .modal-fullscreen-sm-down .modal-body {
  5129. overflow-y: auto;
  5130. }
  5131. }
  5132. @media (max-width: 767.98px) {
  5133. .modal-fullscreen-md-down {
  5134. width: 100vw;
  5135. max-width: none;
  5136. height: 100%;
  5137. margin: 0;
  5138. }
  5139. .modal-fullscreen-md-down .modal-content {
  5140. height: 100%;
  5141. border: 0;
  5142. border-radius: 0;
  5143. }
  5144. .modal-fullscreen-md-down .modal-header,
  5145. .modal-fullscreen-md-down .modal-footer {
  5146. border-radius: 0;
  5147. }
  5148. .modal-fullscreen-md-down .modal-body {
  5149. overflow-y: auto;
  5150. }
  5151. }
  5152. @media (max-width: 991.98px) {
  5153. .modal-fullscreen-lg-down {
  5154. width: 100vw;
  5155. max-width: none;
  5156. height: 100%;
  5157. margin: 0;
  5158. }
  5159. .modal-fullscreen-lg-down .modal-content {
  5160. height: 100%;
  5161. border: 0;
  5162. border-radius: 0;
  5163. }
  5164. .modal-fullscreen-lg-down .modal-header,
  5165. .modal-fullscreen-lg-down .modal-footer {
  5166. border-radius: 0;
  5167. }
  5168. .modal-fullscreen-lg-down .modal-body {
  5169. overflow-y: auto;
  5170. }
  5171. }
  5172. @media (max-width: 1199.98px) {
  5173. .modal-fullscreen-xl-down {
  5174. width: 100vw;
  5175. max-width: none;
  5176. height: 100%;
  5177. margin: 0;
  5178. }
  5179. .modal-fullscreen-xl-down .modal-content {
  5180. height: 100%;
  5181. border: 0;
  5182. border-radius: 0;
  5183. }
  5184. .modal-fullscreen-xl-down .modal-header,
  5185. .modal-fullscreen-xl-down .modal-footer {
  5186. border-radius: 0;
  5187. }
  5188. .modal-fullscreen-xl-down .modal-body {
  5189. overflow-y: auto;
  5190. }
  5191. }
  5192. @media (max-width: 1399.98px) {
  5193. .modal-fullscreen-xxl-down {
  5194. width: 100vw;
  5195. max-width: none;
  5196. height: 100%;
  5197. margin: 0;
  5198. }
  5199. .modal-fullscreen-xxl-down .modal-content {
  5200. height: 100%;
  5201. border: 0;
  5202. border-radius: 0;
  5203. }
  5204. .modal-fullscreen-xxl-down .modal-header,
  5205. .modal-fullscreen-xxl-down .modal-footer {
  5206. border-radius: 0;
  5207. }
  5208. .modal-fullscreen-xxl-down .modal-body {
  5209. overflow-y: auto;
  5210. }
  5211. }
  5212. .tooltip {
  5213. --bs-tooltip-zindex: 1080;
  5214. --bs-tooltip-max-width: 200px;
  5215. --bs-tooltip-padding-x: 0.5rem;
  5216. --bs-tooltip-padding-y: 0.25rem;
  5217. --bs-tooltip-margin: ;
  5218. --bs-tooltip-font-size: 0.875rem;
  5219. --bs-tooltip-color: #fff;
  5220. --bs-tooltip-bg: #000;
  5221. --bs-tooltip-border-radius: 0.375rem;
  5222. --bs-tooltip-opacity: 0.9;
  5223. --bs-tooltip-arrow-width: 0.8rem;
  5224. --bs-tooltip-arrow-height: 0.4rem;
  5225. z-index: var(--bs-tooltip-zindex);
  5226. display: block;
  5227. padding: var(--bs-tooltip-arrow-height);
  5228. margin: var(--bs-tooltip-margin);
  5229. font-family: var(--bs-font-sans-serif);
  5230. font-style: normal;
  5231. font-weight: 400;
  5232. line-height: 1.5;
  5233. text-align: left;
  5234. text-align: start;
  5235. text-decoration: none;
  5236. text-shadow: none;
  5237. text-transform: none;
  5238. letter-spacing: normal;
  5239. word-break: normal;
  5240. white-space: normal;
  5241. word-spacing: normal;
  5242. line-break: auto;
  5243. font-size: var(--bs-tooltip-font-size);
  5244. word-wrap: break-word;
  5245. opacity: 0;
  5246. }
  5247. .tooltip.show {
  5248. opacity: var(--bs-tooltip-opacity);
  5249. }
  5250. .tooltip .tooltip-arrow {
  5251. display: block;
  5252. width: var(--bs-tooltip-arrow-width);
  5253. height: var(--bs-tooltip-arrow-height);
  5254. }
  5255. .tooltip .tooltip-arrow::before {
  5256. position: absolute;
  5257. content: "";
  5258. border-color: transparent;
  5259. border-style: solid;
  5260. }
  5261. .bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  5262. bottom: 0;
  5263. }
  5264. .bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  5265. top: -1px;
  5266. border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  5267. border-top-color: var(--bs-tooltip-bg);
  5268. }
  5269. /* rtl:begin:ignore */
  5270. .bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  5271. left: 0;
  5272. width: var(--bs-tooltip-arrow-height);
  5273. height: var(--bs-tooltip-arrow-width);
  5274. }
  5275. .bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  5276. right: -1px;
  5277. border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  5278. border-right-color: var(--bs-tooltip-bg);
  5279. }
  5280. /* rtl:end:ignore */
  5281. .bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  5282. top: 0;
  5283. }
  5284. .bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  5285. bottom: -1px;
  5286. border-width: 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
  5287. border-bottom-color: var(--bs-tooltip-bg);
  5288. }
  5289. /* rtl:begin:ignore */
  5290. .bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  5291. right: 0;
  5292. width: var(--bs-tooltip-arrow-height);
  5293. height: var(--bs-tooltip-arrow-width);
  5294. }
  5295. .bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  5296. left: -1px;
  5297. border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
  5298. border-left-color: var(--bs-tooltip-bg);
  5299. }
  5300. /* rtl:end:ignore */
  5301. .tooltip-inner {
  5302. max-width: var(--bs-tooltip-max-width);
  5303. padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
  5304. color: var(--bs-tooltip-color);
  5305. text-align: center;
  5306. background-color: var(--bs-tooltip-bg);
  5307. border-radius: var(--bs-tooltip-border-radius);
  5308. }
  5309. .popover {
  5310. --bs-popover-zindex: 1070;
  5311. --bs-popover-max-width: 276px;
  5312. --bs-popover-font-size: 0.875rem;
  5313. --bs-popover-bg: #fff;
  5314. --bs-popover-border-width: 1px;
  5315. --bs-popover-border-color: var(--bs-border-color-translucent);
  5316. --bs-popover-border-radius: 0.5rem;
  5317. --bs-popover-inner-border-radius: calc(0.5rem - 1px);
  5318. --bs-popover-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  5319. --bs-popover-header-padding-x: 1rem;
  5320. --bs-popover-header-padding-y: 0.5rem;
  5321. --bs-popover-header-font-size: 1rem;
  5322. --bs-popover-header-color: ;
  5323. --bs-popover-header-bg: #f0f0f0;
  5324. --bs-popover-body-padding-x: 1rem;
  5325. --bs-popover-body-padding-y: 1rem;
  5326. --bs-popover-body-color: #212529;
  5327. --bs-popover-arrow-width: 1rem;
  5328. --bs-popover-arrow-height: 0.5rem;
  5329. --bs-popover-arrow-border: var(--bs-popover-border-color);
  5330. z-index: var(--bs-popover-zindex);
  5331. display: block;
  5332. max-width: var(--bs-popover-max-width);
  5333. font-family: var(--bs-font-sans-serif);
  5334. font-style: normal;
  5335. font-weight: 400;
  5336. line-height: 1.5;
  5337. text-align: left;
  5338. text-align: start;
  5339. text-decoration: none;
  5340. text-shadow: none;
  5341. text-transform: none;
  5342. letter-spacing: normal;
  5343. word-break: normal;
  5344. white-space: normal;
  5345. word-spacing: normal;
  5346. line-break: auto;
  5347. font-size: var(--bs-popover-font-size);
  5348. word-wrap: break-word;
  5349. background-color: var(--bs-popover-bg);
  5350. background-clip: padding-box;
  5351. border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  5352. border-radius: var(--bs-popover-border-radius);
  5353. }
  5354. .popover .popover-arrow {
  5355. display: block;
  5356. width: var(--bs-popover-arrow-width);
  5357. height: var(--bs-popover-arrow-height);
  5358. }
  5359. .popover .popover-arrow::before, .popover .popover-arrow::after {
  5360. position: absolute;
  5361. display: block;
  5362. content: "";
  5363. border-color: transparent;
  5364. border-style: solid;
  5365. border-width: 0;
  5366. }
  5367. .bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  5368. bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  5369. }
  5370. .bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before, .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  5371. border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
  5372. }
  5373. .bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  5374. bottom: 0;
  5375. border-top-color: var(--bs-popover-arrow-border);
  5376. }
  5377. .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  5378. bottom: var(--bs-popover-border-width);
  5379. border-top-color: var(--bs-popover-bg);
  5380. }
  5381. /* rtl:begin:ignore */
  5382. .bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  5383. left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  5384. width: var(--bs-popover-arrow-height);
  5385. height: var(--bs-popover-arrow-width);
  5386. }
  5387. .bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before, .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  5388. border-width: calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
  5389. }
  5390. .bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  5391. left: 0;
  5392. border-right-color: var(--bs-popover-arrow-border);
  5393. }
  5394. .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  5395. left: var(--bs-popover-border-width);
  5396. border-right-color: var(--bs-popover-bg);
  5397. }
  5398. /* rtl:end:ignore */
  5399. .bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  5400. top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  5401. }
  5402. .bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before, .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  5403. border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
  5404. }
  5405. .bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  5406. top: 0;
  5407. border-bottom-color: var(--bs-popover-arrow-border);
  5408. }
  5409. .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  5410. top: var(--bs-popover-border-width);
  5411. border-bottom-color: var(--bs-popover-bg);
  5412. }
  5413. .bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  5414. position: absolute;
  5415. top: 0;
  5416. left: 50%;
  5417. display: block;
  5418. width: var(--bs-popover-arrow-width);
  5419. margin-left: calc(-0.5 * var(--bs-popover-arrow-width));
  5420. content: "";
  5421. border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
  5422. }
  5423. /* rtl:begin:ignore */
  5424. .bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  5425. right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  5426. width: var(--bs-popover-arrow-height);
  5427. height: var(--bs-popover-arrow-width);
  5428. }
  5429. .bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before, .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  5430. border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
  5431. }
  5432. .bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  5433. right: 0;
  5434. border-left-color: var(--bs-popover-arrow-border);
  5435. }
  5436. .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  5437. right: var(--bs-popover-border-width);
  5438. border-left-color: var(--bs-popover-bg);
  5439. }
  5440. /* rtl:end:ignore */
  5441. .popover-header {
  5442. padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
  5443. margin-bottom: 0;
  5444. font-size: var(--bs-popover-header-font-size);
  5445. color: var(--bs-popover-header-color);
  5446. background-color: var(--bs-popover-header-bg);
  5447. border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  5448. border-top-left-radius: var(--bs-popover-inner-border-radius);
  5449. border-top-right-radius: var(--bs-popover-inner-border-radius);
  5450. }
  5451. .popover-header:empty {
  5452. display: none;
  5453. }
  5454. .popover-body {
  5455. padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
  5456. color: var(--bs-popover-body-color);
  5457. }
  5458. .carousel {
  5459. position: relative;
  5460. }
  5461. .carousel.pointer-event {
  5462. touch-action: pan-y;
  5463. }
  5464. .carousel-inner {
  5465. position: relative;
  5466. width: 100%;
  5467. overflow: hidden;
  5468. }
  5469. .carousel-inner::after {
  5470. display: block;
  5471. clear: both;
  5472. content: "";
  5473. }
  5474. .carousel-item {
  5475. position: relative;
  5476. display: none;
  5477. float: left;
  5478. width: 100%;
  5479. margin-right: -100%;
  5480. -webkit-backface-visibility: hidden;
  5481. backface-visibility: hidden;
  5482. transition: transform 0.6s ease-in-out;
  5483. }
  5484. @media (prefers-reduced-motion: reduce) {
  5485. .carousel-item {
  5486. transition: none;
  5487. }
  5488. }
  5489. .carousel-item.active,
  5490. .carousel-item-next,
  5491. .carousel-item-prev {
  5492. display: block;
  5493. }
  5494. .carousel-item-next:not(.carousel-item-start),
  5495. .active.carousel-item-end {
  5496. transform: translateX(100%);
  5497. }
  5498. .carousel-item-prev:not(.carousel-item-end),
  5499. .active.carousel-item-start {
  5500. transform: translateX(-100%);
  5501. }
  5502. .carousel-fade .carousel-item {
  5503. opacity: 0;
  5504. transition-property: opacity;
  5505. transform: none;
  5506. }
  5507. .carousel-fade .carousel-item.active,
  5508. .carousel-fade .carousel-item-next.carousel-item-start,
  5509. .carousel-fade .carousel-item-prev.carousel-item-end {
  5510. z-index: 1;
  5511. opacity: 1;
  5512. }
  5513. .carousel-fade .active.carousel-item-start,
  5514. .carousel-fade .active.carousel-item-end {
  5515. z-index: 0;
  5516. opacity: 0;
  5517. transition: opacity 0s 0.6s;
  5518. }
  5519. @media (prefers-reduced-motion: reduce) {
  5520. .carousel-fade .active.carousel-item-start,
  5521. .carousel-fade .active.carousel-item-end {
  5522. transition: none;
  5523. }
  5524. }
  5525. .carousel-control-prev,
  5526. .carousel-control-next {
  5527. position: absolute;
  5528. top: 0;
  5529. bottom: 0;
  5530. z-index: 1;
  5531. display: flex;
  5532. align-items: center;
  5533. justify-content: center;
  5534. width: 15%;
  5535. padding: 0;
  5536. color: #fff;
  5537. text-align: center;
  5538. background: none;
  5539. border: 0;
  5540. opacity: 0.5;
  5541. transition: opacity 0.15s ease;
  5542. }
  5543. @media (prefers-reduced-motion: reduce) {
  5544. .carousel-control-prev,
  5545. .carousel-control-next {
  5546. transition: none;
  5547. }
  5548. }
  5549. .carousel-control-prev:hover, .carousel-control-prev:focus,
  5550. .carousel-control-next:hover,
  5551. .carousel-control-next:focus {
  5552. color: #fff;
  5553. text-decoration: none;
  5554. outline: 0;
  5555. opacity: 0.9;
  5556. }
  5557. .carousel-control-prev {
  5558. left: 0;
  5559. }
  5560. .carousel-control-next {
  5561. right: 0;
  5562. }
  5563. .carousel-control-prev-icon,
  5564. .carousel-control-next-icon {
  5565. display: inline-block;
  5566. width: 2rem;
  5567. height: 2rem;
  5568. background-repeat: no-repeat;
  5569. background-position: 50%;
  5570. background-size: 100% 100%;
  5571. }
  5572. /* rtl:options: {
  5573. "autoRename": true,
  5574. "stringMap":[ {
  5575. "name" : "prev-next",
  5576. "search" : "prev",
  5577. "replace" : "next"
  5578. } ]
  5579. } */
  5580. .carousel-control-prev-icon {
  5581. 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");
  5582. }
  5583. .carousel-control-next-icon {
  5584. 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");
  5585. }
  5586. .carousel-indicators {
  5587. position: absolute;
  5588. right: 0;
  5589. bottom: 0;
  5590. left: 0;
  5591. z-index: 2;
  5592. display: flex;
  5593. justify-content: center;
  5594. padding: 0;
  5595. margin-right: 15%;
  5596. margin-bottom: 1rem;
  5597. margin-left: 15%;
  5598. list-style: none;
  5599. }
  5600. .carousel-indicators [data-bs-target] {
  5601. box-sizing: content-box;
  5602. flex: 0 1 auto;
  5603. width: 30px;
  5604. height: 3px;
  5605. padding: 0;
  5606. margin-right: 3px;
  5607. margin-left: 3px;
  5608. text-indent: -999px;
  5609. cursor: pointer;
  5610. background-color: #fff;
  5611. background-clip: padding-box;
  5612. border: 0;
  5613. border-top: 10px solid transparent;
  5614. border-bottom: 10px solid transparent;
  5615. opacity: 0.5;
  5616. transition: opacity 0.6s ease;
  5617. }
  5618. @media (prefers-reduced-motion: reduce) {
  5619. .carousel-indicators [data-bs-target] {
  5620. transition: none;
  5621. }
  5622. }
  5623. .carousel-indicators .active {
  5624. opacity: 1;
  5625. }
  5626. .carousel-caption {
  5627. position: absolute;
  5628. right: 15%;
  5629. bottom: 1.25rem;
  5630. left: 15%;
  5631. padding-top: 1.25rem;
  5632. padding-bottom: 1.25rem;
  5633. color: #fff;
  5634. text-align: center;
  5635. }
  5636. .carousel-dark .carousel-control-prev-icon,
  5637. .carousel-dark .carousel-control-next-icon {
  5638. filter: invert(1) grayscale(100);
  5639. }
  5640. .carousel-dark .carousel-indicators [data-bs-target] {
  5641. background-color: #000;
  5642. }
  5643. .carousel-dark .carousel-caption {
  5644. color: #000;
  5645. }
  5646. .spinner-grow,
  5647. .spinner-border {
  5648. display: inline-block;
  5649. width: var(--bs-spinner-width);
  5650. height: var(--bs-spinner-height);
  5651. vertical-align: var(--bs-spinner-vertical-align);
  5652. border-radius: 50%;
  5653. animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
  5654. }
  5655. @keyframes spinner-border {
  5656. to {
  5657. transform: rotate(360deg) /* rtl:ignore */;
  5658. }
  5659. }
  5660. .spinner-border {
  5661. --bs-spinner-width: 2rem;
  5662. --bs-spinner-height: 2rem;
  5663. --bs-spinner-vertical-align: -0.125em;
  5664. --bs-spinner-border-width: 0.25em;
  5665. --bs-spinner-animation-speed: 0.75s;
  5666. --bs-spinner-animation-name: spinner-border;
  5667. border: var(--bs-spinner-border-width) solid currentcolor;
  5668. border-right-color: transparent;
  5669. }
  5670. .spinner-border-sm {
  5671. --bs-spinner-width: 1rem;
  5672. --bs-spinner-height: 1rem;
  5673. --bs-spinner-border-width: 0.2em;
  5674. }
  5675. @keyframes spinner-grow {
  5676. 0% {
  5677. transform: scale(0);
  5678. }
  5679. 50% {
  5680. opacity: 1;
  5681. transform: none;
  5682. }
  5683. }
  5684. .spinner-grow {
  5685. --bs-spinner-width: 2rem;
  5686. --bs-spinner-height: 2rem;
  5687. --bs-spinner-vertical-align: -0.125em;
  5688. --bs-spinner-animation-speed: 0.75s;
  5689. --bs-spinner-animation-name: spinner-grow;
  5690. background-color: currentcolor;
  5691. opacity: 0;
  5692. }
  5693. .spinner-grow-sm {
  5694. --bs-spinner-width: 1rem;
  5695. --bs-spinner-height: 1rem;
  5696. }
  5697. @media (prefers-reduced-motion: reduce) {
  5698. .spinner-border,
  5699. .spinner-grow {
  5700. --bs-spinner-animation-speed: 1.5s;
  5701. }
  5702. }
  5703. .offcanvas, .offcanvas-xxl, .offcanvas-xl, .offcanvas-lg, .offcanvas-md, .offcanvas-sm {
  5704. --bs-offcanvas-zindex: 1045;
  5705. --bs-offcanvas-width: 400px;
  5706. --bs-offcanvas-height: 30vh;
  5707. --bs-offcanvas-padding-x: 1rem;
  5708. --bs-offcanvas-padding-y: 1rem;
  5709. --bs-offcanvas-color: ;
  5710. --bs-offcanvas-bg: #fff;
  5711. --bs-offcanvas-border-width: 1px;
  5712. --bs-offcanvas-border-color: var(--bs-border-color-translucent);
  5713. --bs-offcanvas-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  5714. }
  5715. @media (max-width: 575.98px) {
  5716. .offcanvas-sm {
  5717. position: fixed;
  5718. bottom: 0;
  5719. z-index: var(--bs-offcanvas-zindex);
  5720. display: flex;
  5721. flex-direction: column;
  5722. max-width: 100%;
  5723. color: var(--bs-offcanvas-color);
  5724. visibility: hidden;
  5725. background-color: var(--bs-offcanvas-bg);
  5726. background-clip: padding-box;
  5727. outline: 0;
  5728. transition: transform 0.3s ease-in-out;
  5729. }
  5730. }
  5731. @media (max-width: 575.98px) and (prefers-reduced-motion: reduce) {
  5732. .offcanvas-sm {
  5733. transition: none;
  5734. }
  5735. }
  5736. @media (max-width: 575.98px) {
  5737. .offcanvas-sm.offcanvas-start {
  5738. top: 0;
  5739. left: 0;
  5740. width: var(--bs-offcanvas-width);
  5741. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5742. transform: translateX(-100%);
  5743. }
  5744. }
  5745. @media (max-width: 575.98px) {
  5746. .offcanvas-sm.offcanvas-end {
  5747. top: 0;
  5748. right: 0;
  5749. width: var(--bs-offcanvas-width);
  5750. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5751. transform: translateX(100%);
  5752. }
  5753. }
  5754. @media (max-width: 575.98px) {
  5755. .offcanvas-sm.offcanvas-top {
  5756. top: 0;
  5757. right: 0;
  5758. left: 0;
  5759. height: var(--bs-offcanvas-height);
  5760. max-height: 100%;
  5761. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5762. transform: translateY(-100%);
  5763. }
  5764. }
  5765. @media (max-width: 575.98px) {
  5766. .offcanvas-sm.offcanvas-bottom {
  5767. right: 0;
  5768. left: 0;
  5769. height: var(--bs-offcanvas-height);
  5770. max-height: 100%;
  5771. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5772. transform: translateY(100%);
  5773. }
  5774. }
  5775. @media (max-width: 575.98px) {
  5776. .offcanvas-sm.showing, .offcanvas-sm.show:not(.hiding) {
  5777. transform: none;
  5778. }
  5779. }
  5780. @media (max-width: 575.98px) {
  5781. .offcanvas-sm.showing, .offcanvas-sm.hiding, .offcanvas-sm.show {
  5782. visibility: visible;
  5783. }
  5784. }
  5785. @media (min-width: 576px) {
  5786. .offcanvas-sm {
  5787. --bs-offcanvas-height: auto;
  5788. --bs-offcanvas-border-width: 0;
  5789. background-color: transparent !important;
  5790. }
  5791. .offcanvas-sm .offcanvas-header {
  5792. display: none;
  5793. }
  5794. .offcanvas-sm .offcanvas-body {
  5795. display: flex;
  5796. flex-grow: 0;
  5797. padding: 0;
  5798. overflow-y: visible;
  5799. background-color: transparent !important;
  5800. }
  5801. }
  5802. @media (max-width: 767.98px) {
  5803. .offcanvas-md {
  5804. position: fixed;
  5805. bottom: 0;
  5806. z-index: var(--bs-offcanvas-zindex);
  5807. display: flex;
  5808. flex-direction: column;
  5809. max-width: 100%;
  5810. color: var(--bs-offcanvas-color);
  5811. visibility: hidden;
  5812. background-color: var(--bs-offcanvas-bg);
  5813. background-clip: padding-box;
  5814. outline: 0;
  5815. transition: transform 0.3s ease-in-out;
  5816. }
  5817. }
  5818. @media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
  5819. .offcanvas-md {
  5820. transition: none;
  5821. }
  5822. }
  5823. @media (max-width: 767.98px) {
  5824. .offcanvas-md.offcanvas-start {
  5825. top: 0;
  5826. left: 0;
  5827. width: var(--bs-offcanvas-width);
  5828. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5829. transform: translateX(-100%);
  5830. }
  5831. }
  5832. @media (max-width: 767.98px) {
  5833. .offcanvas-md.offcanvas-end {
  5834. top: 0;
  5835. right: 0;
  5836. width: var(--bs-offcanvas-width);
  5837. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5838. transform: translateX(100%);
  5839. }
  5840. }
  5841. @media (max-width: 767.98px) {
  5842. .offcanvas-md.offcanvas-top {
  5843. top: 0;
  5844. right: 0;
  5845. left: 0;
  5846. height: var(--bs-offcanvas-height);
  5847. max-height: 100%;
  5848. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5849. transform: translateY(-100%);
  5850. }
  5851. }
  5852. @media (max-width: 767.98px) {
  5853. .offcanvas-md.offcanvas-bottom {
  5854. right: 0;
  5855. left: 0;
  5856. height: var(--bs-offcanvas-height);
  5857. max-height: 100%;
  5858. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5859. transform: translateY(100%);
  5860. }
  5861. }
  5862. @media (max-width: 767.98px) {
  5863. .offcanvas-md.showing, .offcanvas-md.show:not(.hiding) {
  5864. transform: none;
  5865. }
  5866. }
  5867. @media (max-width: 767.98px) {
  5868. .offcanvas-md.showing, .offcanvas-md.hiding, .offcanvas-md.show {
  5869. visibility: visible;
  5870. }
  5871. }
  5872. @media (min-width: 768px) {
  5873. .offcanvas-md {
  5874. --bs-offcanvas-height: auto;
  5875. --bs-offcanvas-border-width: 0;
  5876. background-color: transparent !important;
  5877. }
  5878. .offcanvas-md .offcanvas-header {
  5879. display: none;
  5880. }
  5881. .offcanvas-md .offcanvas-body {
  5882. display: flex;
  5883. flex-grow: 0;
  5884. padding: 0;
  5885. overflow-y: visible;
  5886. background-color: transparent !important;
  5887. }
  5888. }
  5889. @media (max-width: 991.98px) {
  5890. .offcanvas-lg {
  5891. position: fixed;
  5892. bottom: 0;
  5893. z-index: var(--bs-offcanvas-zindex);
  5894. display: flex;
  5895. flex-direction: column;
  5896. max-width: 100%;
  5897. color: var(--bs-offcanvas-color);
  5898. visibility: hidden;
  5899. background-color: var(--bs-offcanvas-bg);
  5900. background-clip: padding-box;
  5901. outline: 0;
  5902. transition: transform 0.3s ease-in-out;
  5903. }
  5904. }
  5905. @media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
  5906. .offcanvas-lg {
  5907. transition: none;
  5908. }
  5909. }
  5910. @media (max-width: 991.98px) {
  5911. .offcanvas-lg.offcanvas-start {
  5912. top: 0;
  5913. left: 0;
  5914. width: var(--bs-offcanvas-width);
  5915. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5916. transform: translateX(-100%);
  5917. }
  5918. }
  5919. @media (max-width: 991.98px) {
  5920. .offcanvas-lg.offcanvas-end {
  5921. top: 0;
  5922. right: 0;
  5923. width: var(--bs-offcanvas-width);
  5924. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5925. transform: translateX(100%);
  5926. }
  5927. }
  5928. @media (max-width: 991.98px) {
  5929. .offcanvas-lg.offcanvas-top {
  5930. top: 0;
  5931. right: 0;
  5932. left: 0;
  5933. height: var(--bs-offcanvas-height);
  5934. max-height: 100%;
  5935. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5936. transform: translateY(-100%);
  5937. }
  5938. }
  5939. @media (max-width: 991.98px) {
  5940. .offcanvas-lg.offcanvas-bottom {
  5941. right: 0;
  5942. left: 0;
  5943. height: var(--bs-offcanvas-height);
  5944. max-height: 100%;
  5945. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5946. transform: translateY(100%);
  5947. }
  5948. }
  5949. @media (max-width: 991.98px) {
  5950. .offcanvas-lg.showing, .offcanvas-lg.show:not(.hiding) {
  5951. transform: none;
  5952. }
  5953. }
  5954. @media (max-width: 991.98px) {
  5955. .offcanvas-lg.showing, .offcanvas-lg.hiding, .offcanvas-lg.show {
  5956. visibility: visible;
  5957. }
  5958. }
  5959. @media (min-width: 992px) {
  5960. .offcanvas-lg {
  5961. --bs-offcanvas-height: auto;
  5962. --bs-offcanvas-border-width: 0;
  5963. background-color: transparent !important;
  5964. }
  5965. .offcanvas-lg .offcanvas-header {
  5966. display: none;
  5967. }
  5968. .offcanvas-lg .offcanvas-body {
  5969. display: flex;
  5970. flex-grow: 0;
  5971. padding: 0;
  5972. overflow-y: visible;
  5973. background-color: transparent !important;
  5974. }
  5975. }
  5976. @media (max-width: 1199.98px) {
  5977. .offcanvas-xl {
  5978. position: fixed;
  5979. bottom: 0;
  5980. z-index: var(--bs-offcanvas-zindex);
  5981. display: flex;
  5982. flex-direction: column;
  5983. max-width: 100%;
  5984. color: var(--bs-offcanvas-color);
  5985. visibility: hidden;
  5986. background-color: var(--bs-offcanvas-bg);
  5987. background-clip: padding-box;
  5988. outline: 0;
  5989. transition: transform 0.3s ease-in-out;
  5990. }
  5991. }
  5992. @media (max-width: 1199.98px) and (prefers-reduced-motion: reduce) {
  5993. .offcanvas-xl {
  5994. transition: none;
  5995. }
  5996. }
  5997. @media (max-width: 1199.98px) {
  5998. .offcanvas-xl.offcanvas-start {
  5999. top: 0;
  6000. left: 0;
  6001. width: var(--bs-offcanvas-width);
  6002. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6003. transform: translateX(-100%);
  6004. }
  6005. }
  6006. @media (max-width: 1199.98px) {
  6007. .offcanvas-xl.offcanvas-end {
  6008. top: 0;
  6009. right: 0;
  6010. width: var(--bs-offcanvas-width);
  6011. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6012. transform: translateX(100%);
  6013. }
  6014. }
  6015. @media (max-width: 1199.98px) {
  6016. .offcanvas-xl.offcanvas-top {
  6017. top: 0;
  6018. right: 0;
  6019. left: 0;
  6020. height: var(--bs-offcanvas-height);
  6021. max-height: 100%;
  6022. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6023. transform: translateY(-100%);
  6024. }
  6025. }
  6026. @media (max-width: 1199.98px) {
  6027. .offcanvas-xl.offcanvas-bottom {
  6028. right: 0;
  6029. left: 0;
  6030. height: var(--bs-offcanvas-height);
  6031. max-height: 100%;
  6032. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6033. transform: translateY(100%);
  6034. }
  6035. }
  6036. @media (max-width: 1199.98px) {
  6037. .offcanvas-xl.showing, .offcanvas-xl.show:not(.hiding) {
  6038. transform: none;
  6039. }
  6040. }
  6041. @media (max-width: 1199.98px) {
  6042. .offcanvas-xl.showing, .offcanvas-xl.hiding, .offcanvas-xl.show {
  6043. visibility: visible;
  6044. }
  6045. }
  6046. @media (min-width: 1200px) {
  6047. .offcanvas-xl {
  6048. --bs-offcanvas-height: auto;
  6049. --bs-offcanvas-border-width: 0;
  6050. background-color: transparent !important;
  6051. }
  6052. .offcanvas-xl .offcanvas-header {
  6053. display: none;
  6054. }
  6055. .offcanvas-xl .offcanvas-body {
  6056. display: flex;
  6057. flex-grow: 0;
  6058. padding: 0;
  6059. overflow-y: visible;
  6060. background-color: transparent !important;
  6061. }
  6062. }
  6063. @media (max-width: 1399.98px) {
  6064. .offcanvas-xxl {
  6065. position: fixed;
  6066. bottom: 0;
  6067. z-index: var(--bs-offcanvas-zindex);
  6068. display: flex;
  6069. flex-direction: column;
  6070. max-width: 100%;
  6071. color: var(--bs-offcanvas-color);
  6072. visibility: hidden;
  6073. background-color: var(--bs-offcanvas-bg);
  6074. background-clip: padding-box;
  6075. outline: 0;
  6076. transition: transform 0.3s ease-in-out;
  6077. }
  6078. }
  6079. @media (max-width: 1399.98px) and (prefers-reduced-motion: reduce) {
  6080. .offcanvas-xxl {
  6081. transition: none;
  6082. }
  6083. }
  6084. @media (max-width: 1399.98px) {
  6085. .offcanvas-xxl.offcanvas-start {
  6086. top: 0;
  6087. left: 0;
  6088. width: var(--bs-offcanvas-width);
  6089. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6090. transform: translateX(-100%);
  6091. }
  6092. }
  6093. @media (max-width: 1399.98px) {
  6094. .offcanvas-xxl.offcanvas-end {
  6095. top: 0;
  6096. right: 0;
  6097. width: var(--bs-offcanvas-width);
  6098. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6099. transform: translateX(100%);
  6100. }
  6101. }
  6102. @media (max-width: 1399.98px) {
  6103. .offcanvas-xxl.offcanvas-top {
  6104. top: 0;
  6105. right: 0;
  6106. left: 0;
  6107. height: var(--bs-offcanvas-height);
  6108. max-height: 100%;
  6109. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6110. transform: translateY(-100%);
  6111. }
  6112. }
  6113. @media (max-width: 1399.98px) {
  6114. .offcanvas-xxl.offcanvas-bottom {
  6115. right: 0;
  6116. left: 0;
  6117. height: var(--bs-offcanvas-height);
  6118. max-height: 100%;
  6119. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6120. transform: translateY(100%);
  6121. }
  6122. }
  6123. @media (max-width: 1399.98px) {
  6124. .offcanvas-xxl.showing, .offcanvas-xxl.show:not(.hiding) {
  6125. transform: none;
  6126. }
  6127. }
  6128. @media (max-width: 1399.98px) {
  6129. .offcanvas-xxl.showing, .offcanvas-xxl.hiding, .offcanvas-xxl.show {
  6130. visibility: visible;
  6131. }
  6132. }
  6133. @media (min-width: 1400px) {
  6134. .offcanvas-xxl {
  6135. --bs-offcanvas-height: auto;
  6136. --bs-offcanvas-border-width: 0;
  6137. background-color: transparent !important;
  6138. }
  6139. .offcanvas-xxl .offcanvas-header {
  6140. display: none;
  6141. }
  6142. .offcanvas-xxl .offcanvas-body {
  6143. display: flex;
  6144. flex-grow: 0;
  6145. padding: 0;
  6146. overflow-y: visible;
  6147. background-color: transparent !important;
  6148. }
  6149. }
  6150. .offcanvas {
  6151. position: fixed;
  6152. bottom: 0;
  6153. z-index: var(--bs-offcanvas-zindex);
  6154. display: flex;
  6155. flex-direction: column;
  6156. max-width: 100%;
  6157. color: var(--bs-offcanvas-color);
  6158. visibility: hidden;
  6159. background-color: var(--bs-offcanvas-bg);
  6160. background-clip: padding-box;
  6161. outline: 0;
  6162. transition: transform 0.3s ease-in-out;
  6163. }
  6164. @media (prefers-reduced-motion: reduce) {
  6165. .offcanvas {
  6166. transition: none;
  6167. }
  6168. }
  6169. .offcanvas.offcanvas-start {
  6170. top: 0;
  6171. left: 0;
  6172. width: var(--bs-offcanvas-width);
  6173. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6174. transform: translateX(-100%);
  6175. }
  6176. .offcanvas.offcanvas-end {
  6177. top: 0;
  6178. right: 0;
  6179. width: var(--bs-offcanvas-width);
  6180. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6181. transform: translateX(100%);
  6182. }
  6183. .offcanvas.offcanvas-top {
  6184. top: 0;
  6185. right: 0;
  6186. left: 0;
  6187. height: var(--bs-offcanvas-height);
  6188. max-height: 100%;
  6189. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6190. transform: translateY(-100%);
  6191. }
  6192. .offcanvas.offcanvas-bottom {
  6193. right: 0;
  6194. left: 0;
  6195. height: var(--bs-offcanvas-height);
  6196. max-height: 100%;
  6197. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6198. transform: translateY(100%);
  6199. }
  6200. .offcanvas.showing, .offcanvas.show:not(.hiding) {
  6201. transform: none;
  6202. }
  6203. .offcanvas.showing, .offcanvas.hiding, .offcanvas.show {
  6204. visibility: visible;
  6205. }
  6206. .offcanvas-backdrop {
  6207. position: fixed;
  6208. top: 0;
  6209. left: 0;
  6210. z-index: 1040;
  6211. width: 100vw;
  6212. height: 100vh;
  6213. background-color: #000;
  6214. }
  6215. .offcanvas-backdrop.fade {
  6216. opacity: 0;
  6217. }
  6218. .offcanvas-backdrop.show {
  6219. opacity: 0.5;
  6220. }
  6221. .offcanvas-header {
  6222. display: flex;
  6223. align-items: center;
  6224. justify-content: space-between;
  6225. padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  6226. }
  6227. .offcanvas-header .btn-close {
  6228. padding: calc(var(--bs-offcanvas-padding-y) * 0.5) calc(var(--bs-offcanvas-padding-x) * 0.5);
  6229. margin-top: calc(-0.5 * var(--bs-offcanvas-padding-y));
  6230. margin-right: calc(-0.5 * var(--bs-offcanvas-padding-x));
  6231. margin-bottom: calc(-0.5 * var(--bs-offcanvas-padding-y));
  6232. }
  6233. .offcanvas-title {
  6234. margin-bottom: 0;
  6235. line-height: 1.5;
  6236. }
  6237. .offcanvas-body {
  6238. flex-grow: 1;
  6239. padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  6240. overflow-y: auto;
  6241. }
  6242. .placeholder {
  6243. display: inline-block;
  6244. min-height: 1em;
  6245. vertical-align: middle;
  6246. cursor: wait;
  6247. background-color: currentcolor;
  6248. opacity: 0.5;
  6249. }
  6250. .placeholder.btn::before {
  6251. display: inline-block;
  6252. content: "";
  6253. }
  6254. .placeholder-xs {
  6255. min-height: 0.6em;
  6256. }
  6257. .placeholder-sm {
  6258. min-height: 0.8em;
  6259. }
  6260. .placeholder-lg {
  6261. min-height: 1.2em;
  6262. }
  6263. .placeholder-glow .placeholder {
  6264. animation: placeholder-glow 2s ease-in-out infinite;
  6265. }
  6266. @keyframes placeholder-glow {
  6267. 50% {
  6268. opacity: 0.2;
  6269. }
  6270. }
  6271. .placeholder-wave {
  6272. -webkit-mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  6273. mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  6274. -webkit-mask-size: 200% 100%;
  6275. mask-size: 200% 100%;
  6276. animation: placeholder-wave 2s linear infinite;
  6277. }
  6278. @keyframes placeholder-wave {
  6279. 100% {
  6280. -webkit-mask-position: -200% 0%;
  6281. mask-position: -200% 0%;
  6282. }
  6283. }
  6284. .clearfix::after {
  6285. display: block;
  6286. clear: both;
  6287. content: "";
  6288. }
  6289. .text-bg-primary {
  6290. color: #fff !important;
  6291. background-color: RGBA(13, 110, 253, var(--bs-bg-opacity, 1)) !important;
  6292. }
  6293. .text-bg-secondary {
  6294. color: #fff !important;
  6295. background-color: RGBA(108, 117, 125, var(--bs-bg-opacity, 1)) !important;
  6296. }
  6297. .text-bg-success {
  6298. color: #fff !important;
  6299. background-color: RGBA(25, 135, 84, var(--bs-bg-opacity, 1)) !important;
  6300. }
  6301. .text-bg-info {
  6302. color: #000 !important;
  6303. background-color: RGBA(13, 202, 240, var(--bs-bg-opacity, 1)) !important;
  6304. }
  6305. .text-bg-warning {
  6306. color: #000 !important;
  6307. background-color: RGBA(255, 193, 7, var(--bs-bg-opacity, 1)) !important;
  6308. }
  6309. .text-bg-danger {
  6310. color: #fff !important;
  6311. background-color: RGBA(220, 53, 69, var(--bs-bg-opacity, 1)) !important;
  6312. }
  6313. .text-bg-light {
  6314. color: #000 !important;
  6315. background-color: RGBA(248, 249, 250, var(--bs-bg-opacity, 1)) !important;
  6316. }
  6317. .text-bg-dark {
  6318. color: #fff !important;
  6319. background-color: RGBA(33, 37, 41, var(--bs-bg-opacity, 1)) !important;
  6320. }
  6321. .link-primary {
  6322. color: #0d6efd !important;
  6323. }
  6324. .link-primary:hover, .link-primary:focus {
  6325. color: #0a58ca !important;
  6326. }
  6327. .link-secondary {
  6328. color: #6c757d !important;
  6329. }
  6330. .link-secondary:hover, .link-secondary:focus {
  6331. color: #565e64 !important;
  6332. }
  6333. .link-success {
  6334. color: #198754 !important;
  6335. }
  6336. .link-success:hover, .link-success:focus {
  6337. color: #146c43 !important;
  6338. }
  6339. .link-info {
  6340. color: #0dcaf0 !important;
  6341. }
  6342. .link-info:hover, .link-info:focus {
  6343. color: #3dd5f3 !important;
  6344. }
  6345. .link-warning {
  6346. color: #ffc107 !important;
  6347. }
  6348. .link-warning:hover, .link-warning:focus {
  6349. color: #ffcd39 !important;
  6350. }
  6351. .link-danger {
  6352. color: #dc3545 !important;
  6353. }
  6354. .link-danger:hover, .link-danger:focus {
  6355. color: #b02a37 !important;
  6356. }
  6357. .link-light {
  6358. color: #f8f9fa !important;
  6359. }
  6360. .link-light:hover, .link-light:focus {
  6361. color: #f9fafb !important;
  6362. }
  6363. .link-dark {
  6364. color: #212529 !important;
  6365. }
  6366. .link-dark:hover, .link-dark:focus {
  6367. color: #1a1e21 !important;
  6368. }
  6369. .ratio {
  6370. position: relative;
  6371. width: 100%;
  6372. }
  6373. .ratio::before {
  6374. display: block;
  6375. padding-top: var(--bs-aspect-ratio);
  6376. content: "";
  6377. }
  6378. .ratio > * {
  6379. position: absolute;
  6380. top: 0;
  6381. left: 0;
  6382. width: 100%;
  6383. height: 100%;
  6384. }
  6385. .ratio-1x1 {
  6386. --bs-aspect-ratio: 100%;
  6387. }
  6388. .ratio-4x3 {
  6389. --bs-aspect-ratio: 75%;
  6390. }
  6391. .ratio-16x9 {
  6392. --bs-aspect-ratio: 56.25%;
  6393. }
  6394. .ratio-21x9 {
  6395. --bs-aspect-ratio: 42.8571428571%;
  6396. }
  6397. .fixed-top, .sb-nav-fixed #layoutSidenav #layoutSidenav_nav, .sb-nav-fixed .sb-topnav {
  6398. position: fixed;
  6399. top: 0;
  6400. right: 0;
  6401. left: 0;
  6402. z-index: 1030;
  6403. }
  6404. .fixed-bottom {
  6405. position: fixed;
  6406. right: 0;
  6407. bottom: 0;
  6408. left: 0;
  6409. z-index: 1030;
  6410. }
  6411. .sticky-top {
  6412. position: sticky;
  6413. top: 0;
  6414. z-index: 1020;
  6415. }
  6416. .sticky-bottom {
  6417. position: sticky;
  6418. bottom: 0;
  6419. z-index: 1020;
  6420. }
  6421. @media (min-width: 576px) {
  6422. .sticky-sm-top {
  6423. position: sticky;
  6424. top: 0;
  6425. z-index: 1020;
  6426. }
  6427. .sticky-sm-bottom {
  6428. position: sticky;
  6429. bottom: 0;
  6430. z-index: 1020;
  6431. }
  6432. }
  6433. @media (min-width: 768px) {
  6434. .sticky-md-top {
  6435. position: sticky;
  6436. top: 0;
  6437. z-index: 1020;
  6438. }
  6439. .sticky-md-bottom {
  6440. position: sticky;
  6441. bottom: 0;
  6442. z-index: 1020;
  6443. }
  6444. }
  6445. @media (min-width: 992px) {
  6446. .sticky-lg-top {
  6447. position: sticky;
  6448. top: 0;
  6449. z-index: 1020;
  6450. }
  6451. .sticky-lg-bottom {
  6452. position: sticky;
  6453. bottom: 0;
  6454. z-index: 1020;
  6455. }
  6456. }
  6457. @media (min-width: 1200px) {
  6458. .sticky-xl-top {
  6459. position: sticky;
  6460. top: 0;
  6461. z-index: 1020;
  6462. }
  6463. .sticky-xl-bottom {
  6464. position: sticky;
  6465. bottom: 0;
  6466. z-index: 1020;
  6467. }
  6468. }
  6469. @media (min-width: 1400px) {
  6470. .sticky-xxl-top {
  6471. position: sticky;
  6472. top: 0;
  6473. z-index: 1020;
  6474. }
  6475. .sticky-xxl-bottom {
  6476. position: sticky;
  6477. bottom: 0;
  6478. z-index: 1020;
  6479. }
  6480. }
  6481. .hstack {
  6482. display: flex;
  6483. flex-direction: row;
  6484. align-items: center;
  6485. align-self: stretch;
  6486. }
  6487. .vstack {
  6488. display: flex;
  6489. flex: 1 1 auto;
  6490. flex-direction: column;
  6491. align-self: stretch;
  6492. }
  6493. .visually-hidden,
  6494. .visually-hidden-focusable:not(:focus):not(:focus-within) {
  6495. position: absolute !important;
  6496. width: 1px !important;
  6497. height: 1px !important;
  6498. padding: 0 !important;
  6499. margin: -1px !important;
  6500. overflow: hidden !important;
  6501. clip: rect(0, 0, 0, 0) !important;
  6502. white-space: nowrap !important;
  6503. border: 0 !important;
  6504. }
  6505. .stretched-link::after {
  6506. position: absolute;
  6507. top: 0;
  6508. right: 0;
  6509. bottom: 0;
  6510. left: 0;
  6511. z-index: 1;
  6512. content: "";
  6513. }
  6514. .text-truncate {
  6515. overflow: hidden;
  6516. text-overflow: ellipsis;
  6517. white-space: nowrap;
  6518. }
  6519. .vr {
  6520. display: inline-block;
  6521. align-self: stretch;
  6522. width: 1px;
  6523. min-height: 1em;
  6524. background-color: currentcolor;
  6525. opacity: 0.25;
  6526. }
  6527. .align-baseline {
  6528. vertical-align: baseline !important;
  6529. }
  6530. .align-top {
  6531. vertical-align: top !important;
  6532. }
  6533. .align-middle {
  6534. vertical-align: middle !important;
  6535. }
  6536. .align-bottom {
  6537. vertical-align: bottom !important;
  6538. }
  6539. .align-text-bottom {
  6540. vertical-align: text-bottom !important;
  6541. }
  6542. .align-text-top {
  6543. vertical-align: text-top !important;
  6544. }
  6545. .float-start {
  6546. float: left !important;
  6547. }
  6548. .float-end {
  6549. float: right !important;
  6550. }
  6551. .float-none {
  6552. float: none !important;
  6553. }
  6554. .opacity-0 {
  6555. opacity: 0 !important;
  6556. }
  6557. .opacity-25 {
  6558. opacity: 0.25 !important;
  6559. }
  6560. .opacity-50 {
  6561. opacity: 0.5 !important;
  6562. }
  6563. .opacity-75 {
  6564. opacity: 0.75 !important;
  6565. }
  6566. .opacity-100 {
  6567. opacity: 1 !important;
  6568. }
  6569. .overflow-auto {
  6570. overflow: auto !important;
  6571. }
  6572. .overflow-hidden {
  6573. overflow: hidden !important;
  6574. }
  6575. .overflow-visible {
  6576. overflow: visible !important;
  6577. }
  6578. .overflow-scroll {
  6579. overflow: scroll !important;
  6580. }
  6581. .d-inline {
  6582. display: inline !important;
  6583. }
  6584. .d-inline-block {
  6585. display: inline-block !important;
  6586. }
  6587. .d-block {
  6588. display: block !important;
  6589. }
  6590. .d-grid {
  6591. display: grid !important;
  6592. }
  6593. .d-table {
  6594. display: table !important;
  6595. }
  6596. .d-table-row {
  6597. display: table-row !important;
  6598. }
  6599. .d-table-cell {
  6600. display: table-cell !important;
  6601. }
  6602. .d-flex {
  6603. display: flex !important;
  6604. }
  6605. .d-inline-flex {
  6606. display: inline-flex !important;
  6607. }
  6608. .d-none {
  6609. display: none !important;
  6610. }
  6611. .shadow {
  6612. box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  6613. }
  6614. .shadow-sm {
  6615. box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  6616. }
  6617. .shadow-lg {
  6618. box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  6619. }
  6620. .shadow-none {
  6621. box-shadow: none !important;
  6622. }
  6623. .position-static {
  6624. position: static !important;
  6625. }
  6626. .position-relative {
  6627. position: relative !important;
  6628. }
  6629. .position-absolute {
  6630. position: absolute !important;
  6631. }
  6632. .position-fixed {
  6633. position: fixed !important;
  6634. }
  6635. .position-sticky {
  6636. position: sticky !important;
  6637. }
  6638. .top-0 {
  6639. top: 0 !important;
  6640. }
  6641. .top-50 {
  6642. top: 50% !important;
  6643. }
  6644. .top-100 {
  6645. top: 100% !important;
  6646. }
  6647. .bottom-0 {
  6648. bottom: 0 !important;
  6649. }
  6650. .bottom-50 {
  6651. bottom: 50% !important;
  6652. }
  6653. .bottom-100 {
  6654. bottom: 100% !important;
  6655. }
  6656. .start-0 {
  6657. left: 0 !important;
  6658. }
  6659. .start-50 {
  6660. left: 50% !important;
  6661. }
  6662. .start-100 {
  6663. left: 100% !important;
  6664. }
  6665. .end-0 {
  6666. right: 0 !important;
  6667. }
  6668. .end-50 {
  6669. right: 50% !important;
  6670. }
  6671. .end-100 {
  6672. right: 100% !important;
  6673. }
  6674. .translate-middle {
  6675. transform: translate(-50%, -50%) !important;
  6676. }
  6677. .translate-middle-x {
  6678. transform: translateX(-50%) !important;
  6679. }
  6680. .translate-middle-y {
  6681. transform: translateY(-50%) !important;
  6682. }
  6683. .border {
  6684. border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  6685. }
  6686. .border-0 {
  6687. border: 0 !important;
  6688. }
  6689. .border-top {
  6690. border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  6691. }
  6692. .border-top-0 {
  6693. border-top: 0 !important;
  6694. }
  6695. .border-end {
  6696. border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  6697. }
  6698. .border-end-0 {
  6699. border-right: 0 !important;
  6700. }
  6701. .border-bottom {
  6702. border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  6703. }
  6704. .border-bottom-0 {
  6705. border-bottom: 0 !important;
  6706. }
  6707. .border-start {
  6708. border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  6709. }
  6710. .border-start-0 {
  6711. border-left: 0 !important;
  6712. }
  6713. .border-primary {
  6714. --bs-border-opacity: 1;
  6715. border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
  6716. }
  6717. .border-secondary {
  6718. --bs-border-opacity: 1;
  6719. border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
  6720. }
  6721. .border-success {
  6722. --bs-border-opacity: 1;
  6723. border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
  6724. }
  6725. .border-info {
  6726. --bs-border-opacity: 1;
  6727. border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
  6728. }
  6729. .border-warning {
  6730. --bs-border-opacity: 1;
  6731. border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
  6732. }
  6733. .border-danger {
  6734. --bs-border-opacity: 1;
  6735. border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
  6736. }
  6737. .border-light {
  6738. --bs-border-opacity: 1;
  6739. border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
  6740. }
  6741. .border-dark {
  6742. --bs-border-opacity: 1;
  6743. border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
  6744. }
  6745. .border-white {
  6746. --bs-border-opacity: 1;
  6747. border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
  6748. }
  6749. .border-1 {
  6750. --bs-border-width: 1px;
  6751. }
  6752. .border-2 {
  6753. --bs-border-width: 2px;
  6754. }
  6755. .border-3 {
  6756. --bs-border-width: 3px;
  6757. }
  6758. .border-4 {
  6759. --bs-border-width: 4px;
  6760. }
  6761. .border-5 {
  6762. --bs-border-width: 5px;
  6763. }
  6764. .border-opacity-10 {
  6765. --bs-border-opacity: 0.1;
  6766. }
  6767. .border-opacity-25 {
  6768. --bs-border-opacity: 0.25;
  6769. }
  6770. .border-opacity-50 {
  6771. --bs-border-opacity: 0.5;
  6772. }
  6773. .border-opacity-75 {
  6774. --bs-border-opacity: 0.75;
  6775. }
  6776. .border-opacity-100 {
  6777. --bs-border-opacity: 1;
  6778. }
  6779. .w-25 {
  6780. width: 25% !important;
  6781. }
  6782. .w-50 {
  6783. width: 50% !important;
  6784. }
  6785. .w-75 {
  6786. width: 75% !important;
  6787. }
  6788. .w-100 {
  6789. width: 100% !important;
  6790. }
  6791. .w-auto {
  6792. width: auto !important;
  6793. }
  6794. .mw-100 {
  6795. max-width: 100% !important;
  6796. }
  6797. .vw-100 {
  6798. width: 100vw !important;
  6799. }
  6800. .min-vw-100 {
  6801. min-width: 100vw !important;
  6802. }
  6803. .h-25 {
  6804. height: 25% !important;
  6805. }
  6806. .h-50 {
  6807. height: 50% !important;
  6808. }
  6809. .h-75 {
  6810. height: 75% !important;
  6811. }
  6812. .h-100 {
  6813. height: 100% !important;
  6814. }
  6815. .h-auto {
  6816. height: auto !important;
  6817. }
  6818. .mh-100 {
  6819. max-height: 100% !important;
  6820. }
  6821. .vh-100 {
  6822. height: 100vh !important;
  6823. }
  6824. .min-vh-100 {
  6825. min-height: 100vh !important;
  6826. }
  6827. .flex-fill {
  6828. flex: 1 1 auto !important;
  6829. }
  6830. .flex-row {
  6831. flex-direction: row !important;
  6832. }
  6833. .flex-column {
  6834. flex-direction: column !important;
  6835. }
  6836. .flex-row-reverse {
  6837. flex-direction: row-reverse !important;
  6838. }
  6839. .flex-column-reverse {
  6840. flex-direction: column-reverse !important;
  6841. }
  6842. .flex-grow-0 {
  6843. flex-grow: 0 !important;
  6844. }
  6845. .flex-grow-1 {
  6846. flex-grow: 1 !important;
  6847. }
  6848. .flex-shrink-0 {
  6849. flex-shrink: 0 !important;
  6850. }
  6851. .flex-shrink-1 {
  6852. flex-shrink: 1 !important;
  6853. }
  6854. .flex-wrap {
  6855. flex-wrap: wrap !important;
  6856. }
  6857. .flex-nowrap {
  6858. flex-wrap: nowrap !important;
  6859. }
  6860. .flex-wrap-reverse {
  6861. flex-wrap: wrap-reverse !important;
  6862. }
  6863. .justify-content-start {
  6864. justify-content: flex-start !important;
  6865. }
  6866. .justify-content-end {
  6867. justify-content: flex-end !important;
  6868. }
  6869. .justify-content-center {
  6870. justify-content: center !important;
  6871. }
  6872. .justify-content-between {
  6873. justify-content: space-between !important;
  6874. }
  6875. .justify-content-around {
  6876. justify-content: space-around !important;
  6877. }
  6878. .justify-content-evenly {
  6879. justify-content: space-evenly !important;
  6880. }
  6881. .align-items-start {
  6882. align-items: flex-start !important;
  6883. }
  6884. .align-items-end {
  6885. align-items: flex-end !important;
  6886. }
  6887. .align-items-center {
  6888. align-items: center !important;
  6889. }
  6890. .align-items-baseline {
  6891. align-items: baseline !important;
  6892. }
  6893. .align-items-stretch {
  6894. align-items: stretch !important;
  6895. }
  6896. .align-content-start {
  6897. align-content: flex-start !important;
  6898. }
  6899. .align-content-end {
  6900. align-content: flex-end !important;
  6901. }
  6902. .align-content-center {
  6903. align-content: center !important;
  6904. }
  6905. .align-content-between {
  6906. align-content: space-between !important;
  6907. }
  6908. .align-content-around {
  6909. align-content: space-around !important;
  6910. }
  6911. .align-content-stretch {
  6912. align-content: stretch !important;
  6913. }
  6914. .align-self-auto {
  6915. align-self: auto !important;
  6916. }
  6917. .align-self-start {
  6918. align-self: flex-start !important;
  6919. }
  6920. .align-self-end {
  6921. align-self: flex-end !important;
  6922. }
  6923. .align-self-center {
  6924. align-self: center !important;
  6925. }
  6926. .align-self-baseline {
  6927. align-self: baseline !important;
  6928. }
  6929. .align-self-stretch {
  6930. align-self: stretch !important;
  6931. }
  6932. .order-first {
  6933. order: -1 !important;
  6934. }
  6935. .order-0 {
  6936. order: 0 !important;
  6937. }
  6938. .order-1 {
  6939. order: 1 !important;
  6940. }
  6941. .order-2 {
  6942. order: 2 !important;
  6943. }
  6944. .order-3 {
  6945. order: 3 !important;
  6946. }
  6947. .order-4 {
  6948. order: 4 !important;
  6949. }
  6950. .order-5 {
  6951. order: 5 !important;
  6952. }
  6953. .order-last {
  6954. order: 6 !important;
  6955. }
  6956. .m-0 {
  6957. margin: 0 !important;
  6958. }
  6959. .m-1 {
  6960. margin: 0.25rem !important;
  6961. }
  6962. .m-2 {
  6963. margin: 0.5rem !important;
  6964. }
  6965. .m-3 {
  6966. margin: 1rem !important;
  6967. }
  6968. .m-4 {
  6969. margin: 1.5rem !important;
  6970. }
  6971. .m-5 {
  6972. margin: 3rem !important;
  6973. }
  6974. .m-auto {
  6975. margin: auto !important;
  6976. }
  6977. .mx-0 {
  6978. margin-right: 0 !important;
  6979. margin-left: 0 !important;
  6980. }
  6981. .mx-1 {
  6982. margin-right: 0.25rem !important;
  6983. margin-left: 0.25rem !important;
  6984. }
  6985. .mx-2 {
  6986. margin-right: 0.5rem !important;
  6987. margin-left: 0.5rem !important;
  6988. }
  6989. .mx-3 {
  6990. margin-right: 1rem !important;
  6991. margin-left: 1rem !important;
  6992. }
  6993. .mx-4 {
  6994. margin-right: 1.5rem !important;
  6995. margin-left: 1.5rem !important;
  6996. }
  6997. .mx-5 {
  6998. margin-right: 3rem !important;
  6999. margin-left: 3rem !important;
  7000. }
  7001. .mx-auto {
  7002. margin-right: auto !important;
  7003. margin-left: auto !important;
  7004. }
  7005. .my-0 {
  7006. margin-top: 0 !important;
  7007. margin-bottom: 0 !important;
  7008. }
  7009. .my-1 {
  7010. margin-top: 0.25rem !important;
  7011. margin-bottom: 0.25rem !important;
  7012. }
  7013. .my-2 {
  7014. margin-top: 0.5rem !important;
  7015. margin-bottom: 0.5rem !important;
  7016. }
  7017. .my-3 {
  7018. margin-top: 1rem !important;
  7019. margin-bottom: 1rem !important;
  7020. }
  7021. .my-4 {
  7022. margin-top: 1.5rem !important;
  7023. margin-bottom: 1.5rem !important;
  7024. }
  7025. .my-5 {
  7026. margin-top: 3rem !important;
  7027. margin-bottom: 3rem !important;
  7028. }
  7029. .my-auto {
  7030. margin-top: auto !important;
  7031. margin-bottom: auto !important;
  7032. }
  7033. .mt-0 {
  7034. margin-top: 0 !important;
  7035. }
  7036. .mt-1 {
  7037. margin-top: 0.25rem !important;
  7038. }
  7039. .mt-2 {
  7040. margin-top: 0.5rem !important;
  7041. }
  7042. .mt-3 {
  7043. margin-top: 1rem !important;
  7044. }
  7045. .mt-4 {
  7046. margin-top: 1.5rem !important;
  7047. }
  7048. .mt-5 {
  7049. margin-top: 3rem !important;
  7050. }
  7051. .mt-auto {
  7052. margin-top: auto !important;
  7053. }
  7054. .me-0 {
  7055. margin-right: 0 !important;
  7056. }
  7057. .me-1 {
  7058. margin-right: 0.25rem !important;
  7059. }
  7060. .me-2 {
  7061. margin-right: 0.5rem !important;
  7062. }
  7063. .me-3 {
  7064. margin-right: 1rem !important;
  7065. }
  7066. .me-4 {
  7067. margin-right: 1.5rem !important;
  7068. }
  7069. .me-5 {
  7070. margin-right: 3rem !important;
  7071. }
  7072. .me-auto {
  7073. margin-right: auto !important;
  7074. }
  7075. .mb-0 {
  7076. margin-bottom: 0 !important;
  7077. }
  7078. .mb-1 {
  7079. margin-bottom: 0.25rem !important;
  7080. }
  7081. .mb-2 {
  7082. margin-bottom: 0.5rem !important;
  7083. }
  7084. .mb-3 {
  7085. margin-bottom: 1rem !important;
  7086. }
  7087. .mb-4 {
  7088. margin-bottom: 1.5rem !important;
  7089. }
  7090. .mb-5 {
  7091. margin-bottom: 3rem !important;
  7092. }
  7093. .mb-auto {
  7094. margin-bottom: auto !important;
  7095. }
  7096. .ms-0 {
  7097. margin-left: 0 !important;
  7098. }
  7099. .ms-1 {
  7100. margin-left: 0.25rem !important;
  7101. }
  7102. .ms-2 {
  7103. margin-left: 0.5rem !important;
  7104. }
  7105. .ms-3 {
  7106. margin-left: 1rem !important;
  7107. }
  7108. .ms-4 {
  7109. margin-left: 1.5rem !important;
  7110. }
  7111. .ms-5 {
  7112. margin-left: 3rem !important;
  7113. }
  7114. .ms-auto {
  7115. margin-left: auto !important;
  7116. }
  7117. .p-0 {
  7118. padding: 0 !important;
  7119. }
  7120. .p-1 {
  7121. padding: 0.25rem !important;
  7122. }
  7123. .p-2 {
  7124. padding: 0.5rem !important;
  7125. }
  7126. .p-3 {
  7127. padding: 1rem !important;
  7128. }
  7129. .p-4 {
  7130. padding: 1.5rem !important;
  7131. }
  7132. .p-5 {
  7133. padding: 3rem !important;
  7134. }
  7135. .px-0 {
  7136. padding-right: 0 !important;
  7137. padding-left: 0 !important;
  7138. }
  7139. .px-1 {
  7140. padding-right: 0.25rem !important;
  7141. padding-left: 0.25rem !important;
  7142. }
  7143. .px-2 {
  7144. padding-right: 0.5rem !important;
  7145. padding-left: 0.5rem !important;
  7146. }
  7147. .px-3 {
  7148. padding-right: 1rem !important;
  7149. padding-left: 1rem !important;
  7150. }
  7151. .px-4 {
  7152. padding-right: 1.5rem !important;
  7153. padding-left: 1.5rem !important;
  7154. }
  7155. .px-5 {
  7156. padding-right: 3rem !important;
  7157. padding-left: 3rem !important;
  7158. }
  7159. .py-0 {
  7160. padding-top: 0 !important;
  7161. padding-bottom: 0 !important;
  7162. }
  7163. .py-1 {
  7164. padding-top: 0.25rem !important;
  7165. padding-bottom: 0.25rem !important;
  7166. }
  7167. .py-2 {
  7168. padding-top: 0.5rem !important;
  7169. padding-bottom: 0.5rem !important;
  7170. }
  7171. .py-3 {
  7172. padding-top: 1rem !important;
  7173. padding-bottom: 1rem !important;
  7174. }
  7175. .py-4 {
  7176. padding-top: 1.5rem !important;
  7177. padding-bottom: 1.5rem !important;
  7178. }
  7179. .py-5 {
  7180. padding-top: 3rem !important;
  7181. padding-bottom: 3rem !important;
  7182. }
  7183. .pt-0 {
  7184. padding-top: 0 !important;
  7185. }
  7186. .pt-1 {
  7187. padding-top: 0.25rem !important;
  7188. }
  7189. .pt-2 {
  7190. padding-top: 0.5rem !important;
  7191. }
  7192. .pt-3 {
  7193. padding-top: 1rem !important;
  7194. }
  7195. .pt-4 {
  7196. padding-top: 1.5rem !important;
  7197. }
  7198. .pt-5 {
  7199. padding-top: 3rem !important;
  7200. }
  7201. .pe-0 {
  7202. padding-right: 0 !important;
  7203. }
  7204. .pe-1 {
  7205. padding-right: 0.25rem !important;
  7206. }
  7207. .pe-2 {
  7208. padding-right: 0.5rem !important;
  7209. }
  7210. .pe-3 {
  7211. padding-right: 1rem !important;
  7212. }
  7213. .pe-4 {
  7214. padding-right: 1.5rem !important;
  7215. }
  7216. .pe-5 {
  7217. padding-right: 3rem !important;
  7218. }
  7219. .pb-0 {
  7220. padding-bottom: 0 !important;
  7221. }
  7222. .pb-1 {
  7223. padding-bottom: 0.25rem !important;
  7224. }
  7225. .pb-2 {
  7226. padding-bottom: 0.5rem !important;
  7227. }
  7228. .pb-3 {
  7229. padding-bottom: 1rem !important;
  7230. }
  7231. .pb-4 {
  7232. padding-bottom: 1.5rem !important;
  7233. }
  7234. .pb-5 {
  7235. padding-bottom: 3rem !important;
  7236. }
  7237. .ps-0 {
  7238. padding-left: 0 !important;
  7239. }
  7240. .ps-1 {
  7241. padding-left: 0.25rem !important;
  7242. }
  7243. .ps-2 {
  7244. padding-left: 0.5rem !important;
  7245. }
  7246. .ps-3 {
  7247. padding-left: 1rem !important;
  7248. }
  7249. .ps-4 {
  7250. padding-left: 1.5rem !important;
  7251. }
  7252. .ps-5 {
  7253. padding-left: 3rem !important;
  7254. }
  7255. .gap-0 {
  7256. gap: 0 !important;
  7257. }
  7258. .gap-1 {
  7259. gap: 0.25rem !important;
  7260. }
  7261. .gap-2 {
  7262. gap: 0.5rem !important;
  7263. }
  7264. .gap-3 {
  7265. gap: 1rem !important;
  7266. }
  7267. .gap-4 {
  7268. gap: 1.5rem !important;
  7269. }
  7270. .gap-5 {
  7271. gap: 3rem !important;
  7272. }
  7273. .font-monospace {
  7274. font-family: var(--bs-font-monospace) !important;
  7275. }
  7276. .fs-1 {
  7277. font-size: calc(1.375rem + 1.5vw) !important;
  7278. }
  7279. .fs-2 {
  7280. font-size: calc(1.325rem + 0.9vw) !important;
  7281. }
  7282. .fs-3 {
  7283. font-size: calc(1.3rem + 0.6vw) !important;
  7284. }
  7285. .fs-4 {
  7286. font-size: calc(1.275rem + 0.3vw) !important;
  7287. }
  7288. .fs-5 {
  7289. font-size: 1.25rem !important;
  7290. }
  7291. .fs-6 {
  7292. font-size: 1rem !important;
  7293. }
  7294. .fst-italic {
  7295. font-style: italic !important;
  7296. }
  7297. .fst-normal {
  7298. font-style: normal !important;
  7299. }
  7300. .fw-light {
  7301. font-weight: 300 !important;
  7302. }
  7303. .fw-lighter {
  7304. font-weight: lighter !important;
  7305. }
  7306. .fw-normal {
  7307. font-weight: 400 !important;
  7308. }
  7309. .fw-bold {
  7310. font-weight: 700 !important;
  7311. }
  7312. .fw-semibold {
  7313. font-weight: 600 !important;
  7314. }
  7315. .fw-bolder {
  7316. font-weight: bolder !important;
  7317. }
  7318. .lh-1 {
  7319. line-height: 1 !important;
  7320. }
  7321. .lh-sm {
  7322. line-height: 1.25 !important;
  7323. }
  7324. .lh-base {
  7325. line-height: 1.5 !important;
  7326. }
  7327. .lh-lg {
  7328. line-height: 2 !important;
  7329. }
  7330. .text-start {
  7331. text-align: left !important;
  7332. }
  7333. .text-end {
  7334. text-align: right !important;
  7335. }
  7336. .text-center {
  7337. text-align: center !important;
  7338. }
  7339. .text-decoration-none {
  7340. text-decoration: none !important;
  7341. }
  7342. .text-decoration-underline {
  7343. text-decoration: underline !important;
  7344. }
  7345. .text-decoration-line-through {
  7346. text-decoration: line-through !important;
  7347. }
  7348. .text-lowercase {
  7349. text-transform: lowercase !important;
  7350. }
  7351. .text-uppercase {
  7352. text-transform: uppercase !important;
  7353. }
  7354. .text-capitalize {
  7355. text-transform: capitalize !important;
  7356. }
  7357. .text-wrap {
  7358. white-space: normal !important;
  7359. }
  7360. .text-nowrap {
  7361. white-space: nowrap !important;
  7362. }
  7363. /* rtl:begin:remove */
  7364. .text-break {
  7365. word-wrap: break-word !important;
  7366. word-break: break-word !important;
  7367. }
  7368. /* rtl:end:remove */
  7369. .text-primary {
  7370. --bs-text-opacity: 1;
  7371. color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
  7372. }
  7373. .text-secondary {
  7374. --bs-text-opacity: 1;
  7375. color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
  7376. }
  7377. .text-success {
  7378. --bs-text-opacity: 1;
  7379. color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
  7380. }
  7381. .text-info {
  7382. --bs-text-opacity: 1;
  7383. color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
  7384. }
  7385. .text-warning {
  7386. --bs-text-opacity: 1;
  7387. color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
  7388. }
  7389. .text-danger {
  7390. --bs-text-opacity: 1;
  7391. color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
  7392. }
  7393. .text-light {
  7394. --bs-text-opacity: 1;
  7395. color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
  7396. }
  7397. .text-dark {
  7398. --bs-text-opacity: 1;
  7399. color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
  7400. }
  7401. .text-black {
  7402. --bs-text-opacity: 1;
  7403. color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
  7404. }
  7405. .text-white {
  7406. --bs-text-opacity: 1;
  7407. color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
  7408. }
  7409. .text-body {
  7410. --bs-text-opacity: 1;
  7411. color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
  7412. }
  7413. .text-muted {
  7414. --bs-text-opacity: 1;
  7415. color: #6c757d !important;
  7416. }
  7417. .text-black-50 {
  7418. --bs-text-opacity: 1;
  7419. color: rgba(0, 0, 0, 0.5) !important;
  7420. }
  7421. .text-white-50 {
  7422. --bs-text-opacity: 1;
  7423. color: rgba(255, 255, 255, 0.5) !important;
  7424. }
  7425. .text-reset {
  7426. --bs-text-opacity: 1;
  7427. color: inherit !important;
  7428. }
  7429. .text-opacity-25 {
  7430. --bs-text-opacity: 0.25;
  7431. }
  7432. .text-opacity-50 {
  7433. --bs-text-opacity: 0.5;
  7434. }
  7435. .text-opacity-75 {
  7436. --bs-text-opacity: 0.75;
  7437. }
  7438. .text-opacity-100 {
  7439. --bs-text-opacity: 1;
  7440. }
  7441. .bg-primary {
  7442. --bs-bg-opacity: 1;
  7443. background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
  7444. }
  7445. .bg-secondary {
  7446. --bs-bg-opacity: 1;
  7447. background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
  7448. }
  7449. .bg-success {
  7450. --bs-bg-opacity: 1;
  7451. background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
  7452. }
  7453. .bg-info {
  7454. --bs-bg-opacity: 1;
  7455. background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
  7456. }
  7457. .bg-warning {
  7458. --bs-bg-opacity: 1;
  7459. background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
  7460. }
  7461. .bg-danger {
  7462. --bs-bg-opacity: 1;
  7463. background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
  7464. }
  7465. .bg-light {
  7466. --bs-bg-opacity: 1;
  7467. background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
  7468. }
  7469. .bg-dark {
  7470. --bs-bg-opacity: 1;
  7471. background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
  7472. }
  7473. .bg-black {
  7474. --bs-bg-opacity: 1;
  7475. background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
  7476. }
  7477. .bg-white {
  7478. --bs-bg-opacity: 1;
  7479. background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
  7480. }
  7481. .bg-body {
  7482. --bs-bg-opacity: 1;
  7483. background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
  7484. }
  7485. .bg-transparent {
  7486. --bs-bg-opacity: 1;
  7487. background-color: transparent !important;
  7488. }
  7489. .bg-opacity-10 {
  7490. --bs-bg-opacity: 0.1;
  7491. }
  7492. .bg-opacity-25 {
  7493. --bs-bg-opacity: 0.25;
  7494. }
  7495. .bg-opacity-50 {
  7496. --bs-bg-opacity: 0.5;
  7497. }
  7498. .bg-opacity-75 {
  7499. --bs-bg-opacity: 0.75;
  7500. }
  7501. .bg-opacity-100 {
  7502. --bs-bg-opacity: 1;
  7503. }
  7504. .bg-gradient {
  7505. background-image: var(--bs-gradient) !important;
  7506. }
  7507. .user-select-all {
  7508. -webkit-user-select: all !important;
  7509. -moz-user-select: all !important;
  7510. user-select: all !important;
  7511. }
  7512. .user-select-auto {
  7513. -webkit-user-select: auto !important;
  7514. -moz-user-select: auto !important;
  7515. user-select: auto !important;
  7516. }
  7517. .user-select-none {
  7518. -webkit-user-select: none !important;
  7519. -moz-user-select: none !important;
  7520. user-select: none !important;
  7521. }
  7522. .pe-none {
  7523. pointer-events: none !important;
  7524. }
  7525. .pe-auto {
  7526. pointer-events: auto !important;
  7527. }
  7528. .rounded {
  7529. border-radius: var(--bs-border-radius) !important;
  7530. }
  7531. .rounded-0 {
  7532. border-radius: 0 !important;
  7533. }
  7534. .rounded-1 {
  7535. border-radius: var(--bs-border-radius-sm) !important;
  7536. }
  7537. .rounded-2 {
  7538. border-radius: var(--bs-border-radius) !important;
  7539. }
  7540. .rounded-3 {
  7541. border-radius: var(--bs-border-radius-lg) !important;
  7542. }
  7543. .rounded-4 {
  7544. border-radius: var(--bs-border-radius-xl) !important;
  7545. }
  7546. .rounded-5 {
  7547. border-radius: var(--bs-border-radius-2xl) !important;
  7548. }
  7549. .rounded-circle {
  7550. border-radius: 50% !important;
  7551. }
  7552. .rounded-pill {
  7553. border-radius: var(--bs-border-radius-pill) !important;
  7554. }
  7555. .rounded-top {
  7556. border-top-left-radius: var(--bs-border-radius) !important;
  7557. border-top-right-radius: var(--bs-border-radius) !important;
  7558. }
  7559. .rounded-end {
  7560. border-top-right-radius: var(--bs-border-radius) !important;
  7561. border-bottom-right-radius: var(--bs-border-radius) !important;
  7562. }
  7563. .rounded-bottom {
  7564. border-bottom-right-radius: var(--bs-border-radius) !important;
  7565. border-bottom-left-radius: var(--bs-border-radius) !important;
  7566. }
  7567. .rounded-start {
  7568. border-bottom-left-radius: var(--bs-border-radius) !important;
  7569. border-top-left-radius: var(--bs-border-radius) !important;
  7570. }
  7571. .visible {
  7572. visibility: visible !important;
  7573. }
  7574. .invisible {
  7575. visibility: hidden !important;
  7576. }
  7577. @media (min-width: 576px) {
  7578. .float-sm-start {
  7579. float: left !important;
  7580. }
  7581. .float-sm-end {
  7582. float: right !important;
  7583. }
  7584. .float-sm-none {
  7585. float: none !important;
  7586. }
  7587. .d-sm-inline {
  7588. display: inline !important;
  7589. }
  7590. .d-sm-inline-block {
  7591. display: inline-block !important;
  7592. }
  7593. .d-sm-block {
  7594. display: block !important;
  7595. }
  7596. .d-sm-grid {
  7597. display: grid !important;
  7598. }
  7599. .d-sm-table {
  7600. display: table !important;
  7601. }
  7602. .d-sm-table-row {
  7603. display: table-row !important;
  7604. }
  7605. .d-sm-table-cell {
  7606. display: table-cell !important;
  7607. }
  7608. .d-sm-flex {
  7609. display: flex !important;
  7610. }
  7611. .d-sm-inline-flex {
  7612. display: inline-flex !important;
  7613. }
  7614. .d-sm-none {
  7615. display: none !important;
  7616. }
  7617. .flex-sm-fill {
  7618. flex: 1 1 auto !important;
  7619. }
  7620. .flex-sm-row {
  7621. flex-direction: row !important;
  7622. }
  7623. .flex-sm-column {
  7624. flex-direction: column !important;
  7625. }
  7626. .flex-sm-row-reverse {
  7627. flex-direction: row-reverse !important;
  7628. }
  7629. .flex-sm-column-reverse {
  7630. flex-direction: column-reverse !important;
  7631. }
  7632. .flex-sm-grow-0 {
  7633. flex-grow: 0 !important;
  7634. }
  7635. .flex-sm-grow-1 {
  7636. flex-grow: 1 !important;
  7637. }
  7638. .flex-sm-shrink-0 {
  7639. flex-shrink: 0 !important;
  7640. }
  7641. .flex-sm-shrink-1 {
  7642. flex-shrink: 1 !important;
  7643. }
  7644. .flex-sm-wrap {
  7645. flex-wrap: wrap !important;
  7646. }
  7647. .flex-sm-nowrap {
  7648. flex-wrap: nowrap !important;
  7649. }
  7650. .flex-sm-wrap-reverse {
  7651. flex-wrap: wrap-reverse !important;
  7652. }
  7653. .justify-content-sm-start {
  7654. justify-content: flex-start !important;
  7655. }
  7656. .justify-content-sm-end {
  7657. justify-content: flex-end !important;
  7658. }
  7659. .justify-content-sm-center {
  7660. justify-content: center !important;
  7661. }
  7662. .justify-content-sm-between {
  7663. justify-content: space-between !important;
  7664. }
  7665. .justify-content-sm-around {
  7666. justify-content: space-around !important;
  7667. }
  7668. .justify-content-sm-evenly {
  7669. justify-content: space-evenly !important;
  7670. }
  7671. .align-items-sm-start {
  7672. align-items: flex-start !important;
  7673. }
  7674. .align-items-sm-end {
  7675. align-items: flex-end !important;
  7676. }
  7677. .align-items-sm-center {
  7678. align-items: center !important;
  7679. }
  7680. .align-items-sm-baseline {
  7681. align-items: baseline !important;
  7682. }
  7683. .align-items-sm-stretch {
  7684. align-items: stretch !important;
  7685. }
  7686. .align-content-sm-start {
  7687. align-content: flex-start !important;
  7688. }
  7689. .align-content-sm-end {
  7690. align-content: flex-end !important;
  7691. }
  7692. .align-content-sm-center {
  7693. align-content: center !important;
  7694. }
  7695. .align-content-sm-between {
  7696. align-content: space-between !important;
  7697. }
  7698. .align-content-sm-around {
  7699. align-content: space-around !important;
  7700. }
  7701. .align-content-sm-stretch {
  7702. align-content: stretch !important;
  7703. }
  7704. .align-self-sm-auto {
  7705. align-self: auto !important;
  7706. }
  7707. .align-self-sm-start {
  7708. align-self: flex-start !important;
  7709. }
  7710. .align-self-sm-end {
  7711. align-self: flex-end !important;
  7712. }
  7713. .align-self-sm-center {
  7714. align-self: center !important;
  7715. }
  7716. .align-self-sm-baseline {
  7717. align-self: baseline !important;
  7718. }
  7719. .align-self-sm-stretch {
  7720. align-self: stretch !important;
  7721. }
  7722. .order-sm-first {
  7723. order: -1 !important;
  7724. }
  7725. .order-sm-0 {
  7726. order: 0 !important;
  7727. }
  7728. .order-sm-1 {
  7729. order: 1 !important;
  7730. }
  7731. .order-sm-2 {
  7732. order: 2 !important;
  7733. }
  7734. .order-sm-3 {
  7735. order: 3 !important;
  7736. }
  7737. .order-sm-4 {
  7738. order: 4 !important;
  7739. }
  7740. .order-sm-5 {
  7741. order: 5 !important;
  7742. }
  7743. .order-sm-last {
  7744. order: 6 !important;
  7745. }
  7746. .m-sm-0 {
  7747. margin: 0 !important;
  7748. }
  7749. .m-sm-1 {
  7750. margin: 0.25rem !important;
  7751. }
  7752. .m-sm-2 {
  7753. margin: 0.5rem !important;
  7754. }
  7755. .m-sm-3 {
  7756. margin: 1rem !important;
  7757. }
  7758. .m-sm-4 {
  7759. margin: 1.5rem !important;
  7760. }
  7761. .m-sm-5 {
  7762. margin: 3rem !important;
  7763. }
  7764. .m-sm-auto {
  7765. margin: auto !important;
  7766. }
  7767. .mx-sm-0 {
  7768. margin-right: 0 !important;
  7769. margin-left: 0 !important;
  7770. }
  7771. .mx-sm-1 {
  7772. margin-right: 0.25rem !important;
  7773. margin-left: 0.25rem !important;
  7774. }
  7775. .mx-sm-2 {
  7776. margin-right: 0.5rem !important;
  7777. margin-left: 0.5rem !important;
  7778. }
  7779. .mx-sm-3 {
  7780. margin-right: 1rem !important;
  7781. margin-left: 1rem !important;
  7782. }
  7783. .mx-sm-4 {
  7784. margin-right: 1.5rem !important;
  7785. margin-left: 1.5rem !important;
  7786. }
  7787. .mx-sm-5 {
  7788. margin-right: 3rem !important;
  7789. margin-left: 3rem !important;
  7790. }
  7791. .mx-sm-auto {
  7792. margin-right: auto !important;
  7793. margin-left: auto !important;
  7794. }
  7795. .my-sm-0 {
  7796. margin-top: 0 !important;
  7797. margin-bottom: 0 !important;
  7798. }
  7799. .my-sm-1 {
  7800. margin-top: 0.25rem !important;
  7801. margin-bottom: 0.25rem !important;
  7802. }
  7803. .my-sm-2 {
  7804. margin-top: 0.5rem !important;
  7805. margin-bottom: 0.5rem !important;
  7806. }
  7807. .my-sm-3 {
  7808. margin-top: 1rem !important;
  7809. margin-bottom: 1rem !important;
  7810. }
  7811. .my-sm-4 {
  7812. margin-top: 1.5rem !important;
  7813. margin-bottom: 1.5rem !important;
  7814. }
  7815. .my-sm-5 {
  7816. margin-top: 3rem !important;
  7817. margin-bottom: 3rem !important;
  7818. }
  7819. .my-sm-auto {
  7820. margin-top: auto !important;
  7821. margin-bottom: auto !important;
  7822. }
  7823. .mt-sm-0 {
  7824. margin-top: 0 !important;
  7825. }
  7826. .mt-sm-1 {
  7827. margin-top: 0.25rem !important;
  7828. }
  7829. .mt-sm-2 {
  7830. margin-top: 0.5rem !important;
  7831. }
  7832. .mt-sm-3 {
  7833. margin-top: 1rem !important;
  7834. }
  7835. .mt-sm-4 {
  7836. margin-top: 1.5rem !important;
  7837. }
  7838. .mt-sm-5 {
  7839. margin-top: 3rem !important;
  7840. }
  7841. .mt-sm-auto {
  7842. margin-top: auto !important;
  7843. }
  7844. .me-sm-0 {
  7845. margin-right: 0 !important;
  7846. }
  7847. .me-sm-1 {
  7848. margin-right: 0.25rem !important;
  7849. }
  7850. .me-sm-2 {
  7851. margin-right: 0.5rem !important;
  7852. }
  7853. .me-sm-3 {
  7854. margin-right: 1rem !important;
  7855. }
  7856. .me-sm-4 {
  7857. margin-right: 1.5rem !important;
  7858. }
  7859. .me-sm-5 {
  7860. margin-right: 3rem !important;
  7861. }
  7862. .me-sm-auto {
  7863. margin-right: auto !important;
  7864. }
  7865. .mb-sm-0 {
  7866. margin-bottom: 0 !important;
  7867. }
  7868. .mb-sm-1 {
  7869. margin-bottom: 0.25rem !important;
  7870. }
  7871. .mb-sm-2 {
  7872. margin-bottom: 0.5rem !important;
  7873. }
  7874. .mb-sm-3 {
  7875. margin-bottom: 1rem !important;
  7876. }
  7877. .mb-sm-4 {
  7878. margin-bottom: 1.5rem !important;
  7879. }
  7880. .mb-sm-5 {
  7881. margin-bottom: 3rem !important;
  7882. }
  7883. .mb-sm-auto {
  7884. margin-bottom: auto !important;
  7885. }
  7886. .ms-sm-0 {
  7887. margin-left: 0 !important;
  7888. }
  7889. .ms-sm-1 {
  7890. margin-left: 0.25rem !important;
  7891. }
  7892. .ms-sm-2 {
  7893. margin-left: 0.5rem !important;
  7894. }
  7895. .ms-sm-3 {
  7896. margin-left: 1rem !important;
  7897. }
  7898. .ms-sm-4 {
  7899. margin-left: 1.5rem !important;
  7900. }
  7901. .ms-sm-5 {
  7902. margin-left: 3rem !important;
  7903. }
  7904. .ms-sm-auto {
  7905. margin-left: auto !important;
  7906. }
  7907. .p-sm-0 {
  7908. padding: 0 !important;
  7909. }
  7910. .p-sm-1 {
  7911. padding: 0.25rem !important;
  7912. }
  7913. .p-sm-2 {
  7914. padding: 0.5rem !important;
  7915. }
  7916. .p-sm-3 {
  7917. padding: 1rem !important;
  7918. }
  7919. .p-sm-4 {
  7920. padding: 1.5rem !important;
  7921. }
  7922. .p-sm-5 {
  7923. padding: 3rem !important;
  7924. }
  7925. .px-sm-0 {
  7926. padding-right: 0 !important;
  7927. padding-left: 0 !important;
  7928. }
  7929. .px-sm-1 {
  7930. padding-right: 0.25rem !important;
  7931. padding-left: 0.25rem !important;
  7932. }
  7933. .px-sm-2 {
  7934. padding-right: 0.5rem !important;
  7935. padding-left: 0.5rem !important;
  7936. }
  7937. .px-sm-3 {
  7938. padding-right: 1rem !important;
  7939. padding-left: 1rem !important;
  7940. }
  7941. .px-sm-4 {
  7942. padding-right: 1.5rem !important;
  7943. padding-left: 1.5rem !important;
  7944. }
  7945. .px-sm-5 {
  7946. padding-right: 3rem !important;
  7947. padding-left: 3rem !important;
  7948. }
  7949. .py-sm-0 {
  7950. padding-top: 0 !important;
  7951. padding-bottom: 0 !important;
  7952. }
  7953. .py-sm-1 {
  7954. padding-top: 0.25rem !important;
  7955. padding-bottom: 0.25rem !important;
  7956. }
  7957. .py-sm-2 {
  7958. padding-top: 0.5rem !important;
  7959. padding-bottom: 0.5rem !important;
  7960. }
  7961. .py-sm-3 {
  7962. padding-top: 1rem !important;
  7963. padding-bottom: 1rem !important;
  7964. }
  7965. .py-sm-4 {
  7966. padding-top: 1.5rem !important;
  7967. padding-bottom: 1.5rem !important;
  7968. }
  7969. .py-sm-5 {
  7970. padding-top: 3rem !important;
  7971. padding-bottom: 3rem !important;
  7972. }
  7973. .pt-sm-0 {
  7974. padding-top: 0 !important;
  7975. }
  7976. .pt-sm-1 {
  7977. padding-top: 0.25rem !important;
  7978. }
  7979. .pt-sm-2 {
  7980. padding-top: 0.5rem !important;
  7981. }
  7982. .pt-sm-3 {
  7983. padding-top: 1rem !important;
  7984. }
  7985. .pt-sm-4 {
  7986. padding-top: 1.5rem !important;
  7987. }
  7988. .pt-sm-5 {
  7989. padding-top: 3rem !important;
  7990. }
  7991. .pe-sm-0 {
  7992. padding-right: 0 !important;
  7993. }
  7994. .pe-sm-1 {
  7995. padding-right: 0.25rem !important;
  7996. }
  7997. .pe-sm-2 {
  7998. padding-right: 0.5rem !important;
  7999. }
  8000. .pe-sm-3 {
  8001. padding-right: 1rem !important;
  8002. }
  8003. .pe-sm-4 {
  8004. padding-right: 1.5rem !important;
  8005. }
  8006. .pe-sm-5 {
  8007. padding-right: 3rem !important;
  8008. }
  8009. .pb-sm-0 {
  8010. padding-bottom: 0 !important;
  8011. }
  8012. .pb-sm-1 {
  8013. padding-bottom: 0.25rem !important;
  8014. }
  8015. .pb-sm-2 {
  8016. padding-bottom: 0.5rem !important;
  8017. }
  8018. .pb-sm-3 {
  8019. padding-bottom: 1rem !important;
  8020. }
  8021. .pb-sm-4 {
  8022. padding-bottom: 1.5rem !important;
  8023. }
  8024. .pb-sm-5 {
  8025. padding-bottom: 3rem !important;
  8026. }
  8027. .ps-sm-0 {
  8028. padding-left: 0 !important;
  8029. }
  8030. .ps-sm-1 {
  8031. padding-left: 0.25rem !important;
  8032. }
  8033. .ps-sm-2 {
  8034. padding-left: 0.5rem !important;
  8035. }
  8036. .ps-sm-3 {
  8037. padding-left: 1rem !important;
  8038. }
  8039. .ps-sm-4 {
  8040. padding-left: 1.5rem !important;
  8041. }
  8042. .ps-sm-5 {
  8043. padding-left: 3rem !important;
  8044. }
  8045. .gap-sm-0 {
  8046. gap: 0 !important;
  8047. }
  8048. .gap-sm-1 {
  8049. gap: 0.25rem !important;
  8050. }
  8051. .gap-sm-2 {
  8052. gap: 0.5rem !important;
  8053. }
  8054. .gap-sm-3 {
  8055. gap: 1rem !important;
  8056. }
  8057. .gap-sm-4 {
  8058. gap: 1.5rem !important;
  8059. }
  8060. .gap-sm-5 {
  8061. gap: 3rem !important;
  8062. }
  8063. .text-sm-start {
  8064. text-align: left !important;
  8065. }
  8066. .text-sm-end {
  8067. text-align: right !important;
  8068. }
  8069. .text-sm-center {
  8070. text-align: center !important;
  8071. }
  8072. }
  8073. @media (min-width: 768px) {
  8074. .float-md-start {
  8075. float: left !important;
  8076. }
  8077. .float-md-end {
  8078. float: right !important;
  8079. }
  8080. .float-md-none {
  8081. float: none !important;
  8082. }
  8083. .d-md-inline {
  8084. display: inline !important;
  8085. }
  8086. .d-md-inline-block {
  8087. display: inline-block !important;
  8088. }
  8089. .d-md-block {
  8090. display: block !important;
  8091. }
  8092. .d-md-grid {
  8093. display: grid !important;
  8094. }
  8095. .d-md-table {
  8096. display: table !important;
  8097. }
  8098. .d-md-table-row {
  8099. display: table-row !important;
  8100. }
  8101. .d-md-table-cell {
  8102. display: table-cell !important;
  8103. }
  8104. .d-md-flex {
  8105. display: flex !important;
  8106. }
  8107. .d-md-inline-flex {
  8108. display: inline-flex !important;
  8109. }
  8110. .d-md-none {
  8111. display: none !important;
  8112. }
  8113. .flex-md-fill {
  8114. flex: 1 1 auto !important;
  8115. }
  8116. .flex-md-row {
  8117. flex-direction: row !important;
  8118. }
  8119. .flex-md-column {
  8120. flex-direction: column !important;
  8121. }
  8122. .flex-md-row-reverse {
  8123. flex-direction: row-reverse !important;
  8124. }
  8125. .flex-md-column-reverse {
  8126. flex-direction: column-reverse !important;
  8127. }
  8128. .flex-md-grow-0 {
  8129. flex-grow: 0 !important;
  8130. }
  8131. .flex-md-grow-1 {
  8132. flex-grow: 1 !important;
  8133. }
  8134. .flex-md-shrink-0 {
  8135. flex-shrink: 0 !important;
  8136. }
  8137. .flex-md-shrink-1 {
  8138. flex-shrink: 1 !important;
  8139. }
  8140. .flex-md-wrap {
  8141. flex-wrap: wrap !important;
  8142. }
  8143. .flex-md-nowrap {
  8144. flex-wrap: nowrap !important;
  8145. }
  8146. .flex-md-wrap-reverse {
  8147. flex-wrap: wrap-reverse !important;
  8148. }
  8149. .justify-content-md-start {
  8150. justify-content: flex-start !important;
  8151. }
  8152. .justify-content-md-end {
  8153. justify-content: flex-end !important;
  8154. }
  8155. .justify-content-md-center {
  8156. justify-content: center !important;
  8157. }
  8158. .justify-content-md-between {
  8159. justify-content: space-between !important;
  8160. }
  8161. .justify-content-md-around {
  8162. justify-content: space-around !important;
  8163. }
  8164. .justify-content-md-evenly {
  8165. justify-content: space-evenly !important;
  8166. }
  8167. .align-items-md-start {
  8168. align-items: flex-start !important;
  8169. }
  8170. .align-items-md-end {
  8171. align-items: flex-end !important;
  8172. }
  8173. .align-items-md-center {
  8174. align-items: center !important;
  8175. }
  8176. .align-items-md-baseline {
  8177. align-items: baseline !important;
  8178. }
  8179. .align-items-md-stretch {
  8180. align-items: stretch !important;
  8181. }
  8182. .align-content-md-start {
  8183. align-content: flex-start !important;
  8184. }
  8185. .align-content-md-end {
  8186. align-content: flex-end !important;
  8187. }
  8188. .align-content-md-center {
  8189. align-content: center !important;
  8190. }
  8191. .align-content-md-between {
  8192. align-content: space-between !important;
  8193. }
  8194. .align-content-md-around {
  8195. align-content: space-around !important;
  8196. }
  8197. .align-content-md-stretch {
  8198. align-content: stretch !important;
  8199. }
  8200. .align-self-md-auto {
  8201. align-self: auto !important;
  8202. }
  8203. .align-self-md-start {
  8204. align-self: flex-start !important;
  8205. }
  8206. .align-self-md-end {
  8207. align-self: flex-end !important;
  8208. }
  8209. .align-self-md-center {
  8210. align-self: center !important;
  8211. }
  8212. .align-self-md-baseline {
  8213. align-self: baseline !important;
  8214. }
  8215. .align-self-md-stretch {
  8216. align-self: stretch !important;
  8217. }
  8218. .order-md-first {
  8219. order: -1 !important;
  8220. }
  8221. .order-md-0 {
  8222. order: 0 !important;
  8223. }
  8224. .order-md-1 {
  8225. order: 1 !important;
  8226. }
  8227. .order-md-2 {
  8228. order: 2 !important;
  8229. }
  8230. .order-md-3 {
  8231. order: 3 !important;
  8232. }
  8233. .order-md-4 {
  8234. order: 4 !important;
  8235. }
  8236. .order-md-5 {
  8237. order: 5 !important;
  8238. }
  8239. .order-md-last {
  8240. order: 6 !important;
  8241. }
  8242. .m-md-0 {
  8243. margin: 0 !important;
  8244. }
  8245. .m-md-1 {
  8246. margin: 0.25rem !important;
  8247. }
  8248. .m-md-2 {
  8249. margin: 0.5rem !important;
  8250. }
  8251. .m-md-3 {
  8252. margin: 1rem !important;
  8253. }
  8254. .m-md-4 {
  8255. margin: 1.5rem !important;
  8256. }
  8257. .m-md-5 {
  8258. margin: 3rem !important;
  8259. }
  8260. .m-md-auto {
  8261. margin: auto !important;
  8262. }
  8263. .mx-md-0 {
  8264. margin-right: 0 !important;
  8265. margin-left: 0 !important;
  8266. }
  8267. .mx-md-1 {
  8268. margin-right: 0.25rem !important;
  8269. margin-left: 0.25rem !important;
  8270. }
  8271. .mx-md-2 {
  8272. margin-right: 0.5rem !important;
  8273. margin-left: 0.5rem !important;
  8274. }
  8275. .mx-md-3 {
  8276. margin-right: 1rem !important;
  8277. margin-left: 1rem !important;
  8278. }
  8279. .mx-md-4 {
  8280. margin-right: 1.5rem !important;
  8281. margin-left: 1.5rem !important;
  8282. }
  8283. .mx-md-5 {
  8284. margin-right: 3rem !important;
  8285. margin-left: 3rem !important;
  8286. }
  8287. .mx-md-auto {
  8288. margin-right: auto !important;
  8289. margin-left: auto !important;
  8290. }
  8291. .my-md-0 {
  8292. margin-top: 0 !important;
  8293. margin-bottom: 0 !important;
  8294. }
  8295. .my-md-1 {
  8296. margin-top: 0.25rem !important;
  8297. margin-bottom: 0.25rem !important;
  8298. }
  8299. .my-md-2 {
  8300. margin-top: 0.5rem !important;
  8301. margin-bottom: 0.5rem !important;
  8302. }
  8303. .my-md-3 {
  8304. margin-top: 1rem !important;
  8305. margin-bottom: 1rem !important;
  8306. }
  8307. .my-md-4 {
  8308. margin-top: 1.5rem !important;
  8309. margin-bottom: 1.5rem !important;
  8310. }
  8311. .my-md-5 {
  8312. margin-top: 3rem !important;
  8313. margin-bottom: 3rem !important;
  8314. }
  8315. .my-md-auto {
  8316. margin-top: auto !important;
  8317. margin-bottom: auto !important;
  8318. }
  8319. .mt-md-0 {
  8320. margin-top: 0 !important;
  8321. }
  8322. .mt-md-1 {
  8323. margin-top: 0.25rem !important;
  8324. }
  8325. .mt-md-2 {
  8326. margin-top: 0.5rem !important;
  8327. }
  8328. .mt-md-3 {
  8329. margin-top: 1rem !important;
  8330. }
  8331. .mt-md-4 {
  8332. margin-top: 1.5rem !important;
  8333. }
  8334. .mt-md-5 {
  8335. margin-top: 3rem !important;
  8336. }
  8337. .mt-md-auto {
  8338. margin-top: auto !important;
  8339. }
  8340. .me-md-0 {
  8341. margin-right: 0 !important;
  8342. }
  8343. .me-md-1 {
  8344. margin-right: 0.25rem !important;
  8345. }
  8346. .me-md-2 {
  8347. margin-right: 0.5rem !important;
  8348. }
  8349. .me-md-3 {
  8350. margin-right: 1rem !important;
  8351. }
  8352. .me-md-4 {
  8353. margin-right: 1.5rem !important;
  8354. }
  8355. .me-md-5 {
  8356. margin-right: 3rem !important;
  8357. }
  8358. .me-md-auto {
  8359. margin-right: auto !important;
  8360. }
  8361. .mb-md-0 {
  8362. margin-bottom: 0 !important;
  8363. }
  8364. .mb-md-1 {
  8365. margin-bottom: 0.25rem !important;
  8366. }
  8367. .mb-md-2 {
  8368. margin-bottom: 0.5rem !important;
  8369. }
  8370. .mb-md-3 {
  8371. margin-bottom: 1rem !important;
  8372. }
  8373. .mb-md-4 {
  8374. margin-bottom: 1.5rem !important;
  8375. }
  8376. .mb-md-5 {
  8377. margin-bottom: 3rem !important;
  8378. }
  8379. .mb-md-auto {
  8380. margin-bottom: auto !important;
  8381. }
  8382. .ms-md-0 {
  8383. margin-left: 0 !important;
  8384. }
  8385. .ms-md-1 {
  8386. margin-left: 0.25rem !important;
  8387. }
  8388. .ms-md-2 {
  8389. margin-left: 0.5rem !important;
  8390. }
  8391. .ms-md-3 {
  8392. margin-left: 1rem !important;
  8393. }
  8394. .ms-md-4 {
  8395. margin-left: 1.5rem !important;
  8396. }
  8397. .ms-md-5 {
  8398. margin-left: 3rem !important;
  8399. }
  8400. .ms-md-auto {
  8401. margin-left: auto !important;
  8402. }
  8403. .p-md-0 {
  8404. padding: 0 !important;
  8405. }
  8406. .p-md-1 {
  8407. padding: 0.25rem !important;
  8408. }
  8409. .p-md-2 {
  8410. padding: 0.5rem !important;
  8411. }
  8412. .p-md-3 {
  8413. padding: 1rem !important;
  8414. }
  8415. .p-md-4 {
  8416. padding: 1.5rem !important;
  8417. }
  8418. .p-md-5 {
  8419. padding: 3rem !important;
  8420. }
  8421. .px-md-0 {
  8422. padding-right: 0 !important;
  8423. padding-left: 0 !important;
  8424. }
  8425. .px-md-1 {
  8426. padding-right: 0.25rem !important;
  8427. padding-left: 0.25rem !important;
  8428. }
  8429. .px-md-2 {
  8430. padding-right: 0.5rem !important;
  8431. padding-left: 0.5rem !important;
  8432. }
  8433. .px-md-3 {
  8434. padding-right: 1rem !important;
  8435. padding-left: 1rem !important;
  8436. }
  8437. .px-md-4 {
  8438. padding-right: 1.5rem !important;
  8439. padding-left: 1.5rem !important;
  8440. }
  8441. .px-md-5 {
  8442. padding-right: 3rem !important;
  8443. padding-left: 3rem !important;
  8444. }
  8445. .py-md-0 {
  8446. padding-top: 0 !important;
  8447. padding-bottom: 0 !important;
  8448. }
  8449. .py-md-1 {
  8450. padding-top: 0.25rem !important;
  8451. padding-bottom: 0.25rem !important;
  8452. }
  8453. .py-md-2 {
  8454. padding-top: 0.5rem !important;
  8455. padding-bottom: 0.5rem !important;
  8456. }
  8457. .py-md-3 {
  8458. padding-top: 1rem !important;
  8459. padding-bottom: 1rem !important;
  8460. }
  8461. .py-md-4 {
  8462. padding-top: 1.5rem !important;
  8463. padding-bottom: 1.5rem !important;
  8464. }
  8465. .py-md-5 {
  8466. padding-top: 3rem !important;
  8467. padding-bottom: 3rem !important;
  8468. }
  8469. .pt-md-0 {
  8470. padding-top: 0 !important;
  8471. }
  8472. .pt-md-1 {
  8473. padding-top: 0.25rem !important;
  8474. }
  8475. .pt-md-2 {
  8476. padding-top: 0.5rem !important;
  8477. }
  8478. .pt-md-3 {
  8479. padding-top: 1rem !important;
  8480. }
  8481. .pt-md-4 {
  8482. padding-top: 1.5rem !important;
  8483. }
  8484. .pt-md-5 {
  8485. padding-top: 3rem !important;
  8486. }
  8487. .pe-md-0 {
  8488. padding-right: 0 !important;
  8489. }
  8490. .pe-md-1 {
  8491. padding-right: 0.25rem !important;
  8492. }
  8493. .pe-md-2 {
  8494. padding-right: 0.5rem !important;
  8495. }
  8496. .pe-md-3 {
  8497. padding-right: 1rem !important;
  8498. }
  8499. .pe-md-4 {
  8500. padding-right: 1.5rem !important;
  8501. }
  8502. .pe-md-5 {
  8503. padding-right: 3rem !important;
  8504. }
  8505. .pb-md-0 {
  8506. padding-bottom: 0 !important;
  8507. }
  8508. .pb-md-1 {
  8509. padding-bottom: 0.25rem !important;
  8510. }
  8511. .pb-md-2 {
  8512. padding-bottom: 0.5rem !important;
  8513. }
  8514. .pb-md-3 {
  8515. padding-bottom: 1rem !important;
  8516. }
  8517. .pb-md-4 {
  8518. padding-bottom: 1.5rem !important;
  8519. }
  8520. .pb-md-5 {
  8521. padding-bottom: 3rem !important;
  8522. }
  8523. .ps-md-0 {
  8524. padding-left: 0 !important;
  8525. }
  8526. .ps-md-1 {
  8527. padding-left: 0.25rem !important;
  8528. }
  8529. .ps-md-2 {
  8530. padding-left: 0.5rem !important;
  8531. }
  8532. .ps-md-3 {
  8533. padding-left: 1rem !important;
  8534. }
  8535. .ps-md-4 {
  8536. padding-left: 1.5rem !important;
  8537. }
  8538. .ps-md-5 {
  8539. padding-left: 3rem !important;
  8540. }
  8541. .gap-md-0 {
  8542. gap: 0 !important;
  8543. }
  8544. .gap-md-1 {
  8545. gap: 0.25rem !important;
  8546. }
  8547. .gap-md-2 {
  8548. gap: 0.5rem !important;
  8549. }
  8550. .gap-md-3 {
  8551. gap: 1rem !important;
  8552. }
  8553. .gap-md-4 {
  8554. gap: 1.5rem !important;
  8555. }
  8556. .gap-md-5 {
  8557. gap: 3rem !important;
  8558. }
  8559. .text-md-start {
  8560. text-align: left !important;
  8561. }
  8562. .text-md-end {
  8563. text-align: right !important;
  8564. }
  8565. .text-md-center {
  8566. text-align: center !important;
  8567. }
  8568. }
  8569. @media (min-width: 992px) {
  8570. .float-lg-start {
  8571. float: left !important;
  8572. }
  8573. .float-lg-end {
  8574. float: right !important;
  8575. }
  8576. .float-lg-none {
  8577. float: none !important;
  8578. }
  8579. .d-lg-inline {
  8580. display: inline !important;
  8581. }
  8582. .d-lg-inline-block {
  8583. display: inline-block !important;
  8584. }
  8585. .d-lg-block {
  8586. display: block !important;
  8587. }
  8588. .d-lg-grid {
  8589. display: grid !important;
  8590. }
  8591. .d-lg-table {
  8592. display: table !important;
  8593. }
  8594. .d-lg-table-row {
  8595. display: table-row !important;
  8596. }
  8597. .d-lg-table-cell {
  8598. display: table-cell !important;
  8599. }
  8600. .d-lg-flex {
  8601. display: flex !important;
  8602. }
  8603. .d-lg-inline-flex {
  8604. display: inline-flex !important;
  8605. }
  8606. .d-lg-none {
  8607. display: none !important;
  8608. }
  8609. .flex-lg-fill {
  8610. flex: 1 1 auto !important;
  8611. }
  8612. .flex-lg-row {
  8613. flex-direction: row !important;
  8614. }
  8615. .flex-lg-column {
  8616. flex-direction: column !important;
  8617. }
  8618. .flex-lg-row-reverse {
  8619. flex-direction: row-reverse !important;
  8620. }
  8621. .flex-lg-column-reverse {
  8622. flex-direction: column-reverse !important;
  8623. }
  8624. .flex-lg-grow-0 {
  8625. flex-grow: 0 !important;
  8626. }
  8627. .flex-lg-grow-1 {
  8628. flex-grow: 1 !important;
  8629. }
  8630. .flex-lg-shrink-0 {
  8631. flex-shrink: 0 !important;
  8632. }
  8633. .flex-lg-shrink-1 {
  8634. flex-shrink: 1 !important;
  8635. }
  8636. .flex-lg-wrap {
  8637. flex-wrap: wrap !important;
  8638. }
  8639. .flex-lg-nowrap {
  8640. flex-wrap: nowrap !important;
  8641. }
  8642. .flex-lg-wrap-reverse {
  8643. flex-wrap: wrap-reverse !important;
  8644. }
  8645. .justify-content-lg-start {
  8646. justify-content: flex-start !important;
  8647. }
  8648. .justify-content-lg-end {
  8649. justify-content: flex-end !important;
  8650. }
  8651. .justify-content-lg-center {
  8652. justify-content: center !important;
  8653. }
  8654. .justify-content-lg-between {
  8655. justify-content: space-between !important;
  8656. }
  8657. .justify-content-lg-around {
  8658. justify-content: space-around !important;
  8659. }
  8660. .justify-content-lg-evenly {
  8661. justify-content: space-evenly !important;
  8662. }
  8663. .align-items-lg-start {
  8664. align-items: flex-start !important;
  8665. }
  8666. .align-items-lg-end {
  8667. align-items: flex-end !important;
  8668. }
  8669. .align-items-lg-center {
  8670. align-items: center !important;
  8671. }
  8672. .align-items-lg-baseline {
  8673. align-items: baseline !important;
  8674. }
  8675. .align-items-lg-stretch {
  8676. align-items: stretch !important;
  8677. }
  8678. .align-content-lg-start {
  8679. align-content: flex-start !important;
  8680. }
  8681. .align-content-lg-end {
  8682. align-content: flex-end !important;
  8683. }
  8684. .align-content-lg-center {
  8685. align-content: center !important;
  8686. }
  8687. .align-content-lg-between {
  8688. align-content: space-between !important;
  8689. }
  8690. .align-content-lg-around {
  8691. align-content: space-around !important;
  8692. }
  8693. .align-content-lg-stretch {
  8694. align-content: stretch !important;
  8695. }
  8696. .align-self-lg-auto {
  8697. align-self: auto !important;
  8698. }
  8699. .align-self-lg-start {
  8700. align-self: flex-start !important;
  8701. }
  8702. .align-self-lg-end {
  8703. align-self: flex-end !important;
  8704. }
  8705. .align-self-lg-center {
  8706. align-self: center !important;
  8707. }
  8708. .align-self-lg-baseline {
  8709. align-self: baseline !important;
  8710. }
  8711. .align-self-lg-stretch {
  8712. align-self: stretch !important;
  8713. }
  8714. .order-lg-first {
  8715. order: -1 !important;
  8716. }
  8717. .order-lg-0 {
  8718. order: 0 !important;
  8719. }
  8720. .order-lg-1 {
  8721. order: 1 !important;
  8722. }
  8723. .order-lg-2 {
  8724. order: 2 !important;
  8725. }
  8726. .order-lg-3 {
  8727. order: 3 !important;
  8728. }
  8729. .order-lg-4 {
  8730. order: 4 !important;
  8731. }
  8732. .order-lg-5 {
  8733. order: 5 !important;
  8734. }
  8735. .order-lg-last {
  8736. order: 6 !important;
  8737. }
  8738. .m-lg-0 {
  8739. margin: 0 !important;
  8740. }
  8741. .m-lg-1 {
  8742. margin: 0.25rem !important;
  8743. }
  8744. .m-lg-2 {
  8745. margin: 0.5rem !important;
  8746. }
  8747. .m-lg-3 {
  8748. margin: 1rem !important;
  8749. }
  8750. .m-lg-4 {
  8751. margin: 1.5rem !important;
  8752. }
  8753. .m-lg-5 {
  8754. margin: 3rem !important;
  8755. }
  8756. .m-lg-auto {
  8757. margin: auto !important;
  8758. }
  8759. .mx-lg-0 {
  8760. margin-right: 0 !important;
  8761. margin-left: 0 !important;
  8762. }
  8763. .mx-lg-1 {
  8764. margin-right: 0.25rem !important;
  8765. margin-left: 0.25rem !important;
  8766. }
  8767. .mx-lg-2 {
  8768. margin-right: 0.5rem !important;
  8769. margin-left: 0.5rem !important;
  8770. }
  8771. .mx-lg-3 {
  8772. margin-right: 1rem !important;
  8773. margin-left: 1rem !important;
  8774. }
  8775. .mx-lg-4 {
  8776. margin-right: 1.5rem !important;
  8777. margin-left: 1.5rem !important;
  8778. }
  8779. .mx-lg-5 {
  8780. margin-right: 3rem !important;
  8781. margin-left: 3rem !important;
  8782. }
  8783. .mx-lg-auto {
  8784. margin-right: auto !important;
  8785. margin-left: auto !important;
  8786. }
  8787. .my-lg-0 {
  8788. margin-top: 0 !important;
  8789. margin-bottom: 0 !important;
  8790. }
  8791. .my-lg-1 {
  8792. margin-top: 0.25rem !important;
  8793. margin-bottom: 0.25rem !important;
  8794. }
  8795. .my-lg-2 {
  8796. margin-top: 0.5rem !important;
  8797. margin-bottom: 0.5rem !important;
  8798. }
  8799. .my-lg-3 {
  8800. margin-top: 1rem !important;
  8801. margin-bottom: 1rem !important;
  8802. }
  8803. .my-lg-4 {
  8804. margin-top: 1.5rem !important;
  8805. margin-bottom: 1.5rem !important;
  8806. }
  8807. .my-lg-5 {
  8808. margin-top: 3rem !important;
  8809. margin-bottom: 3rem !important;
  8810. }
  8811. .my-lg-auto {
  8812. margin-top: auto !important;
  8813. margin-bottom: auto !important;
  8814. }
  8815. .mt-lg-0 {
  8816. margin-top: 0 !important;
  8817. }
  8818. .mt-lg-1 {
  8819. margin-top: 0.25rem !important;
  8820. }
  8821. .mt-lg-2 {
  8822. margin-top: 0.5rem !important;
  8823. }
  8824. .mt-lg-3 {
  8825. margin-top: 1rem !important;
  8826. }
  8827. .mt-lg-4 {
  8828. margin-top: 1.5rem !important;
  8829. }
  8830. .mt-lg-5 {
  8831. margin-top: 3rem !important;
  8832. }
  8833. .mt-lg-auto {
  8834. margin-top: auto !important;
  8835. }
  8836. .me-lg-0 {
  8837. margin-right: 0 !important;
  8838. }
  8839. .me-lg-1 {
  8840. margin-right: 0.25rem !important;
  8841. }
  8842. .me-lg-2 {
  8843. margin-right: 0.5rem !important;
  8844. }
  8845. .me-lg-3 {
  8846. margin-right: 1rem !important;
  8847. }
  8848. .me-lg-4 {
  8849. margin-right: 1.5rem !important;
  8850. }
  8851. .me-lg-5 {
  8852. margin-right: 3rem !important;
  8853. }
  8854. .me-lg-auto {
  8855. margin-right: auto !important;
  8856. }
  8857. .mb-lg-0 {
  8858. margin-bottom: 0 !important;
  8859. }
  8860. .mb-lg-1 {
  8861. margin-bottom: 0.25rem !important;
  8862. }
  8863. .mb-lg-2 {
  8864. margin-bottom: 0.5rem !important;
  8865. }
  8866. .mb-lg-3 {
  8867. margin-bottom: 1rem !important;
  8868. }
  8869. .mb-lg-4 {
  8870. margin-bottom: 1.5rem !important;
  8871. }
  8872. .mb-lg-5 {
  8873. margin-bottom: 3rem !important;
  8874. }
  8875. .mb-lg-auto {
  8876. margin-bottom: auto !important;
  8877. }
  8878. .ms-lg-0 {
  8879. margin-left: 0 !important;
  8880. }
  8881. .ms-lg-1 {
  8882. margin-left: 0.25rem !important;
  8883. }
  8884. .ms-lg-2 {
  8885. margin-left: 0.5rem !important;
  8886. }
  8887. .ms-lg-3 {
  8888. margin-left: 1rem !important;
  8889. }
  8890. .ms-lg-4 {
  8891. margin-left: 1.5rem !important;
  8892. }
  8893. .ms-lg-5 {
  8894. margin-left: 3rem !important;
  8895. }
  8896. .ms-lg-auto {
  8897. margin-left: auto !important;
  8898. }
  8899. .p-lg-0 {
  8900. padding: 0 !important;
  8901. }
  8902. .p-lg-1 {
  8903. padding: 0.25rem !important;
  8904. }
  8905. .p-lg-2 {
  8906. padding: 0.5rem !important;
  8907. }
  8908. .p-lg-3 {
  8909. padding: 1rem !important;
  8910. }
  8911. .p-lg-4 {
  8912. padding: 1.5rem !important;
  8913. }
  8914. .p-lg-5 {
  8915. padding: 3rem !important;
  8916. }
  8917. .px-lg-0 {
  8918. padding-right: 0 !important;
  8919. padding-left: 0 !important;
  8920. }
  8921. .px-lg-1 {
  8922. padding-right: 0.25rem !important;
  8923. padding-left: 0.25rem !important;
  8924. }
  8925. .px-lg-2 {
  8926. padding-right: 0.5rem !important;
  8927. padding-left: 0.5rem !important;
  8928. }
  8929. .px-lg-3 {
  8930. padding-right: 1rem !important;
  8931. padding-left: 1rem !important;
  8932. }
  8933. .px-lg-4 {
  8934. padding-right: 1.5rem !important;
  8935. padding-left: 1.5rem !important;
  8936. }
  8937. .px-lg-5 {
  8938. padding-right: 3rem !important;
  8939. padding-left: 3rem !important;
  8940. }
  8941. .py-lg-0 {
  8942. padding-top: 0 !important;
  8943. padding-bottom: 0 !important;
  8944. }
  8945. .py-lg-1 {
  8946. padding-top: 0.25rem !important;
  8947. padding-bottom: 0.25rem !important;
  8948. }
  8949. .py-lg-2 {
  8950. padding-top: 0.5rem !important;
  8951. padding-bottom: 0.5rem !important;
  8952. }
  8953. .py-lg-3 {
  8954. padding-top: 1rem !important;
  8955. padding-bottom: 1rem !important;
  8956. }
  8957. .py-lg-4 {
  8958. padding-top: 1.5rem !important;
  8959. padding-bottom: 1.5rem !important;
  8960. }
  8961. .py-lg-5 {
  8962. padding-top: 3rem !important;
  8963. padding-bottom: 3rem !important;
  8964. }
  8965. .pt-lg-0 {
  8966. padding-top: 0 !important;
  8967. }
  8968. .pt-lg-1 {
  8969. padding-top: 0.25rem !important;
  8970. }
  8971. .pt-lg-2 {
  8972. padding-top: 0.5rem !important;
  8973. }
  8974. .pt-lg-3 {
  8975. padding-top: 1rem !important;
  8976. }
  8977. .pt-lg-4 {
  8978. padding-top: 1.5rem !important;
  8979. }
  8980. .pt-lg-5 {
  8981. padding-top: 3rem !important;
  8982. }
  8983. .pe-lg-0 {
  8984. padding-right: 0 !important;
  8985. }
  8986. .pe-lg-1 {
  8987. padding-right: 0.25rem !important;
  8988. }
  8989. .pe-lg-2 {
  8990. padding-right: 0.5rem !important;
  8991. }
  8992. .pe-lg-3 {
  8993. padding-right: 1rem !important;
  8994. }
  8995. .pe-lg-4 {
  8996. padding-right: 1.5rem !important;
  8997. }
  8998. .pe-lg-5 {
  8999. padding-right: 3rem !important;
  9000. }
  9001. .pb-lg-0 {
  9002. padding-bottom: 0 !important;
  9003. }
  9004. .pb-lg-1 {
  9005. padding-bottom: 0.25rem !important;
  9006. }
  9007. .pb-lg-2 {
  9008. padding-bottom: 0.5rem !important;
  9009. }
  9010. .pb-lg-3 {
  9011. padding-bottom: 1rem !important;
  9012. }
  9013. .pb-lg-4 {
  9014. padding-bottom: 1.5rem !important;
  9015. }
  9016. .pb-lg-5 {
  9017. padding-bottom: 3rem !important;
  9018. }
  9019. .ps-lg-0 {
  9020. padding-left: 0 !important;
  9021. }
  9022. .ps-lg-1 {
  9023. padding-left: 0.25rem !important;
  9024. }
  9025. .ps-lg-2 {
  9026. padding-left: 0.5rem !important;
  9027. }
  9028. .ps-lg-3 {
  9029. padding-left: 1rem !important;
  9030. }
  9031. .ps-lg-4 {
  9032. padding-left: 1.5rem !important;
  9033. }
  9034. .ps-lg-5 {
  9035. padding-left: 3rem !important;
  9036. }
  9037. .gap-lg-0 {
  9038. gap: 0 !important;
  9039. }
  9040. .gap-lg-1 {
  9041. gap: 0.25rem !important;
  9042. }
  9043. .gap-lg-2 {
  9044. gap: 0.5rem !important;
  9045. }
  9046. .gap-lg-3 {
  9047. gap: 1rem !important;
  9048. }
  9049. .gap-lg-4 {
  9050. gap: 1.5rem !important;
  9051. }
  9052. .gap-lg-5 {
  9053. gap: 3rem !important;
  9054. }
  9055. .text-lg-start {
  9056. text-align: left !important;
  9057. }
  9058. .text-lg-end {
  9059. text-align: right !important;
  9060. }
  9061. .text-lg-center {
  9062. text-align: center !important;
  9063. }
  9064. }
  9065. @media (min-width: 1200px) {
  9066. .float-xl-start {
  9067. float: left !important;
  9068. }
  9069. .float-xl-end {
  9070. float: right !important;
  9071. }
  9072. .float-xl-none {
  9073. float: none !important;
  9074. }
  9075. .d-xl-inline {
  9076. display: inline !important;
  9077. }
  9078. .d-xl-inline-block {
  9079. display: inline-block !important;
  9080. }
  9081. .d-xl-block {
  9082. display: block !important;
  9083. }
  9084. .d-xl-grid {
  9085. display: grid !important;
  9086. }
  9087. .d-xl-table {
  9088. display: table !important;
  9089. }
  9090. .d-xl-table-row {
  9091. display: table-row !important;
  9092. }
  9093. .d-xl-table-cell {
  9094. display: table-cell !important;
  9095. }
  9096. .d-xl-flex {
  9097. display: flex !important;
  9098. }
  9099. .d-xl-inline-flex {
  9100. display: inline-flex !important;
  9101. }
  9102. .d-xl-none {
  9103. display: none !important;
  9104. }
  9105. .flex-xl-fill {
  9106. flex: 1 1 auto !important;
  9107. }
  9108. .flex-xl-row {
  9109. flex-direction: row !important;
  9110. }
  9111. .flex-xl-column {
  9112. flex-direction: column !important;
  9113. }
  9114. .flex-xl-row-reverse {
  9115. flex-direction: row-reverse !important;
  9116. }
  9117. .flex-xl-column-reverse {
  9118. flex-direction: column-reverse !important;
  9119. }
  9120. .flex-xl-grow-0 {
  9121. flex-grow: 0 !important;
  9122. }
  9123. .flex-xl-grow-1 {
  9124. flex-grow: 1 !important;
  9125. }
  9126. .flex-xl-shrink-0 {
  9127. flex-shrink: 0 !important;
  9128. }
  9129. .flex-xl-shrink-1 {
  9130. flex-shrink: 1 !important;
  9131. }
  9132. .flex-xl-wrap {
  9133. flex-wrap: wrap !important;
  9134. }
  9135. .flex-xl-nowrap {
  9136. flex-wrap: nowrap !important;
  9137. }
  9138. .flex-xl-wrap-reverse {
  9139. flex-wrap: wrap-reverse !important;
  9140. }
  9141. .justify-content-xl-start {
  9142. justify-content: flex-start !important;
  9143. }
  9144. .justify-content-xl-end {
  9145. justify-content: flex-end !important;
  9146. }
  9147. .justify-content-xl-center {
  9148. justify-content: center !important;
  9149. }
  9150. .justify-content-xl-between {
  9151. justify-content: space-between !important;
  9152. }
  9153. .justify-content-xl-around {
  9154. justify-content: space-around !important;
  9155. }
  9156. .justify-content-xl-evenly {
  9157. justify-content: space-evenly !important;
  9158. }
  9159. .align-items-xl-start {
  9160. align-items: flex-start !important;
  9161. }
  9162. .align-items-xl-end {
  9163. align-items: flex-end !important;
  9164. }
  9165. .align-items-xl-center {
  9166. align-items: center !important;
  9167. }
  9168. .align-items-xl-baseline {
  9169. align-items: baseline !important;
  9170. }
  9171. .align-items-xl-stretch {
  9172. align-items: stretch !important;
  9173. }
  9174. .align-content-xl-start {
  9175. align-content: flex-start !important;
  9176. }
  9177. .align-content-xl-end {
  9178. align-content: flex-end !important;
  9179. }
  9180. .align-content-xl-center {
  9181. align-content: center !important;
  9182. }
  9183. .align-content-xl-between {
  9184. align-content: space-between !important;
  9185. }
  9186. .align-content-xl-around {
  9187. align-content: space-around !important;
  9188. }
  9189. .align-content-xl-stretch {
  9190. align-content: stretch !important;
  9191. }
  9192. .align-self-xl-auto {
  9193. align-self: auto !important;
  9194. }
  9195. .align-self-xl-start {
  9196. align-self: flex-start !important;
  9197. }
  9198. .align-self-xl-end {
  9199. align-self: flex-end !important;
  9200. }
  9201. .align-self-xl-center {
  9202. align-self: center !important;
  9203. }
  9204. .align-self-xl-baseline {
  9205. align-self: baseline !important;
  9206. }
  9207. .align-self-xl-stretch {
  9208. align-self: stretch !important;
  9209. }
  9210. .order-xl-first {
  9211. order: -1 !important;
  9212. }
  9213. .order-xl-0 {
  9214. order: 0 !important;
  9215. }
  9216. .order-xl-1 {
  9217. order: 1 !important;
  9218. }
  9219. .order-xl-2 {
  9220. order: 2 !important;
  9221. }
  9222. .order-xl-3 {
  9223. order: 3 !important;
  9224. }
  9225. .order-xl-4 {
  9226. order: 4 !important;
  9227. }
  9228. .order-xl-5 {
  9229. order: 5 !important;
  9230. }
  9231. .order-xl-last {
  9232. order: 6 !important;
  9233. }
  9234. .m-xl-0 {
  9235. margin: 0 !important;
  9236. }
  9237. .m-xl-1 {
  9238. margin: 0.25rem !important;
  9239. }
  9240. .m-xl-2 {
  9241. margin: 0.5rem !important;
  9242. }
  9243. .m-xl-3 {
  9244. margin: 1rem !important;
  9245. }
  9246. .m-xl-4 {
  9247. margin: 1.5rem !important;
  9248. }
  9249. .m-xl-5 {
  9250. margin: 3rem !important;
  9251. }
  9252. .m-xl-auto {
  9253. margin: auto !important;
  9254. }
  9255. .mx-xl-0 {
  9256. margin-right: 0 !important;
  9257. margin-left: 0 !important;
  9258. }
  9259. .mx-xl-1 {
  9260. margin-right: 0.25rem !important;
  9261. margin-left: 0.25rem !important;
  9262. }
  9263. .mx-xl-2 {
  9264. margin-right: 0.5rem !important;
  9265. margin-left: 0.5rem !important;
  9266. }
  9267. .mx-xl-3 {
  9268. margin-right: 1rem !important;
  9269. margin-left: 1rem !important;
  9270. }
  9271. .mx-xl-4 {
  9272. margin-right: 1.5rem !important;
  9273. margin-left: 1.5rem !important;
  9274. }
  9275. .mx-xl-5 {
  9276. margin-right: 3rem !important;
  9277. margin-left: 3rem !important;
  9278. }
  9279. .mx-xl-auto {
  9280. margin-right: auto !important;
  9281. margin-left: auto !important;
  9282. }
  9283. .my-xl-0 {
  9284. margin-top: 0 !important;
  9285. margin-bottom: 0 !important;
  9286. }
  9287. .my-xl-1 {
  9288. margin-top: 0.25rem !important;
  9289. margin-bottom: 0.25rem !important;
  9290. }
  9291. .my-xl-2 {
  9292. margin-top: 0.5rem !important;
  9293. margin-bottom: 0.5rem !important;
  9294. }
  9295. .my-xl-3 {
  9296. margin-top: 1rem !important;
  9297. margin-bottom: 1rem !important;
  9298. }
  9299. .my-xl-4 {
  9300. margin-top: 1.5rem !important;
  9301. margin-bottom: 1.5rem !important;
  9302. }
  9303. .my-xl-5 {
  9304. margin-top: 3rem !important;
  9305. margin-bottom: 3rem !important;
  9306. }
  9307. .my-xl-auto {
  9308. margin-top: auto !important;
  9309. margin-bottom: auto !important;
  9310. }
  9311. .mt-xl-0 {
  9312. margin-top: 0 !important;
  9313. }
  9314. .mt-xl-1 {
  9315. margin-top: 0.25rem !important;
  9316. }
  9317. .mt-xl-2 {
  9318. margin-top: 0.5rem !important;
  9319. }
  9320. .mt-xl-3 {
  9321. margin-top: 1rem !important;
  9322. }
  9323. .mt-xl-4 {
  9324. margin-top: 1.5rem !important;
  9325. }
  9326. .mt-xl-5 {
  9327. margin-top: 3rem !important;
  9328. }
  9329. .mt-xl-auto {
  9330. margin-top: auto !important;
  9331. }
  9332. .me-xl-0 {
  9333. margin-right: 0 !important;
  9334. }
  9335. .me-xl-1 {
  9336. margin-right: 0.25rem !important;
  9337. }
  9338. .me-xl-2 {
  9339. margin-right: 0.5rem !important;
  9340. }
  9341. .me-xl-3 {
  9342. margin-right: 1rem !important;
  9343. }
  9344. .me-xl-4 {
  9345. margin-right: 1.5rem !important;
  9346. }
  9347. .me-xl-5 {
  9348. margin-right: 3rem !important;
  9349. }
  9350. .me-xl-auto {
  9351. margin-right: auto !important;
  9352. }
  9353. .mb-xl-0 {
  9354. margin-bottom: 0 !important;
  9355. }
  9356. .mb-xl-1 {
  9357. margin-bottom: 0.25rem !important;
  9358. }
  9359. .mb-xl-2 {
  9360. margin-bottom: 0.5rem !important;
  9361. }
  9362. .mb-xl-3 {
  9363. margin-bottom: 1rem !important;
  9364. }
  9365. .mb-xl-4 {
  9366. margin-bottom: 1.5rem !important;
  9367. }
  9368. .mb-xl-5 {
  9369. margin-bottom: 3rem !important;
  9370. }
  9371. .mb-xl-auto {
  9372. margin-bottom: auto !important;
  9373. }
  9374. .ms-xl-0 {
  9375. margin-left: 0 !important;
  9376. }
  9377. .ms-xl-1 {
  9378. margin-left: 0.25rem !important;
  9379. }
  9380. .ms-xl-2 {
  9381. margin-left: 0.5rem !important;
  9382. }
  9383. .ms-xl-3 {
  9384. margin-left: 1rem !important;
  9385. }
  9386. .ms-xl-4 {
  9387. margin-left: 1.5rem !important;
  9388. }
  9389. .ms-xl-5 {
  9390. margin-left: 3rem !important;
  9391. }
  9392. .ms-xl-auto {
  9393. margin-left: auto !important;
  9394. }
  9395. .p-xl-0 {
  9396. padding: 0 !important;
  9397. }
  9398. .p-xl-1 {
  9399. padding: 0.25rem !important;
  9400. }
  9401. .p-xl-2 {
  9402. padding: 0.5rem !important;
  9403. }
  9404. .p-xl-3 {
  9405. padding: 1rem !important;
  9406. }
  9407. .p-xl-4 {
  9408. padding: 1.5rem !important;
  9409. }
  9410. .p-xl-5 {
  9411. padding: 3rem !important;
  9412. }
  9413. .px-xl-0 {
  9414. padding-right: 0 !important;
  9415. padding-left: 0 !important;
  9416. }
  9417. .px-xl-1 {
  9418. padding-right: 0.25rem !important;
  9419. padding-left: 0.25rem !important;
  9420. }
  9421. .px-xl-2 {
  9422. padding-right: 0.5rem !important;
  9423. padding-left: 0.5rem !important;
  9424. }
  9425. .px-xl-3 {
  9426. padding-right: 1rem !important;
  9427. padding-left: 1rem !important;
  9428. }
  9429. .px-xl-4 {
  9430. padding-right: 1.5rem !important;
  9431. padding-left: 1.5rem !important;
  9432. }
  9433. .px-xl-5 {
  9434. padding-right: 3rem !important;
  9435. padding-left: 3rem !important;
  9436. }
  9437. .py-xl-0 {
  9438. padding-top: 0 !important;
  9439. padding-bottom: 0 !important;
  9440. }
  9441. .py-xl-1 {
  9442. padding-top: 0.25rem !important;
  9443. padding-bottom: 0.25rem !important;
  9444. }
  9445. .py-xl-2 {
  9446. padding-top: 0.5rem !important;
  9447. padding-bottom: 0.5rem !important;
  9448. }
  9449. .py-xl-3 {
  9450. padding-top: 1rem !important;
  9451. padding-bottom: 1rem !important;
  9452. }
  9453. .py-xl-4 {
  9454. padding-top: 1.5rem !important;
  9455. padding-bottom: 1.5rem !important;
  9456. }
  9457. .py-xl-5 {
  9458. padding-top: 3rem !important;
  9459. padding-bottom: 3rem !important;
  9460. }
  9461. .pt-xl-0 {
  9462. padding-top: 0 !important;
  9463. }
  9464. .pt-xl-1 {
  9465. padding-top: 0.25rem !important;
  9466. }
  9467. .pt-xl-2 {
  9468. padding-top: 0.5rem !important;
  9469. }
  9470. .pt-xl-3 {
  9471. padding-top: 1rem !important;
  9472. }
  9473. .pt-xl-4 {
  9474. padding-top: 1.5rem !important;
  9475. }
  9476. .pt-xl-5 {
  9477. padding-top: 3rem !important;
  9478. }
  9479. .pe-xl-0 {
  9480. padding-right: 0 !important;
  9481. }
  9482. .pe-xl-1 {
  9483. padding-right: 0.25rem !important;
  9484. }
  9485. .pe-xl-2 {
  9486. padding-right: 0.5rem !important;
  9487. }
  9488. .pe-xl-3 {
  9489. padding-right: 1rem !important;
  9490. }
  9491. .pe-xl-4 {
  9492. padding-right: 1.5rem !important;
  9493. }
  9494. .pe-xl-5 {
  9495. padding-right: 3rem !important;
  9496. }
  9497. .pb-xl-0 {
  9498. padding-bottom: 0 !important;
  9499. }
  9500. .pb-xl-1 {
  9501. padding-bottom: 0.25rem !important;
  9502. }
  9503. .pb-xl-2 {
  9504. padding-bottom: 0.5rem !important;
  9505. }
  9506. .pb-xl-3 {
  9507. padding-bottom: 1rem !important;
  9508. }
  9509. .pb-xl-4 {
  9510. padding-bottom: 1.5rem !important;
  9511. }
  9512. .pb-xl-5 {
  9513. padding-bottom: 3rem !important;
  9514. }
  9515. .ps-xl-0 {
  9516. padding-left: 0 !important;
  9517. }
  9518. .ps-xl-1 {
  9519. padding-left: 0.25rem !important;
  9520. }
  9521. .ps-xl-2 {
  9522. padding-left: 0.5rem !important;
  9523. }
  9524. .ps-xl-3 {
  9525. padding-left: 1rem !important;
  9526. }
  9527. .ps-xl-4 {
  9528. padding-left: 1.5rem !important;
  9529. }
  9530. .ps-xl-5 {
  9531. padding-left: 3rem !important;
  9532. }
  9533. .gap-xl-0 {
  9534. gap: 0 !important;
  9535. }
  9536. .gap-xl-1 {
  9537. gap: 0.25rem !important;
  9538. }
  9539. .gap-xl-2 {
  9540. gap: 0.5rem !important;
  9541. }
  9542. .gap-xl-3 {
  9543. gap: 1rem !important;
  9544. }
  9545. .gap-xl-4 {
  9546. gap: 1.5rem !important;
  9547. }
  9548. .gap-xl-5 {
  9549. gap: 3rem !important;
  9550. }
  9551. .text-xl-start {
  9552. text-align: left !important;
  9553. }
  9554. .text-xl-end {
  9555. text-align: right !important;
  9556. }
  9557. .text-xl-center {
  9558. text-align: center !important;
  9559. }
  9560. }
  9561. @media (min-width: 1400px) {
  9562. .float-xxl-start {
  9563. float: left !important;
  9564. }
  9565. .float-xxl-end {
  9566. float: right !important;
  9567. }
  9568. .float-xxl-none {
  9569. float: none !important;
  9570. }
  9571. .d-xxl-inline {
  9572. display: inline !important;
  9573. }
  9574. .d-xxl-inline-block {
  9575. display: inline-block !important;
  9576. }
  9577. .d-xxl-block {
  9578. display: block !important;
  9579. }
  9580. .d-xxl-grid {
  9581. display: grid !important;
  9582. }
  9583. .d-xxl-table {
  9584. display: table !important;
  9585. }
  9586. .d-xxl-table-row {
  9587. display: table-row !important;
  9588. }
  9589. .d-xxl-table-cell {
  9590. display: table-cell !important;
  9591. }
  9592. .d-xxl-flex {
  9593. display: flex !important;
  9594. }
  9595. .d-xxl-inline-flex {
  9596. display: inline-flex !important;
  9597. }
  9598. .d-xxl-none {
  9599. display: none !important;
  9600. }
  9601. .flex-xxl-fill {
  9602. flex: 1 1 auto !important;
  9603. }
  9604. .flex-xxl-row {
  9605. flex-direction: row !important;
  9606. }
  9607. .flex-xxl-column {
  9608. flex-direction: column !important;
  9609. }
  9610. .flex-xxl-row-reverse {
  9611. flex-direction: row-reverse !important;
  9612. }
  9613. .flex-xxl-column-reverse {
  9614. flex-direction: column-reverse !important;
  9615. }
  9616. .flex-xxl-grow-0 {
  9617. flex-grow: 0 !important;
  9618. }
  9619. .flex-xxl-grow-1 {
  9620. flex-grow: 1 !important;
  9621. }
  9622. .flex-xxl-shrink-0 {
  9623. flex-shrink: 0 !important;
  9624. }
  9625. .flex-xxl-shrink-1 {
  9626. flex-shrink: 1 !important;
  9627. }
  9628. .flex-xxl-wrap {
  9629. flex-wrap: wrap !important;
  9630. }
  9631. .flex-xxl-nowrap {
  9632. flex-wrap: nowrap !important;
  9633. }
  9634. .flex-xxl-wrap-reverse {
  9635. flex-wrap: wrap-reverse !important;
  9636. }
  9637. .justify-content-xxl-start {
  9638. justify-content: flex-start !important;
  9639. }
  9640. .justify-content-xxl-end {
  9641. justify-content: flex-end !important;
  9642. }
  9643. .justify-content-xxl-center {
  9644. justify-content: center !important;
  9645. }
  9646. .justify-content-xxl-between {
  9647. justify-content: space-between !important;
  9648. }
  9649. .justify-content-xxl-around {
  9650. justify-content: space-around !important;
  9651. }
  9652. .justify-content-xxl-evenly {
  9653. justify-content: space-evenly !important;
  9654. }
  9655. .align-items-xxl-start {
  9656. align-items: flex-start !important;
  9657. }
  9658. .align-items-xxl-end {
  9659. align-items: flex-end !important;
  9660. }
  9661. .align-items-xxl-center {
  9662. align-items: center !important;
  9663. }
  9664. .align-items-xxl-baseline {
  9665. align-items: baseline !important;
  9666. }
  9667. .align-items-xxl-stretch {
  9668. align-items: stretch !important;
  9669. }
  9670. .align-content-xxl-start {
  9671. align-content: flex-start !important;
  9672. }
  9673. .align-content-xxl-end {
  9674. align-content: flex-end !important;
  9675. }
  9676. .align-content-xxl-center {
  9677. align-content: center !important;
  9678. }
  9679. .align-content-xxl-between {
  9680. align-content: space-between !important;
  9681. }
  9682. .align-content-xxl-around {
  9683. align-content: space-around !important;
  9684. }
  9685. .align-content-xxl-stretch {
  9686. align-content: stretch !important;
  9687. }
  9688. .align-self-xxl-auto {
  9689. align-self: auto !important;
  9690. }
  9691. .align-self-xxl-start {
  9692. align-self: flex-start !important;
  9693. }
  9694. .align-self-xxl-end {
  9695. align-self: flex-end !important;
  9696. }
  9697. .align-self-xxl-center {
  9698. align-self: center !important;
  9699. }
  9700. .align-self-xxl-baseline {
  9701. align-self: baseline !important;
  9702. }
  9703. .align-self-xxl-stretch {
  9704. align-self: stretch !important;
  9705. }
  9706. .order-xxl-first {
  9707. order: -1 !important;
  9708. }
  9709. .order-xxl-0 {
  9710. order: 0 !important;
  9711. }
  9712. .order-xxl-1 {
  9713. order: 1 !important;
  9714. }
  9715. .order-xxl-2 {
  9716. order: 2 !important;
  9717. }
  9718. .order-xxl-3 {
  9719. order: 3 !important;
  9720. }
  9721. .order-xxl-4 {
  9722. order: 4 !important;
  9723. }
  9724. .order-xxl-5 {
  9725. order: 5 !important;
  9726. }
  9727. .order-xxl-last {
  9728. order: 6 !important;
  9729. }
  9730. .m-xxl-0 {
  9731. margin: 0 !important;
  9732. }
  9733. .m-xxl-1 {
  9734. margin: 0.25rem !important;
  9735. }
  9736. .m-xxl-2 {
  9737. margin: 0.5rem !important;
  9738. }
  9739. .m-xxl-3 {
  9740. margin: 1rem !important;
  9741. }
  9742. .m-xxl-4 {
  9743. margin: 1.5rem !important;
  9744. }
  9745. .m-xxl-5 {
  9746. margin: 3rem !important;
  9747. }
  9748. .m-xxl-auto {
  9749. margin: auto !important;
  9750. }
  9751. .mx-xxl-0 {
  9752. margin-right: 0 !important;
  9753. margin-left: 0 !important;
  9754. }
  9755. .mx-xxl-1 {
  9756. margin-right: 0.25rem !important;
  9757. margin-left: 0.25rem !important;
  9758. }
  9759. .mx-xxl-2 {
  9760. margin-right: 0.5rem !important;
  9761. margin-left: 0.5rem !important;
  9762. }
  9763. .mx-xxl-3 {
  9764. margin-right: 1rem !important;
  9765. margin-left: 1rem !important;
  9766. }
  9767. .mx-xxl-4 {
  9768. margin-right: 1.5rem !important;
  9769. margin-left: 1.5rem !important;
  9770. }
  9771. .mx-xxl-5 {
  9772. margin-right: 3rem !important;
  9773. margin-left: 3rem !important;
  9774. }
  9775. .mx-xxl-auto {
  9776. margin-right: auto !important;
  9777. margin-left: auto !important;
  9778. }
  9779. .my-xxl-0 {
  9780. margin-top: 0 !important;
  9781. margin-bottom: 0 !important;
  9782. }
  9783. .my-xxl-1 {
  9784. margin-top: 0.25rem !important;
  9785. margin-bottom: 0.25rem !important;
  9786. }
  9787. .my-xxl-2 {
  9788. margin-top: 0.5rem !important;
  9789. margin-bottom: 0.5rem !important;
  9790. }
  9791. .my-xxl-3 {
  9792. margin-top: 1rem !important;
  9793. margin-bottom: 1rem !important;
  9794. }
  9795. .my-xxl-4 {
  9796. margin-top: 1.5rem !important;
  9797. margin-bottom: 1.5rem !important;
  9798. }
  9799. .my-xxl-5 {
  9800. margin-top: 3rem !important;
  9801. margin-bottom: 3rem !important;
  9802. }
  9803. .my-xxl-auto {
  9804. margin-top: auto !important;
  9805. margin-bottom: auto !important;
  9806. }
  9807. .mt-xxl-0 {
  9808. margin-top: 0 !important;
  9809. }
  9810. .mt-xxl-1 {
  9811. margin-top: 0.25rem !important;
  9812. }
  9813. .mt-xxl-2 {
  9814. margin-top: 0.5rem !important;
  9815. }
  9816. .mt-xxl-3 {
  9817. margin-top: 1rem !important;
  9818. }
  9819. .mt-xxl-4 {
  9820. margin-top: 1.5rem !important;
  9821. }
  9822. .mt-xxl-5 {
  9823. margin-top: 3rem !important;
  9824. }
  9825. .mt-xxl-auto {
  9826. margin-top: auto !important;
  9827. }
  9828. .me-xxl-0 {
  9829. margin-right: 0 !important;
  9830. }
  9831. .me-xxl-1 {
  9832. margin-right: 0.25rem !important;
  9833. }
  9834. .me-xxl-2 {
  9835. margin-right: 0.5rem !important;
  9836. }
  9837. .me-xxl-3 {
  9838. margin-right: 1rem !important;
  9839. }
  9840. .me-xxl-4 {
  9841. margin-right: 1.5rem !important;
  9842. }
  9843. .me-xxl-5 {
  9844. margin-right: 3rem !important;
  9845. }
  9846. .me-xxl-auto {
  9847. margin-right: auto !important;
  9848. }
  9849. .mb-xxl-0 {
  9850. margin-bottom: 0 !important;
  9851. }
  9852. .mb-xxl-1 {
  9853. margin-bottom: 0.25rem !important;
  9854. }
  9855. .mb-xxl-2 {
  9856. margin-bottom: 0.5rem !important;
  9857. }
  9858. .mb-xxl-3 {
  9859. margin-bottom: 1rem !important;
  9860. }
  9861. .mb-xxl-4 {
  9862. margin-bottom: 1.5rem !important;
  9863. }
  9864. .mb-xxl-5 {
  9865. margin-bottom: 3rem !important;
  9866. }
  9867. .mb-xxl-auto {
  9868. margin-bottom: auto !important;
  9869. }
  9870. .ms-xxl-0 {
  9871. margin-left: 0 !important;
  9872. }
  9873. .ms-xxl-1 {
  9874. margin-left: 0.25rem !important;
  9875. }
  9876. .ms-xxl-2 {
  9877. margin-left: 0.5rem !important;
  9878. }
  9879. .ms-xxl-3 {
  9880. margin-left: 1rem !important;
  9881. }
  9882. .ms-xxl-4 {
  9883. margin-left: 1.5rem !important;
  9884. }
  9885. .ms-xxl-5 {
  9886. margin-left: 3rem !important;
  9887. }
  9888. .ms-xxl-auto {
  9889. margin-left: auto !important;
  9890. }
  9891. .p-xxl-0 {
  9892. padding: 0 !important;
  9893. }
  9894. .p-xxl-1 {
  9895. padding: 0.25rem !important;
  9896. }
  9897. .p-xxl-2 {
  9898. padding: 0.5rem !important;
  9899. }
  9900. .p-xxl-3 {
  9901. padding: 1rem !important;
  9902. }
  9903. .p-xxl-4 {
  9904. padding: 1.5rem !important;
  9905. }
  9906. .p-xxl-5 {
  9907. padding: 3rem !important;
  9908. }
  9909. .px-xxl-0 {
  9910. padding-right: 0 !important;
  9911. padding-left: 0 !important;
  9912. }
  9913. .px-xxl-1 {
  9914. padding-right: 0.25rem !important;
  9915. padding-left: 0.25rem !important;
  9916. }
  9917. .px-xxl-2 {
  9918. padding-right: 0.5rem !important;
  9919. padding-left: 0.5rem !important;
  9920. }
  9921. .px-xxl-3 {
  9922. padding-right: 1rem !important;
  9923. padding-left: 1rem !important;
  9924. }
  9925. .px-xxl-4 {
  9926. padding-right: 1.5rem !important;
  9927. padding-left: 1.5rem !important;
  9928. }
  9929. .px-xxl-5 {
  9930. padding-right: 3rem !important;
  9931. padding-left: 3rem !important;
  9932. }
  9933. .py-xxl-0 {
  9934. padding-top: 0 !important;
  9935. padding-bottom: 0 !important;
  9936. }
  9937. .py-xxl-1 {
  9938. padding-top: 0.25rem !important;
  9939. padding-bottom: 0.25rem !important;
  9940. }
  9941. .py-xxl-2 {
  9942. padding-top: 0.5rem !important;
  9943. padding-bottom: 0.5rem !important;
  9944. }
  9945. .py-xxl-3 {
  9946. padding-top: 1rem !important;
  9947. padding-bottom: 1rem !important;
  9948. }
  9949. .py-xxl-4 {
  9950. padding-top: 1.5rem !important;
  9951. padding-bottom: 1.5rem !important;
  9952. }
  9953. .py-xxl-5 {
  9954. padding-top: 3rem !important;
  9955. padding-bottom: 3rem !important;
  9956. }
  9957. .pt-xxl-0 {
  9958. padding-top: 0 !important;
  9959. }
  9960. .pt-xxl-1 {
  9961. padding-top: 0.25rem !important;
  9962. }
  9963. .pt-xxl-2 {
  9964. padding-top: 0.5rem !important;
  9965. }
  9966. .pt-xxl-3 {
  9967. padding-top: 1rem !important;
  9968. }
  9969. .pt-xxl-4 {
  9970. padding-top: 1.5rem !important;
  9971. }
  9972. .pt-xxl-5 {
  9973. padding-top: 3rem !important;
  9974. }
  9975. .pe-xxl-0 {
  9976. padding-right: 0 !important;
  9977. }
  9978. .pe-xxl-1 {
  9979. padding-right: 0.25rem !important;
  9980. }
  9981. .pe-xxl-2 {
  9982. padding-right: 0.5rem !important;
  9983. }
  9984. .pe-xxl-3 {
  9985. padding-right: 1rem !important;
  9986. }
  9987. .pe-xxl-4 {
  9988. padding-right: 1.5rem !important;
  9989. }
  9990. .pe-xxl-5 {
  9991. padding-right: 3rem !important;
  9992. }
  9993. .pb-xxl-0 {
  9994. padding-bottom: 0 !important;
  9995. }
  9996. .pb-xxl-1 {
  9997. padding-bottom: 0.25rem !important;
  9998. }
  9999. .pb-xxl-2 {
  10000. padding-bottom: 0.5rem !important;
  10001. }
  10002. .pb-xxl-3 {
  10003. padding-bottom: 1rem !important;
  10004. }
  10005. .pb-xxl-4 {
  10006. padding-bottom: 1.5rem !important;
  10007. }
  10008. .pb-xxl-5 {
  10009. padding-bottom: 3rem !important;
  10010. }
  10011. .ps-xxl-0 {
  10012. padding-left: 0 !important;
  10013. }
  10014. .ps-xxl-1 {
  10015. padding-left: 0.25rem !important;
  10016. }
  10017. .ps-xxl-2 {
  10018. padding-left: 0.5rem !important;
  10019. }
  10020. .ps-xxl-3 {
  10021. padding-left: 1rem !important;
  10022. }
  10023. .ps-xxl-4 {
  10024. padding-left: 1.5rem !important;
  10025. }
  10026. .ps-xxl-5 {
  10027. padding-left: 3rem !important;
  10028. }
  10029. .gap-xxl-0 {
  10030. gap: 0 !important;
  10031. }
  10032. .gap-xxl-1 {
  10033. gap: 0.25rem !important;
  10034. }
  10035. .gap-xxl-2 {
  10036. gap: 0.5rem !important;
  10037. }
  10038. .gap-xxl-3 {
  10039. gap: 1rem !important;
  10040. }
  10041. .gap-xxl-4 {
  10042. gap: 1.5rem !important;
  10043. }
  10044. .gap-xxl-5 {
  10045. gap: 3rem !important;
  10046. }
  10047. .text-xxl-start {
  10048. text-align: left !important;
  10049. }
  10050. .text-xxl-end {
  10051. text-align: right !important;
  10052. }
  10053. .text-xxl-center {
  10054. text-align: center !important;
  10055. }
  10056. }
  10057. @media (min-width: 1200px) {
  10058. .fs-1 {
  10059. font-size: 2.5rem !important;
  10060. }
  10061. .fs-2 {
  10062. font-size: 2rem !important;
  10063. }
  10064. .fs-3 {
  10065. font-size: 1.75rem !important;
  10066. }
  10067. .fs-4 {
  10068. font-size: 1.5rem !important;
  10069. }
  10070. }
  10071. @media print {
  10072. .d-print-inline {
  10073. display: inline !important;
  10074. }
  10075. .d-print-inline-block {
  10076. display: inline-block !important;
  10077. }
  10078. .d-print-block {
  10079. display: block !important;
  10080. }
  10081. .d-print-grid {
  10082. display: grid !important;
  10083. }
  10084. .d-print-table {
  10085. display: table !important;
  10086. }
  10087. .d-print-table-row {
  10088. display: table-row !important;
  10089. }
  10090. .d-print-table-cell {
  10091. display: table-cell !important;
  10092. }
  10093. .d-print-flex {
  10094. display: flex !important;
  10095. }
  10096. .d-print-inline-flex {
  10097. display: inline-flex !important;
  10098. }
  10099. .d-print-none {
  10100. display: none !important;
  10101. }
  10102. }
  10103. html,
  10104. body {
  10105. height: 100%;
  10106. }
  10107. #layoutAuthentication {
  10108. display: flex;
  10109. flex-direction: column;
  10110. min-height: 100vh;
  10111. }
  10112. #layoutAuthentication #layoutAuthentication_content {
  10113. min-width: 0;
  10114. flex-grow: 1;
  10115. }
  10116. #layoutAuthentication #layoutAuthentication_footer {
  10117. min-width: 0;
  10118. }
  10119. #layoutSidenav {
  10120. display: flex;
  10121. }
  10122. #layoutSidenav #layoutSidenav_nav {
  10123. flex-basis: 225px;
  10124. flex-shrink: 0;
  10125. transition: transform 0.15s ease-in-out;
  10126. z-index: 1038;
  10127. transform: translateX(-225px);
  10128. }
  10129. #layoutSidenav #layoutSidenav_content {
  10130. position: relative;
  10131. display: flex;
  10132. flex-direction: column;
  10133. justify-content: space-between;
  10134. min-width: 0;
  10135. flex-grow: 1;
  10136. min-height: calc(100vh - 56px);
  10137. margin-left: -225px;
  10138. }
  10139. .sb-sidenav-toggled #layoutSidenav #layoutSidenav_nav {
  10140. transform: translateX(0);
  10141. }
  10142. .sb-sidenav-toggled #layoutSidenav #layoutSidenav_content:before {
  10143. content: "";
  10144. display: block;
  10145. position: absolute;
  10146. top: 0;
  10147. left: 0;
  10148. width: 100%;
  10149. height: 100%;
  10150. background: #000;
  10151. z-index: 1037;
  10152. opacity: 0.5;
  10153. transition: opacity 0.3s ease-in-out;
  10154. }
  10155. @media (min-width: 992px) {
  10156. #layoutSidenav #layoutSidenav_nav {
  10157. transform: translateX(0);
  10158. }
  10159. #layoutSidenav #layoutSidenav_content {
  10160. margin-left: 0;
  10161. transition: margin 0.15s ease-in-out;
  10162. }
  10163. .sb-sidenav-toggled #layoutSidenav #layoutSidenav_nav {
  10164. transform: translateX(-225px);
  10165. }
  10166. .sb-sidenav-toggled #layoutSidenav #layoutSidenav_content {
  10167. margin-left: -225px;
  10168. }
  10169. .sb-sidenav-toggled #layoutSidenav #layoutSidenav_content:before {
  10170. display: none;
  10171. }
  10172. }
  10173. .sb-nav-fixed .sb-topnav {
  10174. z-index: 1039;
  10175. }
  10176. .sb-nav-fixed #layoutSidenav #layoutSidenav_nav {
  10177. width: 225px;
  10178. height: 100vh;
  10179. z-index: 1038;
  10180. }
  10181. .sb-nav-fixed #layoutSidenav #layoutSidenav_nav .sb-sidenav {
  10182. padding-top: 56px;
  10183. }
  10184. .sb-nav-fixed #layoutSidenav #layoutSidenav_nav .sb-sidenav .sb-sidenav-menu {
  10185. overflow-y: auto;
  10186. }
  10187. .sb-nav-fixed #layoutSidenav #layoutSidenav_content {
  10188. padding-left: 225px;
  10189. top: 56px;
  10190. }
  10191. #layoutError {
  10192. display: flex;
  10193. flex-direction: column;
  10194. min-height: 100vh;
  10195. }
  10196. #layoutError #layoutError_content {
  10197. min-width: 0;
  10198. flex-grow: 1;
  10199. }
  10200. #layoutError #layoutError_footer {
  10201. min-width: 0;
  10202. }
  10203. .img-error {
  10204. max-width: 20rem;
  10205. }
  10206. .nav .nav-link .sb-nav-link-icon,
  10207. .sb-sidenav-menu .nav-link .sb-nav-link-icon {
  10208. margin-right: 0.5rem;
  10209. }
  10210. .sb-topnav {
  10211. padding-left: 0;
  10212. height: 56px;
  10213. z-index: 1039;
  10214. }
  10215. .sb-topnav .navbar-brand {
  10216. width: 225px;
  10217. margin: 0;
  10218. }
  10219. .sb-topnav.navbar-dark #sidebarToggle {
  10220. color: rgba(255, 255, 255, 0.5);
  10221. }
  10222. .sb-topnav.navbar-light #sidebarToggle {
  10223. color: #212529;
  10224. }
  10225. .sb-sidenav {
  10226. display: flex;
  10227. flex-direction: column;
  10228. height: 100%;
  10229. flex-wrap: nowrap;
  10230. }
  10231. .sb-sidenav .sb-sidenav-menu {
  10232. flex-grow: 1;
  10233. }
  10234. .sb-sidenav .sb-sidenav-menu .nav {
  10235. flex-direction: column;
  10236. flex-wrap: nowrap;
  10237. }
  10238. .sb-sidenav .sb-sidenav-menu .nav .sb-sidenav-menu-heading {
  10239. padding: 1.75rem 1rem 0.75rem;
  10240. font-size: 0.75rem;
  10241. font-weight: bold;
  10242. text-transform: uppercase;
  10243. }
  10244. .sb-sidenav .sb-sidenav-menu .nav .nav-link {
  10245. display: flex;
  10246. align-items: center;
  10247. padding-top: 0.75rem;
  10248. padding-bottom: 0.75rem;
  10249. position: relative;
  10250. }
  10251. .sb-sidenav .sb-sidenav-menu .nav .nav-link .sb-nav-link-icon {
  10252. font-size: 0.9rem;
  10253. }
  10254. .sb-sidenav .sb-sidenav-menu .nav .nav-link .sb-sidenav-collapse-arrow {
  10255. display: inline-block;
  10256. margin-left: auto;
  10257. transition: transform 0.15s ease;
  10258. }
  10259. .sb-sidenav .sb-sidenav-menu .nav .nav-link.collapsed .sb-sidenav-collapse-arrow {
  10260. transform: rotate(-90deg);
  10261. }
  10262. .sb-sidenav .sb-sidenav-menu .nav .sb-sidenav-menu-nested {
  10263. margin-left: 1.5rem;
  10264. flex-direction: column;
  10265. }
  10266. .sb-sidenav .sb-sidenav-footer {
  10267. padding: 0.75rem;
  10268. flex-shrink: 0;
  10269. }
  10270. .sb-sidenav-dark {
  10271. background-color: #212529;
  10272. color: rgba(255, 255, 255, 0.5);
  10273. }
  10274. .sb-sidenav-dark .sb-sidenav-menu .sb-sidenav-menu-heading {
  10275. color: rgba(255, 255, 255, 0.25);
  10276. }
  10277. .sb-sidenav-dark .sb-sidenav-menu .nav-link {
  10278. color: rgba(255, 255, 255, 0.5);
  10279. }
  10280. .sb-sidenav-dark .sb-sidenav-menu .nav-link .sb-nav-link-icon {
  10281. color: rgba(255, 255, 255, 0.25);
  10282. }
  10283. .sb-sidenav-dark .sb-sidenav-menu .nav-link .sb-sidenav-collapse-arrow {
  10284. color: rgba(255, 255, 255, 0.25);
  10285. }
  10286. .sb-sidenav-dark .sb-sidenav-menu .nav-link:hover {
  10287. color: #fff;
  10288. }
  10289. .sb-sidenav-dark .sb-sidenav-menu .nav-link.active {
  10290. color: #fff;
  10291. }
  10292. .sb-sidenav-dark .sb-sidenav-menu .nav-link.active .sb-nav-link-icon {
  10293. color: #fff;
  10294. }
  10295. .sb-sidenav-dark .sb-sidenav-footer {
  10296. background-color: #343a40;
  10297. }
  10298. .sb-sidenav-light {
  10299. background-color: #f8f9fa;
  10300. color: #212529;
  10301. }
  10302. .sb-sidenav-light .sb-sidenav-menu .sb-sidenav-menu-heading {
  10303. color: #adb5bd;
  10304. }
  10305. .sb-sidenav-light .sb-sidenav-menu .nav-link {
  10306. color: #212529;
  10307. }
  10308. .sb-sidenav-light .sb-sidenav-menu .nav-link .sb-nav-link-icon {
  10309. color: #adb5bd;
  10310. }
  10311. .sb-sidenav-light .sb-sidenav-menu .nav-link .sb-sidenav-collapse-arrow {
  10312. color: #adb5bd;
  10313. }
  10314. .sb-sidenav-light .sb-sidenav-menu .nav-link:hover {
  10315. color: #0d6efd;
  10316. }
  10317. .sb-sidenav-light .sb-sidenav-menu .nav-link.active {
  10318. color: #0d6efd;
  10319. }
  10320. .sb-sidenav-light .sb-sidenav-menu .nav-link.active .sb-nav-link-icon {
  10321. color: #0d6efd;
  10322. }
  10323. .sb-sidenav-light .sb-sidenav-footer {
  10324. background-color: #e9ecef;
  10325. }
  10326. .datatable-wrapper .datatable-container {
  10327. font-size: 0.875rem;
  10328. }
  10329. .datatable-wrapper.no-header .datatable-container {
  10330. border-top: none;
  10331. }
  10332. .datatable-wrapper.no-footer .datatable-container {
  10333. border-bottom: none;
  10334. }
  10335. .datatable-top {
  10336. padding: 0 0 1rem;
  10337. }
  10338. .datatable-bottom {
  10339. padding: 0;
  10340. }
  10341. .datatable-top > nav:first-child,
  10342. .datatable-top > div:first-child,
  10343. .datatable-bottom > nav:first-child,
  10344. .datatable-bottom > div:first-child {
  10345. float: left;
  10346. }
  10347. .datatable-top > nav:last-child,
  10348. .datatable-top > div:last-child,
  10349. .datatable-bottom > nav:last-child,
  10350. .datatable-bottom > div:last-child {
  10351. float: right;
  10352. }
  10353. .datatable-selector {
  10354. width: auto;
  10355. display: inline-block;
  10356. padding-left: 1.125rem;
  10357. padding-right: 2.125rem;
  10358. margin-right: 0.25rem;
  10359. }
  10360. .datatable-info {
  10361. margin: 7px 0;
  10362. }
  10363. /* PAGER */
  10364. .datatable-pagination a:hover {
  10365. background-color: #e9ecef;
  10366. }
  10367. .datatable-pagination .active a,
  10368. .datatable-pagination .active a:focus,
  10369. .datatable-pagination .active a:hover {
  10370. background-color: #0d6efd;
  10371. }
  10372. .datatable-pagination .ellipsis a,
  10373. .datatable-pagination .disabled a,
  10374. .datatable-pagination .disabled a:focus,
  10375. .datatable-pagination .disabled a:hover {
  10376. cursor: not-allowed;
  10377. }
  10378. .datatable-pagination .disabled a,
  10379. .datatable-pagination .disabled a:focus,
  10380. .datatable-pagination .disabled a:hover {
  10381. cursor: not-allowed;
  10382. opacity: 0.4;
  10383. }
  10384. .datatable-pagination .pager a {
  10385. font-weight: bold;
  10386. }
  10387. /* TABLE */
  10388. .datatable-table {
  10389. border-collapse: collapse;
  10390. }
  10391. .datatable-table > tbody > tr > td,
  10392. .datatable-table > tbody > tr > th,
  10393. .datatable-table > tfoot > tr > td,
  10394. .datatable-table > tfoot > tr > th,
  10395. .datatable-table > thead > tr > td,
  10396. .datatable-table > thead > tr > th {
  10397. vertical-align: top;
  10398. padding: 0.5rem 0.5rem;
  10399. }
  10400. .datatable-table > thead > tr > th {
  10401. vertical-align: bottom;
  10402. text-align: left;
  10403. border-bottom: none;
  10404. }
  10405. .datatable-table > tfoot > tr > th {
  10406. vertical-align: bottom;
  10407. text-align: left;
  10408. }
  10409. .datatable-table th {
  10410. vertical-align: bottom;
  10411. text-align: left;
  10412. }
  10413. .datatable-table th a {
  10414. text-decoration: none;
  10415. color: inherit;
  10416. }
  10417. .datatable-sorter {
  10418. display: inline-block;
  10419. height: 100%;
  10420. position: relative;
  10421. width: 100%;
  10422. padding-right: 1rem;
  10423. }
  10424. .datatable-sorter::before,
  10425. .datatable-sorter::after {
  10426. content: "";
  10427. height: 0;
  10428. width: 0;
  10429. position: absolute;
  10430. right: 4px;
  10431. border-left: 4px solid transparent;
  10432. border-right: 4px solid transparent;
  10433. opacity: 0.2;
  10434. }
  10435. .datatable-sorter::before {
  10436. bottom: 4px;
  10437. }
  10438. .datatable-sorter::after {
  10439. top: 0px;
  10440. }
  10441. .asc .datatable-sorter::after,
  10442. .desc .datatable-sorter::before {
  10443. opacity: 0.6;
  10444. }
  10445. .datatables-empty {
  10446. text-align: center;
  10447. }
  10448. .datatable-top::after,
  10449. .datatable-bottom::after {
  10450. clear: both;
  10451. content: " ";
  10452. display: table;
  10453. }
  10454. .datatable-pagination li.datatable-hidden {
  10455. visibility: visible;
  10456. }
  10457. .btn-datatable {
  10458. height: 20px !important;
  10459. width: 20px !important;
  10460. font-size: 0.75rem;
  10461. border-radius: 0.375rem !important;
  10462. }