cosmo-bootstrap.css 193 KB

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