styles.css 209 KB

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