spacelab-bootstrap.css 205 KB

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