lumen-bootstrap.css 212 KB

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