foo.css 247 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332
  1. /*
  2. * Cirrus 0.6.2.1
  3. * Stanley Lim, Copyright 2021
  4. * https://spiderpig86.github.io/Cirrus
  5. */
  6. /* BASE STYLING FOR CIRRUS */
  7. @import url("https://fonts.googleapis.com/css?family=Montserrat:400,700|Nunito+Sans:400,700");
  8. * {
  9. margin: 0;
  10. padding: 0;
  11. /* Prevent setting borders from increasing the size of an elrement */
  12. box-sizing: border-box;
  13. text-rendering: optimizeLegibility;
  14. -webkit-font-smoothing: antialiased;
  15. -moz-osx-font-smoothing: grayscale;
  16. -webkit-tap-highlight-color: transparent; }
  17. html,
  18. body {
  19. margin: 0;
  20. padding: 0;
  21. border: none;
  22. height: 100%; }
  23. /* Nunito Sans for the font */
  24. body {
  25. letter-spacing: 0.01rem;
  26. line-height: 1.8;
  27. /* Globally adjust line height */
  28. font-size: 1rem;
  29. font-weight: 400;
  30. font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
  31. "Roboto", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji",
  32. "Segoe UI Emoji", "Segoe UI Symbol";
  33. letter-spacing: 0.01rem;
  34. text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  35. color: var(--cirrus-fg); }
  36. /* Remove bullets from unordered lists */
  37. ul {
  38. list-style: none; }
  39. /* Setting up embedded content */
  40. img,
  41. embed,
  42. object,
  43. video {
  44. max-width: 100%;
  45. height: auto; }
  46. .hero.fullscreen video {
  47. height: 100%;
  48. object-fit: fill;
  49. position: absolute;
  50. width: 100%;
  51. z-index: -1; }
  52. iframe {
  53. outline: 0;
  54. border: 1px solid rgba(0, 0, 0, 0.1);
  55. border-radius: 3px;
  56. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); }
  57. article,
  58. aside,
  59. figure,
  60. footer,
  61. header,
  62. hgroup,
  63. section {
  64. display: block; }
  65. input,
  66. optgroup,
  67. select,
  68. textarea {
  69. margin: 0;
  70. font-family: inherit;
  71. font-size: inherit; }
  72. label {
  73. display: inline-block;
  74. margin: 0.25rem 0; }
  75. fieldset {
  76. padding: 1rem; }
  77. fieldset legend {
  78. font-weight: bold; }
  79. [hidden] {
  80. display: none !important; }
  81. /* Selection Color */
  82. ::selection {
  83. background-color: var(--cirrus-select-bg); }
  84. /* When focusing any element */
  85. :focus {
  86. box-shadow: 0 0 0.1rem 0.15rem rgba(240, 61, 77, 0.13);
  87. outline: none; }
  88. /*
  89. Functions
  90. */
  91. /*
  92. Converts a given hex value to RGB.
  93. */
  94. /*
  95. Generates delimited class name prefix.
  96. */
  97. /*
  98. Fetch feature flag for different utility class types for generating viewport classes (e.g., u-flex-sm, u-flex-md, etc.).
  99. */
  100. /*
  101. Functions
  102. */
  103. /*
  104. Converts a given hex value to RGB.
  105. */
  106. /*
  107. Generates delimited class name prefix.
  108. */
  109. /*
  110. Fetch feature flag for different utility class types for generating viewport classes (e.g., u-flex-sm, u-flex-md, etc.).
  111. */
  112. /* Spacing */
  113. /* Fonts */
  114. /* Grid Count */
  115. /* Grid Percents */
  116. /* Tab Sizes */
  117. /* Media Queries */
  118. /* Smaller than the defined pixels are the dimensions for that range */
  119. /* Color scheme for Cirrus */
  120. /* v2 Colors */
  121. :root {
  122. /* v1 Colors */
  123. --cirrus-fg: #374054;
  124. --cirrus-bg: #fff;
  125. --cirrus-primary: #f03d4d;
  126. --cirrus-primary-rgb: 240, 61, 77;
  127. --cirrus-primary-light: #ffdadd;
  128. --cirrus-accent-hover: #d62939;
  129. --cirrus-accent-border: #c21b2b;
  130. --cirrus-light: #f6f9fc;
  131. --cirrus-light-gray: #f8f9fa;
  132. --cirrus-gray: #d5d7dc;
  133. --cirrus-dark-gray: #909090;
  134. --cirrus-dark: #363636;
  135. --cirrus-link: #5e5cc7;
  136. --cirrus-link-dark: #4643e2;
  137. --cirrus-info: #2972fa;
  138. --cirrus-success: #0dd157;
  139. --cirrus-success-rgb: 13, 209, 87;
  140. --cirrus-warning: #fab633;
  141. --cirrus-danger: #fb4143;
  142. --cirrus-light-hover: #d0e0ef;
  143. --cirrus-dark-hover: #505050;
  144. --cirrus-info-hover: #1062f9;
  145. --cirrus-link-hover: #f8f7ff;
  146. --cirrus-success-hover: #0cb94d;
  147. --cirrus-warning-hover: #f9ad1a;
  148. --cirrus-danger-hover: #eb0507;
  149. --cirrus-select-bg: rgba(0, 161, 255, 0.2);
  150. --cirrus-code-bg: var(--cirrus-primary-light);
  151. --cirrus-code-fg: #dc4753;
  152. --cirrus-form-group-bg: var(--cirrus-light-gray);
  153. --cirrus-form-group-fg: var(--cirrus-dark-gray);
  154. --toast-primary-bg: rgba(49, 59, 80, 0.9);
  155. --animation-duration: 0.2s;
  156. --focus-opacity: 0.55;
  157. --space-size: 0.5rem;
  158. --font-size-xs: 0.7rem;
  159. --font-size-s: 0.85rem;
  160. --font-size-m: 1rem;
  161. --font-size-l: 1.35rem;
  162. --font-size-xl: 1.75rem; }
  163. /*
  164. Global Mixins
  165. */
  166. /*
  167. Group selectors that share common styling.
  168. */
  169. /* Spacing */
  170. /* Fonts */
  171. /* Grid Count */
  172. /* Grid Percents */
  173. /* Tab Sizes */
  174. /* Media Queries */
  175. /* Smaller than the defined pixels are the dimensions for that range */
  176. /*
  177. Functions
  178. */
  179. /*
  180. Converts a given hex value to RGB.
  181. */
  182. /*
  183. Generates delimited class name prefix.
  184. */
  185. /*
  186. Fetch feature flag for different utility class types for generating viewport classes (e.g., u-flex-sm, u-flex-md, etc.).
  187. */
  188. /* Spacing */
  189. /* Fonts */
  190. /* Grid Count */
  191. /* Grid Percents */
  192. /* Tab Sizes */
  193. /* Media Queries */
  194. /* Smaller than the defined pixels are the dimensions for that range */
  195. /* Color scheme for Cirrus */
  196. /* v2 Colors */
  197. :root {
  198. /* v1 Colors */
  199. --cirrus-fg: #374054;
  200. --cirrus-bg: #fff;
  201. --cirrus-primary: #f03d4d;
  202. --cirrus-primary-rgb: 240, 61, 77;
  203. --cirrus-primary-light: #ffdadd;
  204. --cirrus-accent-hover: #d62939;
  205. --cirrus-accent-border: #c21b2b;
  206. --cirrus-light: #f6f9fc;
  207. --cirrus-light-gray: #f8f9fa;
  208. --cirrus-gray: #d5d7dc;
  209. --cirrus-dark-gray: #909090;
  210. --cirrus-dark: #363636;
  211. --cirrus-link: #5e5cc7;
  212. --cirrus-link-dark: #4643e2;
  213. --cirrus-info: #2972fa;
  214. --cirrus-success: #0dd157;
  215. --cirrus-success-rgb: 13, 209, 87;
  216. --cirrus-warning: #fab633;
  217. --cirrus-danger: #fb4143;
  218. --cirrus-light-hover: #d0e0ef;
  219. --cirrus-dark-hover: #505050;
  220. --cirrus-info-hover: #1062f9;
  221. --cirrus-link-hover: #f8f7ff;
  222. --cirrus-success-hover: #0cb94d;
  223. --cirrus-warning-hover: #f9ad1a;
  224. --cirrus-danger-hover: #eb0507;
  225. --cirrus-select-bg: rgba(0, 161, 255, 0.2);
  226. --cirrus-code-bg: var(--cirrus-primary-light);
  227. --cirrus-code-fg: #dc4753;
  228. --cirrus-form-group-bg: var(--cirrus-light-gray);
  229. --cirrus-form-group-fg: var(--cirrus-dark-gray);
  230. --toast-primary-bg: rgba(49, 59, 80, 0.9);
  231. --animation-duration: 0.2s;
  232. --focus-opacity: 0.55;
  233. --space-size: 0.5rem;
  234. --font-size-xs: 0.7rem;
  235. --font-size-s: 0.85rem;
  236. --font-size-m: 1rem;
  237. --font-size-l: 1.35rem;
  238. --font-size-xl: 1.75rem; }
  239. /* BUTTONS */
  240. /* Button styling */
  241. /* Un-themed */
  242. .btn, button, [type="submit"], [type="reset"], [type="button"] {
  243. line-height: 2rem;
  244. overflow: hidden;
  245. padding: 0.5rem 1rem;
  246. border: 1px solid transparent;
  247. border-radius: 0.25rem;
  248. cursor: pointer;
  249. text-align: center;
  250. transition: all var(--animation-duration);
  251. background-color: var(--btn-color);
  252. border-color: var(--btn-border-color);
  253. color: var(--btn-fg);
  254. font-size: 0.75rem;
  255. letter-spacing: 0.03rem;
  256. text-transform: uppercase;
  257. font-family: Montserrat;
  258. min-width: 2rem;
  259. user-select: none;
  260. margin-bottom: 1rem;
  261. outline: none;
  262. --btn-color: #f8f9fa;
  263. --btn-fg: #495057;
  264. --btn-border-color: #e9ecef;
  265. /* Base States */
  266. /* Loading Button*/
  267. /* Make the loading circle, if present, white when button is active */
  268. /* Animated Button */
  269. /* Close Button */
  270. /* BUTTON STYLES */
  271. /* Regular */
  272. /* Extra small button */
  273. /* Small button */
  274. /* Big button */
  275. /* STATES */
  276. /* GLYPHS */
  277. /* Alternatives to pad-left and pad-right */ }
  278. .btn:hover, button:hover, [type="submit"]:hover, [type="reset"]:hover, [type="button"]:hover {
  279. transition: all var(--animation-duration);
  280. --btn-color: #f1f3f5;
  281. color: var(--btn-fg); }
  282. .btn:active, button:active, [type="submit"]:active, [type="reset"]:active, [type="button"]:active {
  283. transition: var(--animation-duration) ease; }
  284. .btn:focus, button:focus, [type="submit"]:focus, [type="reset"]:focus, [type="button"]:focus {
  285. outline: none; }
  286. .btn:disabled, button:disabled, [type="submit"]:disabled, [type="reset"]:disabled, [type="button"]:disabled {
  287. cursor: not-allowed;
  288. opacity: 0.5; }
  289. .btn:disabled:active, button:disabled:active, [type="submit"]:disabled:active, [type="reset"]:disabled:active, [type="button"]:disabled:active {
  290. pointer-events: none; }
  291. .btn.outline, button.outline, [type="submit"].outline, [type="reset"].outline, [type="button"].outline {
  292. --btn-color: transparent; }
  293. .btn.outline:hover, button.outline:hover, [type="submit"].outline:hover, [type="reset"].outline:hover, [type="button"].outline:hover {
  294. --btn-color: #e9ecef; }
  295. .btn.loading:active::after, button.loading:active::after, [type="submit"].loading:active::after, [type="reset"].loading:active::after, [type="button"].loading:active::after {
  296. border-radius: 50%;
  297. border-right-color: transparent;
  298. border-top-color: transparent;
  299. transition: var(--animation-duration) ease; }
  300. .btn.btn-animated, button.btn-animated, [type="submit"].btn-animated, [type="reset"].btn-animated, [type="button"].btn-animated {
  301. transition: calc(var(--animation-duration) / 2) ease; }
  302. .btn.btn-animated:active, button.btn-animated:active, [type="submit"].btn-animated:active, [type="reset"].btn-animated:active, [type="button"].btn-animated:active {
  303. -webkit-transform: scale(0.95);
  304. transform: scale(0.95);
  305. transition: calc(var(--animation-duration) / 2) ease; }
  306. .btn.btn-close, button.btn-close, [type="submit"].btn-close, [type="reset"].btn-close, [type="button"].btn-close {
  307. background-color: rgba(10, 10, 10, 0.2);
  308. border: none;
  309. border-radius: 290486px;
  310. cursor: pointer;
  311. display: inline-block;
  312. flex-grow: 0;
  313. flex-shrink: 0;
  314. font-size: 0;
  315. height: 20px;
  316. outline: 0;
  317. position: relative;
  318. vertical-align: top;
  319. width: 20px;
  320. padding: 0;
  321. min-width: 20px;
  322. /* Render the x in the close button */ }
  323. .btn.btn-close:hover, button.btn-close:hover, [type="submit"].btn-close:hover, [type="reset"].btn-close:hover, [type="button"].btn-close:hover {
  324. background-color: rgba(10, 10, 10, 0.3); }
  325. .btn.btn-close::before, button.btn-close::before, [type="submit"].btn-close::before, [type="reset"].btn-close::before, [type="button"].btn-close::before {
  326. background-color: var(--cirrus-bg);
  327. content: '';
  328. display: block;
  329. left: 50%;
  330. position: absolute;
  331. top: 50%;
  332. -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  333. transform: translateX(-50%) translateY(-50%) rotate(45deg);
  334. -webkit-transform-origin: center center;
  335. transform-origin: center center;
  336. height: 2px;
  337. width: 50%; }
  338. .btn.btn-close::after, button.btn-close::after, [type="submit"].btn-close::after, [type="reset"].btn-close::after, [type="button"].btn-close::after {
  339. background-color: var(--cirrus-bg);
  340. content: '';
  341. display: block;
  342. left: 50%;
  343. position: absolute;
  344. top: 50%;
  345. -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  346. transform: translateX(-50%) translateY(-50%) rotate(45deg);
  347. -webkit-transform-origin: center center;
  348. transform-origin: center center;
  349. height: 50%;
  350. width: 2px; }
  351. .btn.btn-transparent, button.btn-transparent, [type="submit"].btn-transparent, [type="reset"].btn-transparent, [type="button"].btn-transparent {
  352. --btn-color: transparent;
  353. --btn-fg: var(--cirrus-dark);
  354. --btn-border-color: transparent; }
  355. .btn.btn-transparent:focus, button.btn-transparent:focus, [type="submit"].btn-transparent:focus, [type="reset"].btn-transparent:focus, [type="button"].btn-transparent:focus {
  356. box-shadow: 0 0 0 0.2rem rgba(246, 249, 252, 0.5); }
  357. .btn.btn-transparent:hover, button.btn-transparent:hover, [type="submit"].btn-transparent:hover, [type="reset"].btn-transparent:hover, [type="button"].btn-transparent:hover {
  358. --btn-color: rgba(0, 0, 0, 0.1); }
  359. .btn.btn-transparent.outline, button.btn-transparent.outline, [type="submit"].btn-transparent.outline, [type="reset"].btn-transparent.outline, [type="button"].btn-transparent.outline {
  360. --btn-fg: var(--cirrus-dark); }
  361. .btn.btn-light, button.btn-light, [type="submit"].btn-light, [type="reset"].btn-light, [type="button"].btn-light {
  362. --btn-color: var(--cirrus-light);
  363. --btn-fg: var(--cirrus-dark);
  364. --btn-border-color: var(--cirrus-light); }
  365. .btn.btn-light:hover, button.btn-light:hover, [type="submit"].btn-light:hover, [type="reset"].btn-light:hover, [type="button"].btn-light:hover {
  366. --btn-color: var(--cirrus-light-hover); }
  367. .btn.btn-light:focus, button.btn-light:focus, [type="submit"].btn-light:focus, [type="reset"].btn-light:focus, [type="button"].btn-light:focus {
  368. box-shadow: 0 0 0 0.2rem rgba(246, 249, 252, 0.5); }
  369. .btn.btn-dark, button.btn-dark, [type="submit"].btn-dark, [type="reset"].btn-dark, [type="button"].btn-dark {
  370. --btn-color: var(--cirrus-dark);
  371. --btn-fg: var(--cirrus-light);
  372. --btn-border-color: var(--cirrus-dark); }
  373. .btn.btn-dark:focus, button.btn-dark:focus, [type="submit"].btn-dark:focus, [type="reset"].btn-dark:focus, [type="button"].btn-dark:focus {
  374. box-shadow: 0 0 0 0.2rem rgba(54, 54, 54, 0.5); }
  375. .btn.btn-dark:hover, button.btn-dark:hover, [type="submit"].btn-dark:hover, [type="reset"].btn-dark:hover, [type="button"].btn-dark:hover {
  376. --btn-color: var(--cirrus-dark-hover); }
  377. .btn.btn-dark.outline:hover, button.btn-dark.outline:hover, [type="submit"].btn-dark.outline:hover, [type="reset"].btn-dark.outline:hover, [type="button"].btn-dark.outline:hover {
  378. --btn-color: var(--cirrus-dark); }
  379. .btn.btn-black, button.btn-black, [type="submit"].btn-black, [type="reset"].btn-black, [type="button"].btn-black {
  380. --btn-color: #000;
  381. --btn-fg: var(--cirrus-light);
  382. --btn-border-color: #000; }
  383. .btn.btn-black:focus, button.btn-black:focus, [type="submit"].btn-black:focus, [type="reset"].btn-black:focus, [type="button"].btn-black:focus {
  384. box-shadow: 0 0 0 0.2rem rgba(54, 54, 54, 0.5); }
  385. .btn.btn-black:hover, button.btn-black:hover, [type="submit"].btn-black:hover, [type="reset"].btn-black:hover, [type="button"].btn-black:hover {
  386. --btn-color: #000; }
  387. .btn.btn-primary, button.btn-primary, [type="submit"].btn-primary, [type="reset"].btn-primary, [type="button"].btn-primary {
  388. --btn-color: var(--cirrus-primary);
  389. --btn-fg: var(--cirrus-light);
  390. --btn-border-color: var(--cirrus-accent-border); }
  391. .btn.btn-primary:focus, button.btn-primary:focus, [type="submit"].btn-primary:focus, [type="reset"].btn-primary:focus, [type="button"].btn-primary:focus {
  392. box-shadow: 0 0 0 0.2rem rgba(240, 61, 77, 0.5); }
  393. .btn.btn-primary:hover, button.btn-primary:hover, [type="submit"].btn-primary:hover, [type="reset"].btn-primary:hover, [type="button"].btn-primary:hover {
  394. --btn-color: var(--cirrus-accent-hover); }
  395. .btn.btn-primary.outline:hover, button.btn-primary.outline:hover, [type="submit"].btn-primary.outline:hover, [type="reset"].btn-primary.outline:hover, [type="button"].btn-primary.outline:hover {
  396. --btn-color: var(--cirrus-primary); }
  397. .btn.btn-info, button.btn-info, [type="submit"].btn-info, [type="reset"].btn-info, [type="button"].btn-info {
  398. --btn-color: var(--cirrus-info);
  399. --btn-fg: var(--cirrus-light);
  400. --btn-border-color: var(--cirrus-info); }
  401. .btn.btn-info:focus, button.btn-info:focus, [type="submit"].btn-info:focus, [type="reset"].btn-info:focus, [type="button"].btn-info:focus {
  402. box-shadow: 0 0 0 0.2rem rgba(41, 114, 250, 0.5); }
  403. .btn.btn-info:hover, button.btn-info:hover, [type="submit"].btn-info:hover, [type="reset"].btn-info:hover, [type="button"].btn-info:hover {
  404. --btn-color: var(--cirrus-info-hover); }
  405. .btn.btn-info.outline:hover, button.btn-info.outline:hover, [type="submit"].btn-info.outline:hover, [type="reset"].btn-info.outline:hover, [type="button"].btn-info.outline:hover {
  406. --btn-color: var(--cirrus-info); }
  407. .btn.btn-link, button.btn-link, [type="submit"].btn-link, [type="reset"].btn-link, [type="button"].btn-link {
  408. --btn-color: var(--cirrus-link);
  409. --btn-fg: var(--cirrus-light);
  410. --btn-border-color: var(--cirrus-link); }
  411. .btn.btn-link:focus, button.btn-link:focus, [type="submit"].btn-link:focus, [type="reset"].btn-link:focus, [type="button"].btn-link:focus {
  412. box-shadow: 0 0 0 0.2rem rgba(94, 92, 199, 0.5); }
  413. .btn.btn-link:hover, button.btn-link:hover, [type="submit"].btn-link:hover, [type="reset"].btn-link:hover, [type="button"].btn-link:hover {
  414. --btn-color: var(--cirrus-link-dark); }
  415. .btn.btn-link.outline, button.btn-link.outline, [type="submit"].btn-link.outline, [type="reset"].btn-link.outline, [type="button"].btn-link.outline {
  416. --btn-fg: var(--cirrus-link);
  417. border: 1px solid transparent; }
  418. .btn.btn-link.outline:hover, button.btn-link.outline:hover, [type="submit"].btn-link.outline:hover, [type="reset"].btn-link.outline:hover, [type="button"].btn-link.outline:hover {
  419. --btn-color: var(--cirrus-link-hover);
  420. border: 1px solid transparent;
  421. text-decoration: underline; }
  422. .btn.btn-success, button.btn-success, [type="submit"].btn-success, [type="reset"].btn-success, [type="button"].btn-success {
  423. --btn-color: var(--cirrus-success);
  424. --btn-fg: var(--cirrus-light);
  425. --btn-border-color: var(--cirrus-success); }
  426. .btn.btn-success:focus, button.btn-success:focus, [type="submit"].btn-success:focus, [type="reset"].btn-success:focus, [type="button"].btn-success:focus {
  427. box-shadow: 0 0 0 0.2rem rgba(13, 209, 87, 0.5); }
  428. .btn.btn-success:hover, button.btn-success:hover, [type="submit"].btn-success:hover, [type="reset"].btn-success:hover, [type="button"].btn-success:hover {
  429. --btn-color: var(--cirrus-success-hover); }
  430. .btn.btn-success.outline:hover, button.btn-success.outline:hover, [type="submit"].btn-success.outline:hover, [type="reset"].btn-success.outline:hover, [type="button"].btn-success.outline:hover {
  431. --btn-color: var(--cirrus-success); }
  432. .btn.btn-warning, button.btn-warning, [type="submit"].btn-warning, [type="reset"].btn-warning, [type="button"].btn-warning {
  433. --btn-color: var(--cirrus-warning);
  434. --btn-fg: var(--cirrus-dark);
  435. --btn-border-color: var(--cirrus-warning); }
  436. .btn.btn-warning:focus, button.btn-warning:focus, [type="submit"].btn-warning:focus, [type="reset"].btn-warning:focus, [type="button"].btn-warning:focus {
  437. box-shadow: 0 0 0 0.2rem rgba(250, 182, 51, 0.5); }
  438. .btn.btn-warning:hover, button.btn-warning:hover, [type="submit"].btn-warning:hover, [type="reset"].btn-warning:hover, [type="button"].btn-warning:hover {
  439. --btn-color: var(--cirrus-warning-hover); }
  440. .btn.btn-warning.outline:hover, button.btn-warning.outline:hover, [type="submit"].btn-warning.outline:hover, [type="reset"].btn-warning.outline:hover, [type="button"].btn-warning.outline:hover {
  441. --btn-color: var(--cirrus-warning); }
  442. .btn.btn-danger, button.btn-danger, [type="submit"].btn-danger, [type="reset"].btn-danger, [type="button"].btn-danger {
  443. --btn-color: var(--cirrus-danger);
  444. --btn-fg: var(--cirrus-light);
  445. --btn-border-color: var(--cirrus-danger); }
  446. .btn.btn-danger:focus, button.btn-danger:focus, [type="submit"].btn-danger:focus, [type="reset"].btn-danger:focus, [type="button"].btn-danger:focus {
  447. box-shadow: 0 0 0 0.2rem rgba(251, 65, 67, 0.5); }
  448. .btn.btn-danger:hover, button.btn-danger:hover, [type="submit"].btn-danger:hover, [type="reset"].btn-danger:hover, [type="button"].btn-danger:hover {
  449. --btn-color: var(--cirrus-danger-hover); }
  450. .btn.btn-danger.outline:hover, button.btn-danger.outline:hover, [type="submit"].btn-danger.outline:hover, [type="reset"].btn-danger.outline:hover, [type="button"].btn-danger.outline:hover {
  451. --btn-color: var(--cirrus-danger); }
  452. .btn.btn-xsmall, button.btn-xsmall, [type="submit"].btn-xsmall, [type="reset"].btn-xsmall, [type="button"].btn-xsmall {
  453. padding: 0 0.5rem;
  454. font-size: 50%; }
  455. .btn.btn-small, button.btn-small, [type="submit"].btn-small, [type="reset"].btn-small, [type="button"].btn-small {
  456. padding: 0.25rem 1rem;
  457. font-size: 70%; }
  458. .btn.btn-large, button.btn-large, [type="submit"].btn-large, [type="reset"].btn-large, [type="button"].btn-large {
  459. padding: 0.75rem 2rem;
  460. font-size: 90%; }
  461. .btn.btn-xlarge, button.btn-xlarge, [type="submit"].btn-xlarge, [type="reset"].btn-xlarge, [type="button"].btn-xlarge {
  462. padding: 1rem 2.5rem;
  463. font-size: 110%; }
  464. .btn.btn-success, button.btn-success, [type="submit"].btn-success, [type="reset"].btn-success, [type="button"].btn-success {
  465. border-color: var(--cirrus-success); }
  466. .btn.btn-success:focus, button.btn-success:focus, [type="submit"].btn-success:focus, [type="reset"].btn-success:focus, [type="button"].btn-success:focus {
  467. box-shadow: 0 0 0 0.2rem rgba(13, 209, 87, 0.55), inset 0px 1px 8px rgba(0, 0, 0, 0.07); }
  468. .btn.btn-error, button.btn-error, [type="submit"].btn-error, [type="reset"].btn-error, [type="button"].btn-error {
  469. border-color: var(--cirrus-danger); }
  470. .btn.btn-error:focus, button.btn-error:focus, [type="submit"].btn-error:focus, [type="reset"].btn-error:focus, [type="button"].btn-error:focus {
  471. box-shadow: 0 0 0 0.2rem rgba(251, 65, 67, 0.55), inset 0px 1px 8px rgba(0, 0, 0, 0.07); }
  472. .btn .fa-wrapper.pad-right, button .fa-wrapper.pad-right, [type="submit"] .fa-wrapper.pad-right, [type="reset"] .fa-wrapper.pad-right, [type="button"] .fa-wrapper.pad-right {
  473. margin-right: 0.4rem; }
  474. .btn .fa-wrapper.pad-left, button .fa-wrapper.pad-left, [type="submit"] .fa-wrapper.pad-left, [type="reset"] .fa-wrapper.pad-left, [type="button"] .fa-wrapper.pad-left {
  475. margin-left: 0.4rem; }
  476. .btn span:first-child, button span:first-child, [type="submit"] span:first-child, [type="reset"] span:first-child, [type="button"] span:first-child {
  477. margin-right: 0.2rem; }
  478. .btn span:last-child, button span:last-child, [type="submit"] span:last-child, [type="reset"] span:last-child, [type="button"] span:last-child {
  479. margin-left: 0.2rem; }
  480. [class^='btn-']:not(.btn-container):not(.btn-close),
  481. [class*=' btn-']:not(.btn-container):not(.btn-close) {
  482. background-color: var(--btn-color);
  483. border: 1px solid var(--btn-border-color);
  484. color: var(--btn-fg);
  485. transition: all var(--animation-duration);
  486. /* Outline Variants */ }
  487. [class^='btn-']:not(.btn-container):not(.btn-close):hover,
  488. [class*=' btn-']:not(.btn-container):not(.btn-close):hover {
  489. background-color: var(--btn-color);
  490. border-color: var(--btn-border-color);
  491. transition: all var(--animation-duration); }
  492. [class^='btn-']:not(.btn-container):not(.btn-close).outline,
  493. [class*=' btn-']:not(.btn-container):not(.btn-close).outline {
  494. background-color: transparent;
  495. color: var(--btn-color); }
  496. [class^='btn-']:not(.btn-container):not(.btn-close).outline:hover,
  497. [class*=' btn-']:not(.btn-container):not(.btn-close).outline:hover {
  498. background-color: var(--btn-color);
  499. color: var(--btn-fg);
  500. transition: all var(--animation-duration); }
  501. [class^='btn-']:not(.btn-container):not(.btn-close).outline.btn-transparent,
  502. [class*=' btn-']:not(.btn-container):not(.btn-close).outline.btn-transparent {
  503. color: #495057 !important; }
  504. /* Make the loader white so it is visible */
  505. .loading.btn-accent:after {
  506. border: 2px solid #fff;
  507. border-right-color: transparent;
  508. border-top-color: transparent; }
  509. /* BUTTON GROUPS */
  510. /* Will group buttons with components in a single component */
  511. .btn-group {
  512. display: -webkit-inline-box;
  513. display: inline-flex;
  514. display: -ms-inline-flexbox;
  515. display: -webkit-inline-flex; }
  516. .btn-group .btn, .btn-group button, .btn-group [type="submit"], .btn-group [type="reset"], .btn-group [type="button"] {
  517. -ms-flex: 1 0 auto;
  518. -webkit-box-flex: 1;
  519. flex: 1 0 auto;
  520. margin: 0; }
  521. .btn-group .btn:first-child:not(:last-child), .btn-group button:first-child:not(:last-child), .btn-group [type="submit"]:first-child:not(:last-child), .btn-group [type="reset"]:first-child:not(:last-child), .btn-group [type="button"]:first-child:not(:last-child) {
  522. /* Style the first child in group > 1 buttons */
  523. border-top-right-radius: 0;
  524. border-bottom-right-radius: 0; }
  525. .btn-group .btn:last-child:not(:first-child), .btn-group button:last-child:not(:first-child), .btn-group [type="submit"]:last-child:not(:first-child), .btn-group [type="reset"]:last-child:not(:first-child), .btn-group [type="button"]:last-child:not(:first-child) {
  526. /* Style the last child in group > 1 buttons */
  527. border-top-left-radius: 0;
  528. border-bottom-left-radius: 0;
  529. margin-left: -1px; }
  530. .btn-group .btn:not(:first-child):not(:last-child), .btn-group button:not(:first-child):not(:last-child), .btn-group [type="submit"]:not(:first-child):not(:last-child), .btn-group [type="reset"]:not(:first-child):not(:last-child), .btn-group [type="button"]:not(:first-child):not(:last-child) {
  531. /* Style button in middle of group */
  532. border-radius: 0;
  533. /* Remove roundness from center buttons */
  534. margin-left: -0.1rem; }
  535. .btn-group.btn-group-fill {
  536. /* Makes the button group fill the width and proportion the buttons to fill the space */
  537. display: -webkit-box;
  538. display: flex;
  539. display: -ms-flexbox; }
  540. .btn-group.btn-group-fill .btn, .btn-group.btn-group-fill button, .btn-group.btn-group-fill [type="submit"], .btn-group.btn-group-fill [type="reset"], .btn-group.btn-group-fill [type="button"] {
  541. -ms-flex: 1 0;
  542. -webkit-box-flex: 1;
  543. flex: 1 0;
  544. /* Make the buttons fill the available width and proportion themselves */ }
  545. @media screen and (max-width: 767px) {
  546. .btn-group {
  547. display: flex;
  548. flex-direction: column; }
  549. .btn-group .btn, .btn-group button, .btn-group [type="submit"], .btn-group [type="reset"], .btn-group [type="button"] {
  550. margin-bottom: -1px; }
  551. .btn-group .btn:first-child:not(:last-child), .btn-group button:first-child:not(:last-child), .btn-group [type="submit"]:first-child:not(:last-child), .btn-group [type="reset"]:first-child:not(:last-child), .btn-group [type="button"]:first-child:not(:last-child) {
  552. border-radius: 0.25rem 0.25rem 0 0; }
  553. .btn-group .btn:not(:first-child):not(:last-child), .btn-group button:not(:first-child):not(:last-child), .btn-group [type="submit"]:not(:first-child):not(:last-child), .btn-group [type="reset"]:not(:first-child):not(:last-child), .btn-group [type="button"]:not(:first-child):not(:last-child) {
  554. margin-left: 0; }
  555. .btn-group .btn:last-child:not(:first-child), .btn-group button:last-child:not(:first-child), .btn-group [type="submit"]:last-child:not(:first-child), .btn-group [type="reset"]:last-child:not(:first-child), .btn-group [type="button"]:last-child:not(:first-child) {
  556. border-radius: 0 0 0.25rem 0.25rem;
  557. margin-left: 0; } }
  558. /*
  559. Functions
  560. */
  561. /*
  562. Converts a given hex value to RGB.
  563. */
  564. /*
  565. Generates delimited class name prefix.
  566. */
  567. /*
  568. Fetch feature flag for different utility class types for generating viewport classes (e.g., u-flex-sm, u-flex-md, etc.).
  569. */
  570. /* Spacing */
  571. /* Fonts */
  572. /* Grid Count */
  573. /* Grid Percents */
  574. /* Tab Sizes */
  575. /* Media Queries */
  576. /* Smaller than the defined pixels are the dimensions for that range */
  577. /* Color scheme for Cirrus */
  578. /* v2 Colors */
  579. :root {
  580. /* v1 Colors */
  581. --cirrus-fg: #374054;
  582. --cirrus-bg: #fff;
  583. --cirrus-primary: #f03d4d;
  584. --cirrus-primary-rgb: 240, 61, 77;
  585. --cirrus-primary-light: #ffdadd;
  586. --cirrus-accent-hover: #d62939;
  587. --cirrus-accent-border: #c21b2b;
  588. --cirrus-light: #f6f9fc;
  589. --cirrus-light-gray: #f8f9fa;
  590. --cirrus-gray: #d5d7dc;
  591. --cirrus-dark-gray: #909090;
  592. --cirrus-dark: #363636;
  593. --cirrus-link: #5e5cc7;
  594. --cirrus-link-dark: #4643e2;
  595. --cirrus-info: #2972fa;
  596. --cirrus-success: #0dd157;
  597. --cirrus-success-rgb: 13, 209, 87;
  598. --cirrus-warning: #fab633;
  599. --cirrus-danger: #fb4143;
  600. --cirrus-light-hover: #d0e0ef;
  601. --cirrus-dark-hover: #505050;
  602. --cirrus-info-hover: #1062f9;
  603. --cirrus-link-hover: #f8f7ff;
  604. --cirrus-success-hover: #0cb94d;
  605. --cirrus-warning-hover: #f9ad1a;
  606. --cirrus-danger-hover: #eb0507;
  607. --cirrus-select-bg: rgba(0, 161, 255, 0.2);
  608. --cirrus-code-bg: var(--cirrus-primary-light);
  609. --cirrus-code-fg: #dc4753;
  610. --cirrus-form-group-bg: var(--cirrus-light-gray);
  611. --cirrus-form-group-fg: var(--cirrus-dark-gray);
  612. --toast-primary-bg: rgba(49, 59, 80, 0.9);
  613. --animation-duration: 0.2s;
  614. --focus-opacity: 0.55;
  615. --space-size: 0.5rem;
  616. --font-size-xs: 0.7rem;
  617. --font-size-s: 0.85rem;
  618. --font-size-m: 1rem;
  619. --font-size-l: 1.35rem;
  620. --font-size-xl: 1.75rem; }
  621. /* CODE */
  622. code {
  623. --cirrus-code-label-fg: #868e96;
  624. padding: 0.3rem;
  625. margin: 0.5em 0;
  626. overflow: auto;
  627. background-color: var(--cirrus-code-bg);
  628. color: var(--cirrus-code-fg);
  629. border-radius: 3px;
  630. /* Dark theme for code */ }
  631. code:before {
  632. color: var(--cirrus-code-label-fg);
  633. content: attr(data-lang);
  634. font-size: 0.9rem;
  635. position: absolute;
  636. right: 1rem;
  637. top: 0.7rem; }
  638. code.dark {
  639. --cirrus-code-bg: #343a40;
  640. --cirrus-code-fg: #f8f9fa;
  641. --cirrus-border-left-bg: #212529;
  642. --cirrus-code-label-fg: #ced4da; }
  643. pre > code {
  644. --cirrus-code-bg: #f8f9fa;
  645. --cirrus-code-fg: #343a40;
  646. --cirrus-border-left-bg: #e9ecef;
  647. background-color: var(--cirrus-code-bg);
  648. font-size: 14px;
  649. display: block;
  650. padding: 1rem;
  651. white-space: pre-wrap;
  652. word-wrap: break-word;
  653. font-family: SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
  654. text-align: left;
  655. line-height: 1.5;
  656. -moz-tab-size: 4;
  657. tab-size: 4;
  658. -moz-hyphens: none;
  659. -ms-hyphens: none;
  660. hyphens: none;
  661. border-left: 0.3rem solid var(--cirrus-border-left-bg);
  662. margin: 0;
  663. position: relative;
  664. color: var(--cirrus-code-fg); }
  665. pre > code[data-lang]:not([data-lang='']) {
  666. padding: 2rem 1.5rem 1rem; }
  667. /* Spacing */
  668. /* Fonts */
  669. /* Grid Count */
  670. /* Grid Percents */
  671. /* Tab Sizes */
  672. /* Media Queries */
  673. /* Smaller than the defined pixels are the dimensions for that range */
  674. /*
  675. Functions
  676. */
  677. /*
  678. Converts a given hex value to RGB.
  679. */
  680. /*
  681. Generates delimited class name prefix.
  682. */
  683. /*
  684. Fetch feature flag for different utility class types for generating viewport classes (e.g., u-flex-sm, u-flex-md, etc.).
  685. */
  686. /* Spacing */
  687. /* Fonts */
  688. /* Grid Count */
  689. /* Grid Percents */
  690. /* Tab Sizes */
  691. /* Media Queries */
  692. /* Smaller than the defined pixels are the dimensions for that range */
  693. /* Color scheme for Cirrus */
  694. /* v2 Colors */
  695. @import url("https://fonts.googleapis.com/css?family=Nunito:200,300,400,600,700");
  696. @import url("https://fonts.googleapis.com/css?family=Montserrat:400,700");
  697. :root {
  698. /* v1 Colors */
  699. --cirrus-fg: #374054;
  700. --cirrus-bg: #fff;
  701. --cirrus-primary: #f03d4d;
  702. --cirrus-primary-rgb: 240, 61, 77;
  703. --cirrus-primary-light: #ffdadd;
  704. --cirrus-accent-hover: #d62939;
  705. --cirrus-accent-border: #c21b2b;
  706. --cirrus-light: #f6f9fc;
  707. --cirrus-light-gray: #f8f9fa;
  708. --cirrus-gray: #d5d7dc;
  709. --cirrus-dark-gray: #909090;
  710. --cirrus-dark: #363636;
  711. --cirrus-link: #5e5cc7;
  712. --cirrus-link-dark: #4643e2;
  713. --cirrus-info: #2972fa;
  714. --cirrus-success: #0dd157;
  715. --cirrus-success-rgb: 13, 209, 87;
  716. --cirrus-warning: #fab633;
  717. --cirrus-danger: #fb4143;
  718. --cirrus-light-hover: #d0e0ef;
  719. --cirrus-dark-hover: #505050;
  720. --cirrus-info-hover: #1062f9;
  721. --cirrus-link-hover: #f8f7ff;
  722. --cirrus-success-hover: #0cb94d;
  723. --cirrus-warning-hover: #f9ad1a;
  724. --cirrus-danger-hover: #eb0507;
  725. --cirrus-select-bg: rgba(0, 161, 255, 0.2);
  726. --cirrus-code-bg: var(--cirrus-primary-light);
  727. --cirrus-code-fg: #dc4753;
  728. --cirrus-form-group-bg: var(--cirrus-light-gray);
  729. --cirrus-form-group-fg: var(--cirrus-dark-gray);
  730. --toast-primary-bg: rgba(49, 59, 80, 0.9);
  731. --animation-duration: 0.2s;
  732. --focus-opacity: 0.55;
  733. --space-size: 0.5rem;
  734. --font-size-xs: 0.7rem;
  735. --font-size-s: 0.85rem;
  736. --font-size-m: 1rem;
  737. --font-size-l: 1.35rem;
  738. --font-size-xl: 1.75rem; }
  739. /* FONT */
  740. /* Constants */
  741. /* Headers */
  742. h1 {
  743. font-family: 'Montserrat', sans-serif;
  744. font-size: 2.5rem;
  745. font-weight: 700;
  746. line-height: 1.2;
  747. margin-bottom: 1rem; }
  748. h2 {
  749. font-family: 'Montserrat', sans-serif;
  750. font-size: 2.25rem;
  751. font-weight: 700;
  752. line-height: 1.2;
  753. margin-bottom: 1rem; }
  754. h3 {
  755. font-family: 'Montserrat', sans-serif;
  756. font-size: 2rem;
  757. font-weight: 700;
  758. line-height: 1.2;
  759. margin-bottom: 1rem; }
  760. h4 {
  761. font-family: 'Montserrat', sans-serif;
  762. font-size: 1.75rem;
  763. font-weight: 700;
  764. line-height: 1.2;
  765. margin-bottom: 1rem; }
  766. h5 {
  767. font-family: 'Montserrat', sans-serif;
  768. font-size: 1.5rem;
  769. font-weight: 700;
  770. line-height: 1.2;
  771. margin-bottom: 1rem; }
  772. h6 {
  773. font-family: 'Montserrat', sans-serif;
  774. font-size: 1.25rem;
  775. font-weight: 700;
  776. line-height: 1.2;
  777. margin-bottom: 1rem; }
  778. h1 {
  779. letter-spacing: 0.025rem; }
  780. p,
  781. article,
  782. blockquote {
  783. font-size: 1rem;
  784. line-height: 2;
  785. margin-bottom: 1rem; }
  786. p.lead {
  787. font-size: 1.2rem; }
  788. blockquote {
  789. background-color: #f8f9fa;
  790. border-left: 5px solid #e9ecef;
  791. border-radius: 3px;
  792. margin-bottom: 1rem;
  793. padding: 1rem 2rem; }
  794. blockquote.text--large {
  795. font-size: 1.15rem; }
  796. blockquote p {
  797. margin: 0; }
  798. cite {
  799. opacity: 0.7; }
  800. mark,
  801. .mark {
  802. padding: 0.2em;
  803. background-color: #f0e8c4; }
  804. /* Headlines (for larger titles) */
  805. .headline-1 {
  806. font-size: 8.5rem;
  807. letter-spacing: 0.05rem; }
  808. .headline-2 {
  809. font-size: 7.5rem;
  810. letter-spacing: 0.05rem; }
  811. .headline-3 {
  812. font-size: 6.5rem;
  813. letter-spacing: 0.05rem; }
  814. .headline-4 {
  815. font-size: 5.5rem;
  816. letter-spacing: 0.05rem; }
  817. .font-alt {
  818. font-family: 'Nunito Sans'; }
  819. .content h1 {
  820. line-height: 1.125em;
  821. margin: 1rem 0; }
  822. .content h2 {
  823. line-height: 1.125em;
  824. margin: 1rem 0; }
  825. .content h3 {
  826. line-height: 1.125em;
  827. margin: 1rem 0; }
  828. .content h4 {
  829. line-height: 1.125em;
  830. margin: 1rem 0; }
  831. .content h5 {
  832. line-height: 1.125em;
  833. margin: 1rem 0; }
  834. .content h6 {
  835. line-height: 1.125em;
  836. margin: 1rem 0; }
  837. /* TODO: To deprecate */
  838. .title {
  839. font-weight: bold; }
  840. .title:not(:last-child),
  841. .subtitle:not(:last-child) {
  842. margin-bottom: 1rem; }
  843. .title + .subtitle {
  844. /* Make the subtitlte closer to the title */
  845. margin-top: -0.75rem; }
  846. /* Use default line-height for these texts and when line-height-inherit is specified */
  847. .card-tile p,
  848. .card-tile article,
  849. .card-tile blockquote {
  850. line-height: inherit; }
  851. /* Weights */
  852. .font-thin {
  853. font-weight: 200; }
  854. .font-light {
  855. font-weight: 300; }
  856. .font-normal {
  857. font-weight: 400; }
  858. .font-semibold {
  859. font-weight: 600; }
  860. .font-bold {
  861. font-weight: 700; }
  862. /* Text Transformations */
  863. .uppercase {
  864. text-transform: uppercase; }
  865. .lowercase {
  866. text-transform: lowercase; }
  867. .capitalize {
  868. text-transform: capitalize; }
  869. .rtl {
  870. direction: rtl; }
  871. .white {
  872. color: #fff !important; }
  873. .faded {
  874. opacity: 0.75; }
  875. /* Font Awesome */
  876. .icon {
  877. /* Usually used in spans */
  878. display: inline-block;
  879. /* font-size: 21px; Allow font sizes for icons to be overwritten */
  880. /* line-height: 1.5rem; Allow line height to be inherited or overwritten */
  881. text-align: center;
  882. width: 1.5rem;
  883. vertical-align: baseline; }
  884. .icon.x-small {
  885. margin: 0.55rem 0 0 0.1rem; }
  886. .icon.small {
  887. margin: 0.95rem 0 0 0.1rem; }
  888. .icon .fa-wrapper {
  889. font-size: inherit; }
  890. .info {
  891. display: block;
  892. font-size: var(--font-size-s);
  893. margin-top: 0.25rem;
  894. color: #868e96; }
  895. .info.inline {
  896. /* Keeps the extra info inline */
  897. display: inline-block;
  898. margin-left: 0.5rem; }
  899. .caret {
  900. display: inline-block;
  901. width: 0;
  902. height: 0;
  903. margin-left: 2px;
  904. vertical-align: middle;
  905. border-top: 4px dashed;
  906. border-top: 4px solid\9;
  907. border-right: 4px solid transparent;
  908. border-left: 4px solid transparent; }
  909. /* Other text elements */
  910. abbr[title] {
  911. border-bottom: 0.1rem dotted;
  912. cursor: help;
  913. text-decoration: none; }
  914. kbd {
  915. background-color: var(--cirrus-fg);
  916. border-radius: 0.2rem;
  917. color: #fff;
  918. display: inline-block;
  919. line-height: 1;
  920. padding: 0.5rem;
  921. vertical-align: baseline; }
  922. /* MOBILE */
  923. @media screen and (max-width: 639px) {
  924. h1 {
  925. font-size: 2.25rem; }
  926. h2 {
  927. font-size: 2rem; }
  928. h3 {
  929. font-size: 1.75rem; }
  930. h4 {
  931. font-size: 1.5rem; }
  932. h5 {
  933. font-size: 1.25rem; }
  934. h6 {
  935. font-size: 1rem; }
  936. .headline-1 {
  937. font-size: 3.75rem; }
  938. .headline-2 {
  939. font-size: 3.5rem; }
  940. .headline-3 {
  941. font-size: 3.25rem; }
  942. .headline-4 {
  943. font-size: 3rem; }
  944. p,
  945. article,
  946. blockquote {
  947. margin: 1rem 0; } }
  948. /*
  949. Functions
  950. */
  951. /*
  952. Converts a given hex value to RGB.
  953. */
  954. /*
  955. Generates delimited class name prefix.
  956. */
  957. /*
  958. Fetch feature flag for different utility class types for generating viewport classes (e.g., u-flex-sm, u-flex-md, etc.).
  959. */
  960. /* Spacing */
  961. /* Fonts */
  962. /* Grid Count */
  963. /* Grid Percents */
  964. /* Tab Sizes */
  965. /* Media Queries */
  966. /* Smaller than the defined pixels are the dimensions for that range */
  967. /* Color scheme for Cirrus */
  968. /* v2 Colors */
  969. :root {
  970. /* v1 Colors */
  971. --cirrus-fg: #374054;
  972. --cirrus-bg: #fff;
  973. --cirrus-primary: #f03d4d;
  974. --cirrus-primary-rgb: 240, 61, 77;
  975. --cirrus-primary-light: #ffdadd;
  976. --cirrus-accent-hover: #d62939;
  977. --cirrus-accent-border: #c21b2b;
  978. --cirrus-light: #f6f9fc;
  979. --cirrus-light-gray: #f8f9fa;
  980. --cirrus-gray: #d5d7dc;
  981. --cirrus-dark-gray: #909090;
  982. --cirrus-dark: #363636;
  983. --cirrus-link: #5e5cc7;
  984. --cirrus-link-dark: #4643e2;
  985. --cirrus-info: #2972fa;
  986. --cirrus-success: #0dd157;
  987. --cirrus-success-rgb: 13, 209, 87;
  988. --cirrus-warning: #fab633;
  989. --cirrus-danger: #fb4143;
  990. --cirrus-light-hover: #d0e0ef;
  991. --cirrus-dark-hover: #505050;
  992. --cirrus-info-hover: #1062f9;
  993. --cirrus-link-hover: #f8f7ff;
  994. --cirrus-success-hover: #0cb94d;
  995. --cirrus-warning-hover: #f9ad1a;
  996. --cirrus-danger-hover: #eb0507;
  997. --cirrus-select-bg: rgba(0, 161, 255, 0.2);
  998. --cirrus-code-bg: var(--cirrus-primary-light);
  999. --cirrus-code-fg: #dc4753;
  1000. --cirrus-form-group-bg: var(--cirrus-light-gray);
  1001. --cirrus-form-group-fg: var(--cirrus-dark-gray);
  1002. --toast-primary-bg: rgba(49, 59, 80, 0.9);
  1003. --animation-duration: 0.2s;
  1004. --focus-opacity: 0.55;
  1005. --space-size: 0.5rem;
  1006. --font-size-xs: 0.7rem;
  1007. --font-size-s: 0.85rem;
  1008. --font-size-m: 1rem;
  1009. --font-size-l: 1.35rem;
  1010. --font-size-xl: 1.75rem; }
  1011. /* FOOTER */
  1012. .footer {
  1013. background-color: #343a40;
  1014. padding: 6rem 0;
  1015. text-align: center;
  1016. margin-top: 5rem;
  1017. width: 100%; }
  1018. .footer.footer--fixed {
  1019. bottom: 0;
  1020. position: fixed; }
  1021. .footer a {
  1022. color: #e9ecef;
  1023. font-weight: bolder; }
  1024. .footer a:hover {
  1025. color: #ced4da; }
  1026. .footer p {
  1027. color: #868e96; }
  1028. .footer ul {
  1029. margin: 0.5rem 0;
  1030. /* Remove the left margin seen in global style */ }
  1031. .footer .footer__title {
  1032. text-align: center;
  1033. letter-spacing: 6px;
  1034. position: relative;
  1035. padding-bottom: 10px; }
  1036. .footer .footer__list-title {
  1037. color: #ced4da;
  1038. font-size: 75%;
  1039. text-transform: uppercase;
  1040. font-weight: bolder; }
  1041. .footer .footer__list-title::after {
  1042. content: '';
  1043. display: block;
  1044. width: 10%;
  1045. margin: auto;
  1046. border-bottom: 2px solid;
  1047. border-color: #343b49; }
  1048. .footer ul a .footer__list-item,
  1049. .footer .footer__list-item {
  1050. margin: 0.1rem;
  1051. color: #868e96;
  1052. transition: all var(--animation-duration);
  1053. font-size: 75%;
  1054. text-transform: uppercase; }
  1055. /*
  1056. Functions
  1057. */
  1058. /*
  1059. Converts a given hex value to RGB.
  1060. */
  1061. /*
  1062. Generates delimited class name prefix.
  1063. */
  1064. /*
  1065. Fetch feature flag for different utility class types for generating viewport classes (e.g., u-flex-sm, u-flex-md, etc.).
  1066. */
  1067. /* Spacing */
  1068. /* Fonts */
  1069. /* Grid Count */
  1070. /* Grid Percents */
  1071. /* Tab Sizes */
  1072. /* Media Queries */
  1073. /* Smaller than the defined pixels are the dimensions for that range */
  1074. /* Color scheme for Cirrus */
  1075. /* v2 Colors */
  1076. :root {
  1077. /* v1 Colors */
  1078. --cirrus-fg: #374054;
  1079. --cirrus-bg: #fff;
  1080. --cirrus-primary: #f03d4d;
  1081. --cirrus-primary-rgb: 240, 61, 77;
  1082. --cirrus-primary-light: #ffdadd;
  1083. --cirrus-accent-hover: #d62939;
  1084. --cirrus-accent-border: #c21b2b;
  1085. --cirrus-light: #f6f9fc;
  1086. --cirrus-light-gray: #f8f9fa;
  1087. --cirrus-gray: #d5d7dc;
  1088. --cirrus-dark-gray: #909090;
  1089. --cirrus-dark: #363636;
  1090. --cirrus-link: #5e5cc7;
  1091. --cirrus-link-dark: #4643e2;
  1092. --cirrus-info: #2972fa;
  1093. --cirrus-success: #0dd157;
  1094. --cirrus-success-rgb: 13, 209, 87;
  1095. --cirrus-warning: #fab633;
  1096. --cirrus-danger: #fb4143;
  1097. --cirrus-light-hover: #d0e0ef;
  1098. --cirrus-dark-hover: #505050;
  1099. --cirrus-info-hover: #1062f9;
  1100. --cirrus-link-hover: #f8f7ff;
  1101. --cirrus-success-hover: #0cb94d;
  1102. --cirrus-warning-hover: #f9ad1a;
  1103. --cirrus-danger-hover: #eb0507;
  1104. --cirrus-select-bg: rgba(0, 161, 255, 0.2);
  1105. --cirrus-code-bg: var(--cirrus-primary-light);
  1106. --cirrus-code-fg: #dc4753;
  1107. --cirrus-form-group-bg: var(--cirrus-light-gray);
  1108. --cirrus-form-group-fg: var(--cirrus-dark-gray);
  1109. --toast-primary-bg: rgba(49, 59, 80, 0.9);
  1110. --animation-duration: 0.2s;
  1111. --focus-opacity: 0.55;
  1112. --space-size: 0.5rem;
  1113. --font-size-xs: 0.7rem;
  1114. --font-size-s: 0.85rem;
  1115. --font-size-m: 1rem;
  1116. --font-size-l: 1.35rem;
  1117. --font-size-xl: 1.75rem; }
  1118. /*
  1119. Functions
  1120. */
  1121. /*
  1122. Converts a given hex value to RGB.
  1123. */
  1124. /*
  1125. Generates delimited class name prefix.
  1126. */
  1127. /*
  1128. Fetch feature flag for different utility class types for generating viewport classes (e.g., u-flex-sm, u-flex-md, etc.).
  1129. */
  1130. /* Spacing */
  1131. /* Fonts */
  1132. /* Grid Count */
  1133. /* Grid Percents */
  1134. /* Tab Sizes */
  1135. /* Media Queries */
  1136. /* Smaller than the defined pixels are the dimensions for that range */
  1137. /* Color scheme for Cirrus */
  1138. /* v2 Colors */
  1139. :root {
  1140. /* v1 Colors */
  1141. --cirrus-fg: #374054;
  1142. --cirrus-bg: #fff;
  1143. --cirrus-primary: #f03d4d;
  1144. --cirrus-primary-rgb: 240, 61, 77;
  1145. --cirrus-primary-light: #ffdadd;
  1146. --cirrus-accent-hover: #d62939;
  1147. --cirrus-accent-border: #c21b2b;
  1148. --cirrus-light: #f6f9fc;
  1149. --cirrus-light-gray: #f8f9fa;
  1150. --cirrus-gray: #d5d7dc;
  1151. --cirrus-dark-gray: #909090;
  1152. --cirrus-dark: #363636;
  1153. --cirrus-link: #5e5cc7;
  1154. --cirrus-link-dark: #4643e2;
  1155. --cirrus-info: #2972fa;
  1156. --cirrus-success: #0dd157;
  1157. --cirrus-success-rgb: 13, 209, 87;
  1158. --cirrus-warning: #fab633;
  1159. --cirrus-danger: #fb4143;
  1160. --cirrus-light-hover: #d0e0ef;
  1161. --cirrus-dark-hover: #505050;
  1162. --cirrus-info-hover: #1062f9;
  1163. --cirrus-link-hover: #f8f7ff;
  1164. --cirrus-success-hover: #0cb94d;
  1165. --cirrus-warning-hover: #f9ad1a;
  1166. --cirrus-danger-hover: #eb0507;
  1167. --cirrus-select-bg: rgba(0, 161, 255, 0.2);
  1168. --cirrus-code-bg: var(--cirrus-primary-light);
  1169. --cirrus-code-fg: #dc4753;
  1170. --cirrus-form-group-bg: var(--cirrus-light-gray);
  1171. --cirrus-form-group-fg: var(--cirrus-dark-gray);
  1172. --toast-primary-bg: rgba(49, 59, 80, 0.9);
  1173. --animation-duration: 0.2s;
  1174. --focus-opacity: 0.55;
  1175. --space-size: 0.5rem;
  1176. --font-size-xs: 0.7rem;
  1177. --font-size-s: 0.85rem;
  1178. --font-size-m: 1rem;
  1179. --font-size-l: 1.35rem;
  1180. --font-size-xl: 1.75rem; }
  1181. /*
  1182. Global Mixins
  1183. */
  1184. /* FORMS */
  1185. /*
  1186. Mixins
  1187. */
  1188. /*
  1189. Styles
  1190. */
  1191. input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']),
  1192. select {
  1193. width: 100%;
  1194. border: 1px solid #dee2e6;
  1195. border-radius: 3px;
  1196. font-family: 'Nunito Sans';
  1197. font-size: var(--font-size-m);
  1198. letter-spacing: 0.02rem;
  1199. transition: all 0.3s;
  1200. outline: none;
  1201. padding: 0.85rem 1.1rem;
  1202. z-index: 1;
  1203. /* Input Field Sizes */
  1204. /* Hold Font Awesome glyphs inside input fields */
  1205. /* More sizes coming soon */
  1206. /* Search field */ }
  1207. input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']).input-xsmall,
  1208. input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']) select.input-xsmall,
  1209. select.input-xsmall,
  1210. select select.input-xsmall {
  1211. font-size: var(--font-size-xs);
  1212. padding: 0.35rem 0.9rem; }
  1213. input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']).input-small,
  1214. input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']) select.input-small,
  1215. select.input-small,
  1216. select select.input-small {
  1217. font-size: var(--font-size-s);
  1218. padding: 0.55rem 1rem; }
  1219. input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']).input-large,
  1220. input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']) select.input-large,
  1221. select.input-large,
  1222. select select.input-large {
  1223. font-size: var(--font-size-l); }
  1224. input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']).input-xlarge,
  1225. input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']) select.input-xlarge,
  1226. select.input-xlarge,
  1227. select select.input-xlarge {
  1228. font-size: var(--font-size-xl); }
  1229. input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']).input-contains-icon, input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']).input-contains-icon-left,
  1230. select.input-contains-icon,
  1231. select.input-contains-icon-left {
  1232. padding-left: 2.75rem; }
  1233. input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']).input-contains-icon-right,
  1234. select.input-contains-icon-right {
  1235. padding-right: 2.75rem; }
  1236. input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']).input-contains-icon.input-xsmall, input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']).input-contains-icon-right.input-xsmall,
  1237. select.input-contains-icon.input-xsmall,
  1238. select.input-contains-icon-right.input-xsmall {
  1239. padding-left: 2rem; }
  1240. input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']).input-contains-icon.input-xsmall ~ .icon,
  1241. input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']).input-contains-icon-left.input-xsmall ~ .icon,
  1242. input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']).input-contains-icon-right.input-xsmall ~ .icon.icon-right,
  1243. select.input-contains-icon.input-xsmall ~ .icon,
  1244. select.input-contains-icon-left.input-xsmall ~ .icon,
  1245. select.input-contains-icon-right.input-xsmall ~ .icon.icon-right {
  1246. line-height: 1.75rem;
  1247. width: 1.75rem;
  1248. font-size: 7px; }
  1249. input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']).input-contains-icon.input-small, input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']).input-contains-icon-right.input-small,
  1250. select.input-contains-icon.input-small,
  1251. select.input-contains-icon-right.input-small {
  1252. padding-left: 2.5rem; }
  1253. input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']).input-contains-icon.input-small ~ .icon,
  1254. input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']).input-contains-icon-left.input-small ~ .icon,
  1255. input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']).input-contains-icon-right.input-small ~ .icon.icon-right,
  1256. select.input-contains-icon.input-small ~ .icon,
  1257. select.input-contains-icon-left.input-small ~ .icon,
  1258. select.input-contains-icon-right.input-small ~ .icon.icon-right {
  1259. width: 2.5rem;
  1260. font-size: 14px; }
  1261. input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']).input-contains-icon.input-large, input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']).input-contains-icon-right.input-large,
  1262. select.input-contains-icon.input-large,
  1263. select.input-contains-icon-right.input-large {
  1264. padding-left: 3.5rem; }
  1265. input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']).input-contains-icon.input-large ~ .icon,
  1266. input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']).input-contains-icon-left.input-large ~ .icon,
  1267. input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']).input-contains-icon-right.input-large ~ .icon.icon-right,
  1268. select.input-contains-icon.input-large ~ .icon,
  1269. select.input-contains-icon-left.input-large ~ .icon,
  1270. select.input-contains-icon-right.input-large ~ .icon.icon-right {
  1271. line-height: 3.5rem;
  1272. width: 3.5rem;
  1273. font-size: 28px; }
  1274. input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']).input-contains-icon.input-xlarge, input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']).input-contains-icon-right.input-xlarge,
  1275. select.input-contains-icon.input-xlarge,
  1276. select.input-contains-icon-right.input-xlarge {
  1277. padding-left: 4rem; }
  1278. input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']).input-contains-icon.input-xlarge ~ .icon,
  1279. input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']).input-contains-icon-left.input-xlarge ~ .icon,
  1280. input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']).input-contains-icon-right.input-xlarge ~ .icon.icon-right,
  1281. select.input-contains-icon.input-xlarge ~ .icon,
  1282. select.input-contains-icon-left.input-xlarge ~ .icon,
  1283. select.input-contains-icon-right.input-xlarge ~ .icon.icon-right {
  1284. line-height: 2.5rem;
  1285. width: 3.75rem;
  1286. font-size: 35px; }
  1287. input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset'])[type='search'], input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']).search,
  1288. select[type='search'],
  1289. select.search {
  1290. background-repeat: no-repeat;
  1291. background-position: left 0.6rem center;
  1292. background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path opacity="0.45" d="M14.891,14.39l-0.5.5a0.355,0.355,0,0,1-.5,0L9.526,10.529a5.3,5.3,0,1,1,2.106-4.212,5.268,5.268,0,0,1-1.1,3.21l4.362,4.362A0.354,0.354,0,0,1,14.891,14.39ZM6.316,2.418a3.9,3.9,0,1,0,3.9,3.9A3.9,3.9,0,0,0,6.316,2.418Z"/></svg>');
  1293. /* NEEDS FIXING */
  1294. padding-left: 2rem !important;
  1295. -webkit-appearance: none;
  1296. /* Fix Safari issue */ }
  1297. input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset'])[type='color'],
  1298. select[type='color'] {
  1299. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
  1300. box-sizing: border-box;
  1301. transition: 0.3s;
  1302. outline: 0;
  1303. position: relative;
  1304. height: 3rem;
  1305. background-color: #fff;
  1306. padding: 0.55rem 0.8rem !important; }
  1307. input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']).input-success,
  1308. select.input-success {
  1309. border-color: var(--cirrus-success);
  1310. background-color: rgba(0, 224, 0, 0.05) !important; }
  1311. input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']).input-success:focus,
  1312. select.input-success:focus {
  1313. box-shadow: 0 0 0 0.2rem rgba(13, 209, 87, 0.55), inset 0px 1px 8px rgba(0, 0, 0, 0.07); }
  1314. input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']).input-error,
  1315. select.input-error {
  1316. border-color: var(--cirrus-danger);
  1317. background-color: rgba(244, 67, 54, 0.05) !important; }
  1318. input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']).input-error:focus,
  1319. select.input-error:focus {
  1320. box-shadow: 0 0 0 0.2rem rgba(251, 65, 67, 0.55), inset 0px 1px 8px rgba(0, 0, 0, 0.07); }
  1321. textarea,
  1322. textarea[type='text'] {
  1323. width: 100%;
  1324. border: 1px solid #dee2e6;
  1325. border-radius: 3px;
  1326. font-family: 'Nunito Sans';
  1327. font-size: var(--font-size-m);
  1328. letter-spacing: 0.02rem;
  1329. transition: all 0.3s;
  1330. outline: none;
  1331. padding: 0.85rem 1.1rem;
  1332. z-index: 1;
  1333. /* Input Field Sizes */
  1334. /* Hold Font Awesome glyphs inside input fields */
  1335. /* More sizes coming soon */
  1336. margin: 0.5rem 0;
  1337. padding: 1rem 1.3rem;
  1338. min-height: 8rem;
  1339. line-height: 1.5rem;
  1340. resize: vertical; }
  1341. textarea.input-xsmall,
  1342. textarea select.input-xsmall,
  1343. textarea[type='text'].input-xsmall,
  1344. textarea[type='text'] select.input-xsmall {
  1345. font-size: var(--font-size-xs);
  1346. padding: 0.35rem 0.9rem; }
  1347. textarea.input-small,
  1348. textarea select.input-small,
  1349. textarea[type='text'].input-small,
  1350. textarea[type='text'] select.input-small {
  1351. font-size: var(--font-size-s);
  1352. padding: 0.55rem 1rem; }
  1353. textarea.input-large,
  1354. textarea select.input-large,
  1355. textarea[type='text'].input-large,
  1356. textarea[type='text'] select.input-large {
  1357. font-size: var(--font-size-l); }
  1358. textarea.input-xlarge,
  1359. textarea select.input-xlarge,
  1360. textarea[type='text'].input-xlarge,
  1361. textarea[type='text'] select.input-xlarge {
  1362. font-size: var(--font-size-xl); }
  1363. textarea.input-contains-icon, textarea.input-contains-icon-left,
  1364. textarea[type='text'].input-contains-icon,
  1365. textarea[type='text'].input-contains-icon-left {
  1366. padding-left: 2.75rem; }
  1367. textarea.input-contains-icon-right,
  1368. textarea[type='text'].input-contains-icon-right {
  1369. padding-right: 2.75rem; }
  1370. textarea.input-contains-icon.input-xsmall, textarea.input-contains-icon-right.input-xsmall,
  1371. textarea[type='text'].input-contains-icon.input-xsmall,
  1372. textarea[type='text'].input-contains-icon-right.input-xsmall {
  1373. padding-left: 2rem; }
  1374. textarea.input-contains-icon.input-xsmall ~ .icon,
  1375. textarea.input-contains-icon-left.input-xsmall ~ .icon,
  1376. textarea.input-contains-icon-right.input-xsmall ~ .icon.icon-right,
  1377. textarea[type='text'].input-contains-icon.input-xsmall ~ .icon,
  1378. textarea[type='text'].input-contains-icon-left.input-xsmall ~ .icon,
  1379. textarea[type='text'].input-contains-icon-right.input-xsmall ~ .icon.icon-right {
  1380. line-height: 1.75rem;
  1381. width: 1.75rem;
  1382. font-size: 7px; }
  1383. textarea.input-contains-icon.input-small, textarea.input-contains-icon-right.input-small,
  1384. textarea[type='text'].input-contains-icon.input-small,
  1385. textarea[type='text'].input-contains-icon-right.input-small {
  1386. padding-left: 2.5rem; }
  1387. textarea.input-contains-icon.input-small ~ .icon,
  1388. textarea.input-contains-icon-left.input-small ~ .icon,
  1389. textarea.input-contains-icon-right.input-small ~ .icon.icon-right,
  1390. textarea[type='text'].input-contains-icon.input-small ~ .icon,
  1391. textarea[type='text'].input-contains-icon-left.input-small ~ .icon,
  1392. textarea[type='text'].input-contains-icon-right.input-small ~ .icon.icon-right {
  1393. width: 2.5rem;
  1394. font-size: 14px; }
  1395. textarea.input-contains-icon.input-large, textarea.input-contains-icon-right.input-large,
  1396. textarea[type='text'].input-contains-icon.input-large,
  1397. textarea[type='text'].input-contains-icon-right.input-large {
  1398. padding-left: 3.5rem; }
  1399. textarea.input-contains-icon.input-large ~ .icon,
  1400. textarea.input-contains-icon-left.input-large ~ .icon,
  1401. textarea.input-contains-icon-right.input-large ~ .icon.icon-right,
  1402. textarea[type='text'].input-contains-icon.input-large ~ .icon,
  1403. textarea[type='text'].input-contains-icon-left.input-large ~ .icon,
  1404. textarea[type='text'].input-contains-icon-right.input-large ~ .icon.icon-right {
  1405. line-height: 3.5rem;
  1406. width: 3.5rem;
  1407. font-size: 28px; }
  1408. textarea.input-contains-icon.input-xlarge, textarea.input-contains-icon-right.input-xlarge,
  1409. textarea[type='text'].input-contains-icon.input-xlarge,
  1410. textarea[type='text'].input-contains-icon-right.input-xlarge {
  1411. padding-left: 4rem; }
  1412. textarea.input-contains-icon.input-xlarge ~ .icon,
  1413. textarea.input-contains-icon-left.input-xlarge ~ .icon,
  1414. textarea.input-contains-icon-right.input-xlarge ~ .icon.icon-right,
  1415. textarea[type='text'].input-contains-icon.input-xlarge ~ .icon,
  1416. textarea[type='text'].input-contains-icon-left.input-xlarge ~ .icon,
  1417. textarea[type='text'].input-contains-icon-right.input-xlarge ~ .icon.icon-right {
  1418. line-height: 2.5rem;
  1419. width: 3.75rem;
  1420. font-size: 35px; }
  1421. input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']):focus,
  1422. select:focus,
  1423. textarea:focus,
  1424. textarea[type='text']:focus,
  1425. input[type='text'].input-focused,
  1426. .input-focused {
  1427. border-color: #3dabf0;
  1428. box-shadow: 0 0 0 0.2rem rgba(61, 171, 240, 0.45), inset 0px 1px 8px rgba(0, 0, 0, 0.07); }
  1429. input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']):focus.input-success,
  1430. select:focus.input-success,
  1431. textarea:focus.input-success,
  1432. textarea[type='text']:focus.input-success,
  1433. input[type='text'].input-focused.input-success,
  1434. .input-focused.input-success {
  1435. border-color: var(--cirrus-success);
  1436. background-color: rgba(0, 224, 0, 0.05) !important; }
  1437. input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']):focus.input-success:focus,
  1438. select:focus.input-success:focus,
  1439. textarea:focus.input-success:focus,
  1440. textarea[type='text']:focus.input-success:focus,
  1441. input[type='text'].input-focused.input-success:focus,
  1442. .input-focused.input-success:focus {
  1443. box-shadow: 0 0 0 0.2rem rgba(13, 209, 87, 0.55), inset 0px 1px 8px rgba(0, 0, 0, 0.07); }
  1444. input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']):focus.input-error,
  1445. select:focus.input-error,
  1446. textarea:focus.input-error,
  1447. textarea[type='text']:focus.input-error,
  1448. input[type='text'].input-focused.input-error,
  1449. .input-focused.input-error {
  1450. border-color: var(--cirrus-danger);
  1451. background-color: rgba(244, 67, 54, 0.05) !important; }
  1452. input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not([type='reset']):focus.input-error:focus,
  1453. select:focus.input-error:focus,
  1454. textarea:focus.input-error:focus,
  1455. textarea[type='text']:focus.input-error:focus,
  1456. input[type='text'].input-focused.input-error:focus,
  1457. .input-focused.input-error:focus {
  1458. box-shadow: 0 0 0 0.2rem rgba(251, 65, 67, 0.55), inset 0px 1px 8px rgba(0, 0, 0, 0.07); }
  1459. select {
  1460. width: 100%;
  1461. border: 1px solid #dee2e6;
  1462. border-radius: 3px;
  1463. font-family: 'Nunito Sans';
  1464. font-size: var(--font-size-m);
  1465. letter-spacing: 0.02rem;
  1466. transition: all 0.3s;
  1467. outline: none;
  1468. padding: 0.85rem 1.1rem;
  1469. z-index: 1;
  1470. /* Input Field Sizes */
  1471. /* Hold Font Awesome glyphs inside input fields */
  1472. /* More sizes coming soon */
  1473. background-color: #fff;
  1474. border: 1px solid #ddd;
  1475. /* Fixes for Safari and other browsers for consistent UI */
  1476. /* Select sizes */ }
  1477. select.input-xsmall,
  1478. select select.input-xsmall {
  1479. font-size: var(--font-size-xs);
  1480. padding: 0.35rem 0.9rem; }
  1481. select.input-small,
  1482. select select.input-small {
  1483. font-size: var(--font-size-s);
  1484. padding: 0.55rem 1rem; }
  1485. select.input-large,
  1486. select select.input-large {
  1487. font-size: var(--font-size-l); }
  1488. select.input-xlarge,
  1489. select select.input-xlarge {
  1490. font-size: var(--font-size-xl); }
  1491. select.input-contains-icon, select.input-contains-icon-left {
  1492. padding-left: 2.75rem; }
  1493. select.input-contains-icon-right {
  1494. padding-right: 2.75rem; }
  1495. select.input-contains-icon.input-xsmall, select.input-contains-icon-right.input-xsmall {
  1496. padding-left: 2rem; }
  1497. select.input-contains-icon.input-xsmall ~ .icon,
  1498. select.input-contains-icon-left.input-xsmall ~ .icon,
  1499. select.input-contains-icon-right.input-xsmall ~ .icon.icon-right {
  1500. line-height: 1.75rem;
  1501. width: 1.75rem;
  1502. font-size: 7px; }
  1503. select.input-contains-icon.input-small, select.input-contains-icon-right.input-small {
  1504. padding-left: 2.5rem; }
  1505. select.input-contains-icon.input-small ~ .icon,
  1506. select.input-contains-icon-left.input-small ~ .icon,
  1507. select.input-contains-icon-right.input-small ~ .icon.icon-right {
  1508. width: 2.5rem;
  1509. font-size: 14px; }
  1510. select.input-contains-icon.input-large, select.input-contains-icon-right.input-large {
  1511. padding-left: 3.5rem; }
  1512. select.input-contains-icon.input-large ~ .icon,
  1513. select.input-contains-icon-left.input-large ~ .icon,
  1514. select.input-contains-icon-right.input-large ~ .icon.icon-right {
  1515. line-height: 3.5rem;
  1516. width: 3.5rem;
  1517. font-size: 28px; }
  1518. select.input-contains-icon.input-xlarge, select.input-contains-icon-right.input-xlarge {
  1519. padding-left: 4rem; }
  1520. select.input-contains-icon.input-xlarge ~ .icon,
  1521. select.input-contains-icon-left.input-xlarge ~ .icon,
  1522. select.input-contains-icon-right.input-xlarge ~ .icon.icon-right {
  1523. line-height: 2.5rem;
  1524. width: 3.75rem;
  1525. font-size: 35px; }
  1526. select[multiple] option {
  1527. padding: 0.2rem 0.4rem; }
  1528. select.select:not([size]):not([multiple]) {
  1529. background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%204%205'%3E%3Cpath%20fill='%23667189'%20d='M2%200L0%202h4zm0%205L0%203h4z'/%3E%3C/svg%3E") no-repeat right 0.85rem center/0.5rem 0.6rem no-repeat;
  1530. -webkit-appearance: none; }
  1531. input:not([class*='btn-']):disabled,
  1532. input:not([class*=' btn-']):disabled:hover,
  1533. select:disabled,
  1534. textarea:disabled {
  1535. background-color: #f1f3f5;
  1536. cursor: not-allowed;
  1537. border: 1px solid #f1f3f5; }
  1538. label.label {
  1539. color: #495057;
  1540. display: inline-block;
  1541. /* changed from block */
  1542. font-weight: bold;
  1543. margin-top: 0.8rem; }
  1544. label + .input-control {
  1545. margin-top: 0; }
  1546. label.label:not(:last-child) {
  1547. margin-bottom: 0; }
  1548. label:first-child:not(:last-child):not(.form-group-label) {
  1549. margin-right: 0.5rem; }
  1550. label:not(:first-child):not(:last-child):not(.form-group-label) {
  1551. margin: 0 0.5rem; }
  1552. label:last-child:not(:first-child):not(.form-group-label) {
  1553. margin-left: 0.5rem; }
  1554. /* Required asterisk */
  1555. .required {
  1556. /* Use this in a span or a div */
  1557. position: relative;
  1558. top: 1px;
  1559. font-weight: bold;
  1560. color: #B31E1D;
  1561. padding-left: 0.1rem; }
  1562. /* Used for when the input controls have another control adjacent to it but we want to position it inside the input field like font-awesome glyphs. As of 0.5.2, it is the default container for input fields. */
  1563. .input-control {
  1564. position: relative;
  1565. margin: 0.5rem 0; }
  1566. .input-contains-icon ~ .icon,
  1567. .input-contains-icon-left ~ .icon,
  1568. .input-contains-icon-right ~ .icon {
  1569. display: flex;
  1570. align-items: center;
  1571. justify-content: center;
  1572. height: 100%; }
  1573. .input-contains-icon ~ .icon:not(.icon-right),
  1574. .input-contains-icon-left ~ .icon.icon-left {
  1575. /* Nomral input only */
  1576. position: absolute;
  1577. left: 0;
  1578. top: 0;
  1579. width: 3rem;
  1580. z-index: 1; }
  1581. .input-contains-icon-right ~ .icon.icon-right {
  1582. position: absolute;
  1583. pointer-events: none;
  1584. line-height: 2.75rem;
  1585. vertical-align: baseline;
  1586. top: 0;
  1587. right: 0;
  1588. width: 3rem;
  1589. z-index: 1; }
  1590. /* Form groups that group inputs with other controls. */
  1591. .form-group {
  1592. /* This is just an extended portion of an input which is just like a label and is read only */
  1593. /* This will style the controls if they are the leftmost control in the form group for labels, inputs, and buttons. */
  1594. display: flex;
  1595. display: -ms-flexbox;
  1596. margin: 0.5rem 0;
  1597. /* Add margin to the container since they have been removed from children */
  1598. /* Fixes the text width being cut off */
  1599. /* Form group controls */
  1600. /* Keeps inputs in form group above other components */ }
  1601. .form-group .form-group-btn {
  1602. -webkit-flex: 1 0 auto;
  1603. -ms-flex: 1 0 auto;
  1604. flex: 1 0 auto;
  1605. margin-bottom: 0;
  1606. /* Style the front controls */
  1607. /* Style the middle controls */
  1608. /* Handles right most control in form group */ }
  1609. .form-group .form-group-btn:first-child:not(:last-child) {
  1610. border-top-right-radius: 0 !important;
  1611. border-bottom-right-radius: 0 !important; }
  1612. .form-group .form-group-btn:not(:first-child):not(:last-child) {
  1613. border-radius: 0 !important;
  1614. margin-left: -1px;
  1615. margin-right: -1px;
  1616. /* Remove spacing in middle controls */ }
  1617. .form-group .form-group-btn:last-child:not(:first-child) {
  1618. border-top-left-radius: 0 !important;
  1619. border-bottom-left-radius: 0 !important;
  1620. margin-left: -1px;
  1621. z-index: 0; }
  1622. .form-group .form-group-label {
  1623. background-color: var(--cirrus-form-group-bg);
  1624. border: 1px solid #dee2e6;
  1625. border-radius: 0.2rem;
  1626. color: var(--cirrus-form-group-fg);
  1627. margin: 0;
  1628. padding: 0.8rem;
  1629. user-select: none;
  1630. /* Style the front controls */
  1631. /* Style the middle controls */
  1632. /* Handles right most control in form group */ }
  1633. .form-group .form-group-label:first-child:not(:last-child) {
  1634. border-top-right-radius: 0 !important;
  1635. border-bottom-right-radius: 0 !important; }
  1636. .form-group .form-group-label:not(:first-child):not(:last-child) {
  1637. border-radius: 0 !important;
  1638. margin-left: -1px;
  1639. margin-right: -1px;
  1640. /* Remove spacing in middle controls */ }
  1641. .form-group .form-group-label:last-child:not(:first-child) {
  1642. border-top-left-radius: 0 !important;
  1643. border-bottom-left-radius: 0 !important;
  1644. margin-left: -1px;
  1645. z-index: 0; }
  1646. .form-group .form-group-label.label-xsmall {
  1647. font-size: 0.55rem;
  1648. padding: 0.5rem 0.9rem; }
  1649. .form-group .form-group-label.label-small {
  1650. font-size: 0.75rem;
  1651. padding: 0.55rem 1rem; }
  1652. .form-group .form-group-label.label-large {
  1653. font-size: 1.5rem; }
  1654. .form-group .form-group-label.label-xlarge {
  1655. font-size: 2rem; }
  1656. .form-group .form-group-input {
  1657. /* Style the front controls */
  1658. /* Style the middle controls */
  1659. /* Handles right most control in form group */ }
  1660. .form-group .form-group-input:first-child:not(:last-child) {
  1661. border-top-right-radius: 0 !important;
  1662. border-bottom-right-radius: 0 !important; }
  1663. .form-group .form-group-input:not(:first-child):not(:last-child) {
  1664. border-radius: 0 !important;
  1665. margin-left: -1px;
  1666. margin-right: -1px;
  1667. /* Remove spacing in middle controls */ }
  1668. .form-group .form-group-input:last-child:not(:first-child) {
  1669. border-top-left-radius: 0 !important;
  1670. border-bottom-left-radius: 0 !important;
  1671. margin-left: -1px;
  1672. z-index: 0; }
  1673. /* Change place holder color */
  1674. ::-moz-placeholder {
  1675. color: #a9a9a9;
  1676. /* Lighter than the default */ }
  1677. ::-webkit-input-placeholder {
  1678. color: #a9a9a9;
  1679. /* Lighter than the default */ }
  1680. /*
  1681. Functions
  1682. */
  1683. /*
  1684. Converts a given hex value to RGB.
  1685. */
  1686. /*
  1687. Generates delimited class name prefix.
  1688. */
  1689. /*
  1690. Fetch feature flag for different utility class types for generating viewport classes (e.g., u-flex-sm, u-flex-md, etc.).
  1691. */
  1692. /* Spacing */
  1693. /* Fonts */
  1694. /* Grid Count */
  1695. /* Grid Percents */
  1696. /* Tab Sizes */
  1697. /* Media Queries */
  1698. /* Smaller than the defined pixels are the dimensions for that range */
  1699. /* Color scheme for Cirrus */
  1700. /* v2 Colors */
  1701. :root {
  1702. /* v1 Colors */
  1703. --cirrus-fg: #374054;
  1704. --cirrus-bg: #fff;
  1705. --cirrus-primary: #f03d4d;
  1706. --cirrus-primary-rgb: 240, 61, 77;
  1707. --cirrus-primary-light: #ffdadd;
  1708. --cirrus-accent-hover: #d62939;
  1709. --cirrus-accent-border: #c21b2b;
  1710. --cirrus-light: #f6f9fc;
  1711. --cirrus-light-gray: #f8f9fa;
  1712. --cirrus-gray: #d5d7dc;
  1713. --cirrus-dark-gray: #909090;
  1714. --cirrus-dark: #363636;
  1715. --cirrus-link: #5e5cc7;
  1716. --cirrus-link-dark: #4643e2;
  1717. --cirrus-info: #2972fa;
  1718. --cirrus-success: #0dd157;
  1719. --cirrus-success-rgb: 13, 209, 87;
  1720. --cirrus-warning: #fab633;
  1721. --cirrus-danger: #fb4143;
  1722. --cirrus-light-hover: #d0e0ef;
  1723. --cirrus-dark-hover: #505050;
  1724. --cirrus-info-hover: #1062f9;
  1725. --cirrus-link-hover: #f8f7ff;
  1726. --cirrus-success-hover: #0cb94d;
  1727. --cirrus-warning-hover: #f9ad1a;
  1728. --cirrus-danger-hover: #eb0507;
  1729. --cirrus-select-bg: rgba(0, 161, 255, 0.2);
  1730. --cirrus-code-bg: var(--cirrus-primary-light);
  1731. --cirrus-code-fg: #dc4753;
  1732. --cirrus-form-group-bg: var(--cirrus-light-gray);
  1733. --cirrus-form-group-fg: var(--cirrus-dark-gray);
  1734. --toast-primary-bg: rgba(49, 59, 80, 0.9);
  1735. --animation-duration: 0.2s;
  1736. --focus-opacity: 0.55;
  1737. --space-size: 0.5rem;
  1738. --font-size-xs: 0.7rem;
  1739. --font-size-s: 0.85rem;
  1740. --font-size-m: 1rem;
  1741. --font-size-l: 1.35rem;
  1742. --font-size-xl: 1.75rem; }
  1743. /* Separate CSS file, but same part as Layout */
  1744. /* The base container that is similar in structure to a card but more flexible */
  1745. .frame {
  1746. border-radius: 3px;
  1747. box-shadow: 0 0.2rem 1.25rem 0 rgba(27, 30, 36, 0.07);
  1748. display: flex;
  1749. display: -ms-flexbox;
  1750. flex-direction: column;
  1751. -webkit-flex-direction: column;
  1752. -ms-flex-direction: column;
  1753. /* For the frame header and footer, use flex display */
  1754. /* The frame navbar can be used with level or header classes to create a navigation menu */ }
  1755. .frame .frame__header,
  1756. .frame .frame__footer {
  1757. flex: 0 0 auto;
  1758. -webkit-flex: 0 0 auto;
  1759. -ms-flex: 0 0 auto;
  1760. padding: 1rem; }
  1761. .frame .frame__nav {
  1762. flex: 0 0 auto;
  1763. -webkit-flex: 0 0 auto;
  1764. -ms-flex: 0 0 auto; }
  1765. .frame .frame__body {
  1766. flex: 1 1 auto;
  1767. -webkit-flex: 1 1 auto;
  1768. -ms-flex: 1 1 auto;
  1769. overflow-y: auto;
  1770. /* Show the scrollbar when needed */
  1771. padding: 0 1rem; }
  1772. .frame .frame__title {
  1773. color: #374054;
  1774. font-size: 1rem;
  1775. margin: .75rem auto 0; }
  1776. .frame .frame__subtitle {
  1777. color: rgba(55, 64, 84, 0.6);
  1778. font-size: 1rem;
  1779. margin: 0 auto .75rem; }
  1780. /*
  1781. Group selectors that share common styling.
  1782. */
  1783. /* Spacing */
  1784. /* Fonts */
  1785. /* Grid Count */
  1786. /* Grid Percents */
  1787. /* Tab Sizes */
  1788. /* Media Queries */
  1789. /* Smaller than the defined pixels are the dimensions for that range */
  1790. /*
  1791. Functions
  1792. */
  1793. /*
  1794. Converts a given hex value to RGB.
  1795. */
  1796. /*
  1797. Generates delimited class name prefix.
  1798. */
  1799. /*
  1800. Fetch feature flag for different utility class types for generating viewport classes (e.g., u-flex-sm, u-flex-md, etc.).
  1801. */
  1802. /* Spacing */
  1803. /* Fonts */
  1804. /* Grid Count */
  1805. /* Grid Percents */
  1806. /* Tab Sizes */
  1807. /* Media Queries */
  1808. /* Smaller than the defined pixels are the dimensions for that range */
  1809. /* Color scheme for Cirrus */
  1810. /* v2 Colors */
  1811. :root {
  1812. /* v1 Colors */
  1813. --cirrus-fg: #374054;
  1814. --cirrus-bg: #fff;
  1815. --cirrus-primary: #f03d4d;
  1816. --cirrus-primary-rgb: 240, 61, 77;
  1817. --cirrus-primary-light: #ffdadd;
  1818. --cirrus-accent-hover: #d62939;
  1819. --cirrus-accent-border: #c21b2b;
  1820. --cirrus-light: #f6f9fc;
  1821. --cirrus-light-gray: #f8f9fa;
  1822. --cirrus-gray: #d5d7dc;
  1823. --cirrus-dark-gray: #909090;
  1824. --cirrus-dark: #363636;
  1825. --cirrus-link: #5e5cc7;
  1826. --cirrus-link-dark: #4643e2;
  1827. --cirrus-info: #2972fa;
  1828. --cirrus-success: #0dd157;
  1829. --cirrus-success-rgb: 13, 209, 87;
  1830. --cirrus-warning: #fab633;
  1831. --cirrus-danger: #fb4143;
  1832. --cirrus-light-hover: #d0e0ef;
  1833. --cirrus-dark-hover: #505050;
  1834. --cirrus-info-hover: #1062f9;
  1835. --cirrus-link-hover: #f8f7ff;
  1836. --cirrus-success-hover: #0cb94d;
  1837. --cirrus-warning-hover: #f9ad1a;
  1838. --cirrus-danger-hover: #eb0507;
  1839. --cirrus-select-bg: rgba(0, 161, 255, 0.2);
  1840. --cirrus-code-bg: var(--cirrus-primary-light);
  1841. --cirrus-code-fg: #dc4753;
  1842. --cirrus-form-group-bg: var(--cirrus-light-gray);
  1843. --cirrus-form-group-fg: var(--cirrus-dark-gray);
  1844. --toast-primary-bg: rgba(49, 59, 80, 0.9);
  1845. --animation-duration: 0.2s;
  1846. --focus-opacity: 0.55;
  1847. --space-size: 0.5rem;
  1848. --font-size-xs: 0.7rem;
  1849. --font-size-s: 0.85rem;
  1850. --font-size-m: 1rem;
  1851. --font-size-l: 1.35rem;
  1852. --font-size-xl: 1.75rem; }
  1853. /* HEADER */
  1854. .header {
  1855. -webkit-box-flex: 1;
  1856. -ms-flex-positive: 1;
  1857. flex-grow: 1;
  1858. -ms-flex-negative: 0;
  1859. width: 100%;
  1860. z-index: 100;
  1861. margin-bottom: 20px;
  1862. box-shadow: 0 3px 15px rgba(57, 63, 72, 0.1);
  1863. background-color: var(--cirrus-bg);
  1864. max-height: 100vh;
  1865. padding: 0 2rem;
  1866. transition: all 0.3s;
  1867. display: flex;
  1868. --header-link-color: #495057;
  1869. --header-link-color-hover: #606a73;
  1870. /* Remove any padding set for headers in default.scss */
  1871. /* Header dark theme */
  1872. /* Add transition to nav menu when it drops down */
  1873. /* The container that contains all the header menu components. Child of header */
  1874. /* Static header at the top of the screen */
  1875. /* Hover effect for header elements when appropriate */ }
  1876. .header h1 {
  1877. margin: 0; }
  1878. .header h2 {
  1879. margin: 0; }
  1880. .header h3 {
  1881. margin: 0; }
  1882. .header h4 {
  1883. margin: 0; }
  1884. .header h5 {
  1885. margin: 0; }
  1886. .header h6 {
  1887. margin: 0; }
  1888. .header a {
  1889. color: var(--header-link-color); }
  1890. .header a:hover {
  1891. color: var(--header-link-color-hover); }
  1892. .header.header-dark {
  1893. background-color: rgba(0, 0, 0, 0.87);
  1894. color: #fff;
  1895. --header-link-color: #fff;
  1896. --header-link-color-hover: #fff;
  1897. /* Theme for dark menu */ }
  1898. .header.header-clear {
  1899. background-color: transparent;
  1900. box-shadow: none;
  1901. /* Add border radius to whole menu with clear header */ }
  1902. .header.header-clear .nav-item .dropdown-menu {
  1903. border-radius: 4px; }
  1904. .header.header-animated .header-nav {
  1905. transition: all 0.3s; }
  1906. .header .header-nav {
  1907. /* Flex display 768px and higher */
  1908. overflow: auto; }
  1909. .header .header-brand {
  1910. -webkit-overflow-scrolling: touch;
  1911. -webkit-box-align: stretch;
  1912. -ms-flex-align: stretch;
  1913. align-items: stretch;
  1914. display: -webkit-box;
  1915. display: -ms-flexbox;
  1916. display: flex;
  1917. -ms-flex-negative: 0;
  1918. flex-shrink: 0;
  1919. max-width: 100vw;
  1920. min-height: 3.25rem;
  1921. overflow-x: auto;
  1922. overflow-y: hidden; }
  1923. .header.header-fixed {
  1924. position: fixed;
  1925. top: 0;
  1926. /* Change this if you want to float the header somewhere else */ }
  1927. .header:not(.header-clear) .nav-item:not(.no-hover):hover,
  1928. .header:not(.header-clear) .nav-item:not(.no-hover).hovered {
  1929. background-color: rgba(216, 216, 216, 0.15);
  1930. transition: all 0.3s; }
  1931. .header:not(.header-clear) .nav-item.active,
  1932. .header:not(.header-clear) .nav-item.active:hover {
  1933. background-color: rgba(216, 216, 216, 0.35); }
  1934. .header .nav-btn {
  1935. cursor: pointer;
  1936. display: block;
  1937. height: 3.5rem;
  1938. position: relative;
  1939. width: 3.5rem; }
  1940. .header .btn, .header button, .header [type="submit"], .header [type="reset"], .header [type="button"] {
  1941. margin: 0; }
  1942. /* Styles for header menu (aka the nav bar) */
  1943. .nav-menu {
  1944. transition: all 0.3s; }
  1945. .nav-menu .has-sub {
  1946. position: relative; }
  1947. /* Allow the user to scroll through navbar items if it exceeds nav-left, nav-center, or nav-right widths */
  1948. .nav-overflow-x {
  1949. -webkit-box-pack: inherit;
  1950. -ms-flex-pack: inherit;
  1951. justify-content: inherit;
  1952. overflow-x: scroll; }
  1953. /* Wrapper to vertically center header items */
  1954. .nav-item {
  1955. -webkit-box-align: center;
  1956. -ms-flex-align: center;
  1957. align-items: center;
  1958. display: -webkit-box;
  1959. display: -ms-flexbox;
  1960. display: flex;
  1961. position: relative;
  1962. -webkit-box-flex: 0;
  1963. -ms-flex-positive: 0;
  1964. flex-grow: 0;
  1965. -ms-flex-negative: 0;
  1966. flex-shrink: 0;
  1967. -webkit-box-pack: center;
  1968. -ms-flex-pack: center;
  1969. justify-content: center;
  1970. transition: all 0.3s;
  1971. padding: 0 0.3rem;
  1972. cursor: pointer;
  1973. /* HEADER DROP DOWN MENU */
  1974. /* Add room for the dropdown chevron pseudoelement */ }
  1975. .nav-item a {
  1976. align-items: center;
  1977. display: flex; }
  1978. .nav-item .dropdown-menu {
  1979. background-color: var(--cirrus-bg);
  1980. position: absolute;
  1981. top: 95%;
  1982. /*right: 0; /* Unable to solve problem when we have multiple drop down menus */
  1983. z-index: 1000;
  1984. float: left;
  1985. min-width: 160px;
  1986. padding: 5px 0;
  1987. margin: 2px 0 0;
  1988. font-size: 14px;
  1989. text-align: left;
  1990. list-style: none;
  1991. background-clip: padding-box;
  1992. border: 1px solid #e9ecef;
  1993. border-radius: 0 0 4px 4px;
  1994. box-shadow: 0 0.5rem 1rem rgba(10, 10, 10, 0.1);
  1995. /* Just add a transition in general */ }
  1996. .nav-item .dropdown-menu.dropdown-animated {
  1997. transition: all var(--animation-duration); }
  1998. .nav-item .dropdown-menu > li > a {
  1999. display: block;
  2000. padding: 0.5rem 1rem;
  2001. clear: both;
  2002. line-height: 1.42857143;
  2003. white-space: nowrap; }
  2004. .nav-item .dropdown-menu > li {
  2005. margin: 0;
  2006. transition: all 0.3s; }
  2007. .nav-item .dropdown-menu > li:hover {
  2008. transition: all 0.3s;
  2009. background-color: rgba(216, 216, 216, 0.15); }
  2010. .nav-item .dropdown-menu > li:active {
  2011. transition: all 0.3s;
  2012. background-color: rgba(216, 216, 216, 0.25); }
  2013. .nav-item .dropdown-menu > li:last-child {
  2014. margin-bottom: 0; }
  2015. .nav-item .dropdown-menu .dropdown-menu-divider {
  2016. border: none;
  2017. background-color: rgba(216, 216, 216, 0.15);
  2018. height: 1px;
  2019. margin: 0.5rem 0; }
  2020. .nav-item.has-sub .nav-dropdown-link {
  2021. padding-right: 2.5rem;
  2022. position: relative;
  2023. /* Needed for hiding glyphs in mobile header */
  2024. /* Dropdown menu location adjustment located below for sizes above phones */
  2025. /* Dropdown menu indicator */ }
  2026. .nav-item.has-sub .nav-dropdown-link::after {
  2027. border: 2px solid var(--cirrus-primary);
  2028. /* Must be first to create the triangle shape */
  2029. border-right: 0;
  2030. /* Create the triangle effect */
  2031. border-top: 0;
  2032. display: block;
  2033. height: 0.5em;
  2034. width: 0.5em;
  2035. content: ' ';
  2036. -webkit-transform: rotate(-45deg);
  2037. transform: rotate(-45deg);
  2038. pointer-events: none;
  2039. margin-top: -0.435em;
  2040. right: 1.125em;
  2041. top: 50%;
  2042. position: absolute; }
  2043. /* Dark dropdown menu theme */
  2044. .nav-item .dropdown-menu.dropdown-dark,
  2045. .header.header-dark .dropdown-menu {
  2046. background-color: rgba(0, 0, 0, 0.87);
  2047. border: 1px solid #343a40;
  2048. color: #fff; }
  2049. .dropdown-menu.dropdown-shown,
  2050. .nav-item.active {
  2051. opacity: 1; }
  2052. @media screen and (min-width: 769px) {
  2053. .header {
  2054. -webkit-box-align: stretch;
  2055. /* Box Align and align items to stretch to make nav-items fill up parent height */
  2056. -ms-flex-align: stretch;
  2057. align-items: stretch;
  2058. display: -webkit-box;
  2059. display: -ms-flexbox;
  2060. /* These styles can also be used on menus in the body */
  2061. /* Align items to the left */
  2062. /* Align items to the right */
  2063. /* Centering items, best used when nav-brand is not used to prevent offset */
  2064. /* Hide hamburger button */ }
  2065. .header .header-nav {
  2066. -webkit-box-flex: 1;
  2067. -ms-flex-positive: 1;
  2068. flex-grow: 1;
  2069. -ms-flex-negative: 0;
  2070. -webkit-box-align: stretch;
  2071. -ms-flex-align: stretch;
  2072. align-items: stretch;
  2073. /* Make items fill up all available space regardless of width https://drafts.csswg.org/css-align/ */
  2074. display: -webkit-box;
  2075. display: -ms-flexbox;
  2076. display: flex;
  2077. position: relative;
  2078. text-align: center;
  2079. width: 100%;
  2080. top: 0;
  2081. overflow: visible;
  2082. /* Only visible for showing dropdown menus, hidden for mobile */ }
  2083. .header .nav-left {
  2084. -webkit-box-align: stretch;
  2085. -ms-flex-align: stretch;
  2086. -ms-grid-row-align: stretch;
  2087. align-items: stretch;
  2088. -ms-flex-preferred-size: 0;
  2089. flex-basis: 0;
  2090. -webkit-box-flex: 1;
  2091. -ms-flex-positive: 1;
  2092. flex-grow: 1;
  2093. -ms-flex-negative: 0;
  2094. flex-shrink: 0;
  2095. display: flex;
  2096. -webkit-box-pack: start;
  2097. -ms-flex-pack: start;
  2098. justify-content: flex-start;
  2099. white-space: nowrap;
  2100. /* Align dropdown menu to the left side of the parent nav-item for header-left */ }
  2101. .header .nav-left .has-sub .dropdown-menu {
  2102. left: 0;
  2103. right: auto; }
  2104. .header .nav-right {
  2105. -webkit-box-align: stretch;
  2106. -ms-flex-align: stretch;
  2107. -ms-grid-row-align: stretch;
  2108. align-items: stretch;
  2109. -ms-flex-preferred-size: 0;
  2110. flex-basis: 0;
  2111. -webkit-box-flex: 1;
  2112. -ms-flex-positive: 1;
  2113. flex-grow: 1;
  2114. -ms-flex-negative: 0;
  2115. flex-shrink: 0;
  2116. display: flex;
  2117. -webkit-box-pack: end;
  2118. -ms-flex-pack: end;
  2119. justify-content: flex-end;
  2120. white-space: nowrap;
  2121. /* Align dropdown menu to the right side of the parent nav-item for header-right */ }
  2122. .header .nav-right .has-sub .dropdown-menu {
  2123. left: auto;
  2124. right: 0; }
  2125. .header .nav-center {
  2126. -webkit-box-align: stretch;
  2127. -ms-flex-align: stretch;
  2128. align-items: stretch;
  2129. display: -webkit-box;
  2130. display: -ms-flexbox;
  2131. display: flex;
  2132. -webkit-box-flex: 0;
  2133. -ms-flex-positive: 0;
  2134. flex-grow: 0;
  2135. -ms-flex-negative: 0;
  2136. flex-shrink: 0;
  2137. -webkit-box-pack: center;
  2138. -ms-flex-pack: center;
  2139. justify-content: center;
  2140. margin-left: auto;
  2141. margin-right: auto; }
  2142. .header .nav-btn {
  2143. display: none; }
  2144. .header .nav-item {
  2145. /* Expand link area for desktop views so it is easier to click */ }
  2146. .header .nav-item a {
  2147. padding: 0.5rem 1rem; }
  2148. .header .nav-item .dropdown-menu {
  2149. opacity: 0;
  2150. pointer-events: none;
  2151. /* Make cursor not respond to menu links when not displayed */ }
  2152. .header .nav-item .dropdown-menu.dropdown-animated {
  2153. -webkit-transform: translateY(-5px);
  2154. /* Used for transitional drop down effect */
  2155. transform: translateY(-5px); }
  2156. .header .nav-item .dropdown-menu.dropdown-shown,
  2157. .header .nav-item.toggle-hover:hover .dropdown-menu,
  2158. .header .nav-item .dropdown-menu.dropdown-animated.dropdown-shown {
  2159. opacity: 1;
  2160. -webkit-transform: none;
  2161. /* Used for transitional drop down effect */
  2162. transform: none;
  2163. pointer-events: auto; } }
  2164. @media screen and (max-width: 767px) {
  2165. /* Add scrolling support in header */
  2166. .header {
  2167. flex-direction: column;
  2168. /* Hide dropdown menu on mobile */ }
  2169. .header .header-brand .nav-item:first-child {
  2170. padding: 0 1rem;
  2171. /* Add padding to the first child, usually the logo */ }
  2172. .header .header-nav {
  2173. height: 0;
  2174. /* Show the dropdown */
  2175. /* Make the menu items larger in the dropdown menu */
  2176. /* Get rid of extra spaces */ }
  2177. .header .header-nav.active {
  2178. height: 100vh; }
  2179. .header .header-nav .nav-item {
  2180. padding: 1rem; }
  2181. .header .header-nav .nav-item > a {
  2182. padding: 0;
  2183. width: 100%;
  2184. /* Stretch the link to span the entire list item */ }
  2185. /* Remove flex for mobile devices */
  2186. .nav-item.has-sub {
  2187. display: block; }
  2188. .nav-item.has-sub .dropdown-menu {
  2189. /* Hide the menu by default in mobile view (overflow on header-right can expose it) */
  2190. display: none; }
  2191. .nav-item.has-sub .dropdown-menu.dropdown-shown {
  2192. border-radius: 0;
  2193. box-shadow: none;
  2194. display: block;
  2195. position: relative;
  2196. top: 1rem;
  2197. float: none;
  2198. border: none;
  2199. background-color: transparent;
  2200. margin-bottom: 1rem; }
  2201. .nav-item.has-sub .dropdown-menu.dropdown-dark {
  2202. background-color: rgba(0, 0, 0, 0.17);
  2203. border: 0; }
  2204. /* Hamburger button */
  2205. .nav-btn {
  2206. cursor: pointer;
  2207. display: block;
  2208. position: relative;
  2209. margin-left: auto;
  2210. /* Hamburger button on active */ }
  2211. .nav-btn span {
  2212. background-color: var(--header-link-color);
  2213. display: block;
  2214. height: 2px;
  2215. left: 50%;
  2216. margin-left: -7px;
  2217. position: absolute;
  2218. top: 50%;
  2219. transition: none 86ms ease-out;
  2220. width: 15px;
  2221. /* Line spacing in hamburger button */ }
  2222. .nav-btn span:nth-child(1) {
  2223. margin-top: -6px; }
  2224. .nav-btn span:nth-child(2) {
  2225. margin-top: -1px; }
  2226. .nav-btn span:nth-child(3) {
  2227. margin-top: 4px; }
  2228. .nav-btn.active span:nth-child(1) {
  2229. margin-left: -5px;
  2230. transform: rotate(45deg);
  2231. transform-origin: left top; }
  2232. .nav-btn.active span:nth-child(2) {
  2233. opacity: 0; }
  2234. .nav-btn.active span:nth-child(3) {
  2235. margin-left: -5px;
  2236. transform: rotate(-45deg);
  2237. transform-origin: left bottom; }
  2238. /* Hide drop down menu items */
  2239. .nav-left,
  2240. .nav-center,
  2241. .nav-right {
  2242. overflow: hidden; }
  2243. /* No need for JS to show dropdown menu on mobile devices now */
  2244. .header .nav-item.has-sub.toggle-hover:not(.no-hover):hover > .dropdown-menu {
  2245. border-radius: 0;
  2246. box-shadow: none;
  2247. display: block;
  2248. position: relative;
  2249. top: 1rem;
  2250. float: none;
  2251. border: none;
  2252. background-color: transparent;
  2253. margin-bottom: 1rem; } }
  2254. /*
  2255. Functions
  2256. */
  2257. /*
  2258. Converts a given hex value to RGB.
  2259. */
  2260. /*
  2261. Generates delimited class name prefix.
  2262. */
  2263. /*
  2264. Fetch feature flag for different utility class types for generating viewport classes (e.g., u-flex-sm, u-flex-md, etc.).
  2265. */
  2266. /* Spacing */
  2267. /* Fonts */
  2268. /* Grid Count */
  2269. /* Grid Percents */
  2270. /* Tab Sizes */
  2271. /* Media Queries */
  2272. /* Smaller than the defined pixels are the dimensions for that range */
  2273. /* Color scheme for Cirrus */
  2274. /* v2 Colors */
  2275. :root {
  2276. /* v1 Colors */
  2277. --cirrus-fg: #374054;
  2278. --cirrus-bg: #fff;
  2279. --cirrus-primary: #f03d4d;
  2280. --cirrus-primary-rgb: 240, 61, 77;
  2281. --cirrus-primary-light: #ffdadd;
  2282. --cirrus-accent-hover: #d62939;
  2283. --cirrus-accent-border: #c21b2b;
  2284. --cirrus-light: #f6f9fc;
  2285. --cirrus-light-gray: #f8f9fa;
  2286. --cirrus-gray: #d5d7dc;
  2287. --cirrus-dark-gray: #909090;
  2288. --cirrus-dark: #363636;
  2289. --cirrus-link: #5e5cc7;
  2290. --cirrus-link-dark: #4643e2;
  2291. --cirrus-info: #2972fa;
  2292. --cirrus-success: #0dd157;
  2293. --cirrus-success-rgb: 13, 209, 87;
  2294. --cirrus-warning: #fab633;
  2295. --cirrus-danger: #fb4143;
  2296. --cirrus-light-hover: #d0e0ef;
  2297. --cirrus-dark-hover: #505050;
  2298. --cirrus-info-hover: #1062f9;
  2299. --cirrus-link-hover: #f8f7ff;
  2300. --cirrus-success-hover: #0cb94d;
  2301. --cirrus-warning-hover: #f9ad1a;
  2302. --cirrus-danger-hover: #eb0507;
  2303. --cirrus-select-bg: rgba(0, 161, 255, 0.2);
  2304. --cirrus-code-bg: var(--cirrus-primary-light);
  2305. --cirrus-code-fg: #dc4753;
  2306. --cirrus-form-group-bg: var(--cirrus-light-gray);
  2307. --cirrus-form-group-fg: var(--cirrus-dark-gray);
  2308. --toast-primary-bg: rgba(49, 59, 80, 0.9);
  2309. --animation-duration: 0.2s;
  2310. --focus-opacity: 0.55;
  2311. --space-size: 0.5rem;
  2312. --font-size-xs: 0.7rem;
  2313. --font-size-s: 0.85rem;
  2314. --font-size-m: 1rem;
  2315. --font-size-l: 1.35rem;
  2316. --font-size-xl: 1.75rem; }
  2317. /* Spacing */
  2318. /* Fonts */
  2319. /* Grid Count */
  2320. /* Grid Percents */
  2321. /* Tab Sizes */
  2322. /* Media Queries */
  2323. /* Smaller than the defined pixels are the dimensions for that range */
  2324. /* HEADER */
  2325. /* This works well with panel */
  2326. section {
  2327. display: block; }
  2328. .content {
  2329. max-width: 60em;
  2330. margin: 0 auto 1.5em;
  2331. width: 80%; }
  2332. .fullscreen {
  2333. top: 0;
  2334. right: 0;
  2335. bottom: 0;
  2336. left: 0;
  2337. height: 100vh; }
  2338. /* This works well with spans and maybe even hr */
  2339. .divider {
  2340. border-top: 0.05rem solid rgba(173, 181, 189, 0.5);
  2341. height: 0.1rem;
  2342. margin: 1.8rem 0 1.6rem;
  2343. position: relative; }
  2344. .divider[data-content] {
  2345. margin: 0.8rem 0; }
  2346. .divider--v[data-content]::after, .divider[data-content]::after {
  2347. background: #fff;
  2348. color: #adb5bd;
  2349. content: attr(data-content);
  2350. left: 50%;
  2351. display: inline-block;
  2352. padding: 0 0.4rem;
  2353. position: absolute;
  2354. transform: translate(-50%, -50%);
  2355. top: 50%; }
  2356. .divider--v, .divider--v[data-content] {
  2357. display: block;
  2358. padding: 0.8rem; }
  2359. .divider--v::before, .divider--v[data-content]::before {
  2360. border-left: 0.05rem solid rgba(173, 181, 189, 0.5);
  2361. bottom: 0.4rem;
  2362. content: '';
  2363. display: block;
  2364. left: 50%;
  2365. position: absolute;
  2366. top: 0;
  2367. transform: translateX(-50%); }
  2368. .divider--v[data-content] {
  2369. left: 50%;
  2370. padding: 0.2rem 0;
  2371. position: absolute;
  2372. top: 50%;
  2373. transform: translate(-50%, -50%); }
  2374. /* Hero image div */
  2375. .hero-img {
  2376. /* Specify the backgroud image yourself */
  2377. background-size: cover; }
  2378. .parallax-img {
  2379. background-attachment: fixed !important; }
  2380. .hero {
  2381. /* Parent of hero-body */
  2382. -webkit-box-align: stretch;
  2383. -ms-flex-align: stretch;
  2384. align-items: stretch;
  2385. display: -webkit-box;
  2386. display: -ms-flexbox;
  2387. display: flex;
  2388. /* Important to stretch height of hero-body */
  2389. -webkit-box-orient: vertical;
  2390. -webkit-box-pack: justify;
  2391. -ms-flex-pack: justify;
  2392. justify-content: space-between; }
  2393. .hero .hero-body {
  2394. -ms-flex-positive: 1;
  2395. flex-grow: 1;
  2396. /* Tells the hero-body to take up the entire space */
  2397. -ms-flex-negative: 0;
  2398. flex-shrink: 0;
  2399. padding: 3rem 1.5rem;
  2400. align-items: center;
  2401. display: -ms-flexbox;
  2402. display: flex;
  2403. width: 100%; }
  2404. .space {
  2405. display: block;
  2406. width: 100%;
  2407. height: 1rem; }
  2408. .space.large {
  2409. padding: 1rem 0; }
  2410. .space.xlarge {
  2411. padding: 2rem 0; }
  2412. /* Use for spacing out elements vertically */
  2413. .row {
  2414. -ms-flex: 1;
  2415. flex: 1;
  2416. flex-wrap: wrap;
  2417. padding: 0.5rem 0;
  2418. display: flex;
  2419. /* GRID */
  2420. /* Auto align col to left in row */
  2421. /* Auto align col to middle in row */
  2422. /* Auto align col to right in row */
  2423. /* Dividers for mobile layout */
  2424. /* Base sizing where everything is 100% width */
  2425. /* Column sizes for various viewports */
  2426. /* Columns without the spacing */ }
  2427. .row::after {
  2428. content: '';
  2429. clear: both;
  2430. display: table; }
  2431. .row.row--no-wrap {
  2432. -webkit-flex-wrap: nowrap;
  2433. /* Remove wrapping of the columns by default */
  2434. -ms-flex-wrap: nowrap;
  2435. flex-wrap: nowrap;
  2436. overflow-x: auto;
  2437. /* Can be disabled to remove scroll bar */ }
  2438. .row .col {
  2439. display: block;
  2440. flex: 1;
  2441. padding: 0.15rem 0.75rem; }
  2442. .row .offset-right {
  2443. margin-left: 0;
  2444. margin-right: auto; }
  2445. .row .offset-center {
  2446. margin-left: auto;
  2447. margin-right: auto; }
  2448. .row .offset-left {
  2449. margin-left: auto;
  2450. margin-right: 0; }
  2451. .row.divided [class^='col'],
  2452. .row.divided [class*=' col'] {
  2453. box-shadow: 0 -1px 0 0 rgba(173, 181, 189, 0.5); }
  2454. .row [class^='col-'],
  2455. .row [class*=' col-'] {
  2456. width: 100%;
  2457. margin-left: 0;
  2458. padding: 0 0.5rem; }
  2459. .row .col-xs-1 {
  2460. width: 8.33333%; }
  2461. .row .offset-1 {
  2462. margin-left: 8.33333%; }
  2463. .row .col-xs-2 {
  2464. width: 16.66667%; }
  2465. .row .offset-2 {
  2466. margin-left: 16.66667%; }
  2467. .row .col-xs-3 {
  2468. width: 25%; }
  2469. .row .offset-3 {
  2470. margin-left: 25%; }
  2471. .row .col-xs-4 {
  2472. width: 33.33333%; }
  2473. .row .offset-4 {
  2474. margin-left: 33.33333%; }
  2475. .row .col-xs-5 {
  2476. width: 41.66667%; }
  2477. .row .offset-5 {
  2478. margin-left: 41.66667%; }
  2479. .row .col-xs-6 {
  2480. width: 50%; }
  2481. .row .offset-6 {
  2482. margin-left: 50%; }
  2483. .row .col-xs-7 {
  2484. width: 58.33333%; }
  2485. .row .offset-7 {
  2486. margin-left: 58.33333%; }
  2487. .row .col-xs-8 {
  2488. width: 66.66667%; }
  2489. .row .offset-8 {
  2490. margin-left: 66.66667%; }
  2491. .row .col-xs-9 {
  2492. width: 75%; }
  2493. .row .offset-9 {
  2494. margin-left: 75%; }
  2495. .row .col-xs-10 {
  2496. width: 83.33333%; }
  2497. .row .offset-10 {
  2498. margin-left: 83.33333%; }
  2499. .row .col-xs-11 {
  2500. width: 91.66667%; }
  2501. .row .offset-11 {
  2502. margin-left: 91.66667%; }
  2503. .row .col-xs-12 {
  2504. width: 100%; }
  2505. .row .offset-12 {
  2506. margin-left: 100%; }
  2507. @media screen and (min-width: 640px) {
  2508. .row .col-sm-1 {
  2509. width: 8.33333%; } }
  2510. @media screen and (min-width: 640px) {
  2511. .row .col-sm-2 {
  2512. width: 16.66667%; } }
  2513. @media screen and (min-width: 640px) {
  2514. .row .col-sm-3 {
  2515. width: 25%; } }
  2516. @media screen and (min-width: 640px) {
  2517. .row .col-sm-4 {
  2518. width: 33.33333%; } }
  2519. @media screen and (min-width: 640px) {
  2520. .row .col-sm-5 {
  2521. width: 41.66667%; } }
  2522. @media screen and (min-width: 640px) {
  2523. .row .col-sm-6 {
  2524. width: 50%; } }
  2525. @media screen and (min-width: 640px) {
  2526. .row .col-sm-7 {
  2527. width: 58.33333%; } }
  2528. @media screen and (min-width: 640px) {
  2529. .row .col-sm-8 {
  2530. width: 66.66667%; } }
  2531. @media screen and (min-width: 640px) {
  2532. .row .col-sm-9 {
  2533. width: 75%; } }
  2534. @media screen and (min-width: 640px) {
  2535. .row .col-sm-10 {
  2536. width: 83.33333%; } }
  2537. @media screen and (min-width: 640px) {
  2538. .row .col-sm-11 {
  2539. width: 91.66667%; } }
  2540. @media screen and (min-width: 640px) {
  2541. .row .col-sm-12 {
  2542. width: 100%; } }
  2543. @media screen and (min-width: 768px) {
  2544. .row .col-md-1,
  2545. .row .col-1 {
  2546. width: 8.33333%; } }
  2547. @media screen and (min-width: 768px) {
  2548. .row .col-md-2,
  2549. .row .col-2 {
  2550. width: 16.66667%; } }
  2551. @media screen and (min-width: 768px) {
  2552. .row .col-md-3,
  2553. .row .col-3 {
  2554. width: 25%; } }
  2555. @media screen and (min-width: 768px) {
  2556. .row .col-md-4,
  2557. .row .col-4 {
  2558. width: 33.33333%; } }
  2559. @media screen and (min-width: 768px) {
  2560. .row .col-md-5,
  2561. .row .col-5 {
  2562. width: 41.66667%; } }
  2563. @media screen and (min-width: 768px) {
  2564. .row .col-md-6,
  2565. .row .col-6 {
  2566. width: 50%; } }
  2567. @media screen and (min-width: 768px) {
  2568. .row .col-md-7,
  2569. .row .col-7 {
  2570. width: 58.33333%; } }
  2571. @media screen and (min-width: 768px) {
  2572. .row .col-md-8,
  2573. .row .col-8 {
  2574. width: 66.66667%; } }
  2575. @media screen and (min-width: 768px) {
  2576. .row .col-md-9,
  2577. .row .col-9 {
  2578. width: 75%; } }
  2579. @media screen and (min-width: 768px) {
  2580. .row .col-md-10,
  2581. .row .col-10 {
  2582. width: 83.33333%; } }
  2583. @media screen and (min-width: 768px) {
  2584. .row .col-md-11,
  2585. .row .col-11 {
  2586. width: 91.66667%; } }
  2587. @media screen and (min-width: 768px) {
  2588. .row .col-md-12,
  2589. .row .col-12 {
  2590. width: 100%; } }
  2591. @media screen and (min-width: 1024px) {
  2592. .row .col-lg-1 {
  2593. width: 8.33333%; } }
  2594. @media screen and (min-width: 1024px) {
  2595. .row .col-lg-2 {
  2596. width: 16.66667%; } }
  2597. @media screen and (min-width: 1024px) {
  2598. .row .col-lg-3 {
  2599. width: 25%; } }
  2600. @media screen and (min-width: 1024px) {
  2601. .row .col-lg-4 {
  2602. width: 33.33333%; } }
  2603. @media screen and (min-width: 1024px) {
  2604. .row .col-lg-5 {
  2605. width: 41.66667%; } }
  2606. @media screen and (min-width: 1024px) {
  2607. .row .col-lg-6 {
  2608. width: 50%; } }
  2609. @media screen and (min-width: 1024px) {
  2610. .row .col-lg-7 {
  2611. width: 58.33333%; } }
  2612. @media screen and (min-width: 1024px) {
  2613. .row .col-lg-8 {
  2614. width: 66.66667%; } }
  2615. @media screen and (min-width: 1024px) {
  2616. .row .col-lg-9 {
  2617. width: 75%; } }
  2618. @media screen and (min-width: 1024px) {
  2619. .row .col-lg-10 {
  2620. width: 83.33333%; } }
  2621. @media screen and (min-width: 1024px) {
  2622. .row .col-lg-11 {
  2623. width: 91.66667%; } }
  2624. @media screen and (min-width: 1024px) {
  2625. .row .col-lg-12 {
  2626. width: 100%; } }
  2627. @media screen and (min-width: 1280px) {
  2628. .row .col-xl-1 {
  2629. width: 8.33333%; } }
  2630. @media screen and (min-width: 1280px) {
  2631. .row .col-xl-2 {
  2632. width: 16.66667%; } }
  2633. @media screen and (min-width: 1280px) {
  2634. .row .col-xl-3 {
  2635. width: 25%; } }
  2636. @media screen and (min-width: 1280px) {
  2637. .row .col-xl-4 {
  2638. width: 33.33333%; } }
  2639. @media screen and (min-width: 1280px) {
  2640. .row .col-xl-5 {
  2641. width: 41.66667%; } }
  2642. @media screen and (min-width: 1280px) {
  2643. .row .col-xl-6 {
  2644. width: 50%; } }
  2645. @media screen and (min-width: 1280px) {
  2646. .row .col-xl-7 {
  2647. width: 58.33333%; } }
  2648. @media screen and (min-width: 1280px) {
  2649. .row .col-xl-8 {
  2650. width: 66.66667%; } }
  2651. @media screen and (min-width: 1280px) {
  2652. .row .col-xl-9 {
  2653. width: 75%; } }
  2654. @media screen and (min-width: 1280px) {
  2655. .row .col-xl-10 {
  2656. width: 83.33333%; } }
  2657. @media screen and (min-width: 1280px) {
  2658. .row .col-xl-11 {
  2659. width: 91.66667%; } }
  2660. @media screen and (min-width: 1280px) {
  2661. .row .col-xl-12 {
  2662. width: 100%; } }
  2663. .row.no-space [class^='col-'],
  2664. .row.no-space [class*=' col-'] {
  2665. padding: 0; }
  2666. .r {
  2667. /* Legacy row pre 0.5.5 */
  2668. max-width: 100%;
  2669. padding: 0.5rem; }
  2670. .level {
  2671. -webkit-box-align: center;
  2672. -ms-flex-align: center;
  2673. -ms-grid-row-align: center;
  2674. align-items: center;
  2675. -webkit-box-pack: justify;
  2676. -ms-flex-pack: justify;
  2677. justify-content: space-between;
  2678. /* Used to stretch the contents of div in level to fill */ }
  2679. .level .level-item {
  2680. /* Centers items */
  2681. -webkit-box-align: center;
  2682. -ms-flex-align: center;
  2683. align-items: center;
  2684. display: -webkit-box;
  2685. display: -ms-flexbox;
  2686. display: flex;
  2687. -ms-flex-preferred-size: auto;
  2688. flex-basis: auto;
  2689. -webkit-box-flex: 0;
  2690. -ms-flex-positive: 0;
  2691. flex-grow: 0;
  2692. -ms-flex-negative: 0;
  2693. flex-shrink: 0;
  2694. -webkit-box-pack: center;
  2695. -ms-flex-pack: center;
  2696. justify-content: center; }
  2697. .level .level-content {
  2698. -ms-flex-preferred-size: auto;
  2699. flex-basis: auto;
  2700. -webkit-box-flex: 1;
  2701. -ms-flex-positive: 1;
  2702. flex-grow: 1;
  2703. -ms-flex-negative: 1;
  2704. flex-shrink: 1;
  2705. text-align: left;
  2706. width: 100%; }
  2707. /* Width/Height CSS */
  2708. .w-10 {
  2709. width: 10%; }
  2710. .h-10 {
  2711. height: 10%; }
  2712. .w-20 {
  2713. width: 20%; }
  2714. .h-20 {
  2715. height: 20%; }
  2716. .w-30 {
  2717. width: 30%; }
  2718. .h-30 {
  2719. height: 30%; }
  2720. .w-40 {
  2721. width: 40%; }
  2722. .h-40 {
  2723. height: 40%; }
  2724. .w-50 {
  2725. width: 50%; }
  2726. .h-50 {
  2727. height: 50%; }
  2728. .w-60 {
  2729. width: 60%; }
  2730. .h-60 {
  2731. height: 60%; }
  2732. .w-70 {
  2733. width: 70%; }
  2734. .h-70 {
  2735. height: 70%; }
  2736. .w-80 {
  2737. width: 80%; }
  2738. .h-80 {
  2739. height: 80%; }
  2740. .w-90 {
  2741. width: 90%; }
  2742. .h-90 {
  2743. height: 90%; }
  2744. .w-100 {
  2745. width: 100%; }
  2746. .h-100 {
  2747. height: 100%; }
  2748. .w-auto {
  2749. width: auto !important; }
  2750. .h-auto {
  2751. height: auto !important; }
  2752. .w-screen {
  2753. width: 100vw; }
  2754. .h-screen {
  2755. height: 100vh; }
  2756. /* Do the actual balancing only on larger screens */
  2757. @media screen and (min-width: 768px) {
  2758. .level,
  2759. .level-left,
  2760. .level-right {
  2761. display: -webkit-box;
  2762. display: -ms-flexbox;
  2763. display: flex; } }
  2764. @media screen and (max-width: 767px) {
  2765. .level-right {
  2766. margin-left: 1rem; }
  2767. /* Keep all level children the same height */
  2768. .level.fill-height {
  2769. -webkit-box-align: stretch;
  2770. /* Box Align and align items to stretch to make nav-items fill up parent height */
  2771. -ms-flex-align: stretch;
  2772. align-items: stretch;
  2773. display: -webkit-box;
  2774. display: -ms-flexbox;
  2775. display: flex; } }
  2776. /* MOBILE */
  2777. @media screen and (max-width: 767px) {
  2778. .container {
  2779. width: 100%; }
  2780. .row {
  2781. margin-top: 0; }
  2782. /* Dividers for mobile layout */
  2783. .divided > .row [class^='col-'],
  2784. .divided > .row [class*=' col-'] {
  2785. box-shadow: 0 -1px 0 0 rgba(34, 36, 38, 0.15); }
  2786. .level.ignore-screen,
  2787. .level-left.ignore-screen,
  2788. .level-right.ignore-screen {
  2789. display: -webkit-box;
  2790. display: -ms-flexbox;
  2791. display: flex; }
  2792. .level.fill-height {
  2793. display: inherit;
  2794. /* Allow children to expand */ }
  2795. .hero-body {
  2796. padding: 0; } }
  2797. /*
  2798. Group selectors that share common styling.
  2799. */
  2800. /* LINKS */
  2801. a {
  2802. color: var(--cirrus-link);
  2803. font-weight: 600;
  2804. padding: 2px;
  2805. text-decoration: none;
  2806. transition: all 0.3s; }
  2807. a:hover {
  2808. color: var(--cirrus-link-dark);
  2809. transition: all 0.3s; }
  2810. a.underline {
  2811. text-decoration: underline; }
  2812. .subtitle a {
  2813. padding: 0;
  2814. /* Removes weird offset in subtitle links */ }
  2815. h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,
  2816. article a,
  2817. blockquote a {
  2818. display: inline; }
  2819. /* Remove uneeded space since buttons have their own padding */
  2820. a .btn,
  2821. a button,
  2822. [type='submit'] a {
  2823. margin-bottom: 0; }
  2824. /*
  2825. Functions
  2826. */
  2827. /*
  2828. Converts a given hex value to RGB.
  2829. */
  2830. /*
  2831. Generates delimited class name prefix.
  2832. */
  2833. /*
  2834. Fetch feature flag for different utility class types for generating viewport classes (e.g., u-flex-sm, u-flex-md, etc.).
  2835. */
  2836. /* Spacing */
  2837. /* Fonts */
  2838. /* Grid Count */
  2839. /* Grid Percents */
  2840. /* Tab Sizes */
  2841. /* Media Queries */
  2842. /* Smaller than the defined pixels are the dimensions for that range */
  2843. /* Color scheme for Cirrus */
  2844. /* v2 Colors */
  2845. :root {
  2846. /* v1 Colors */
  2847. --cirrus-fg: #374054;
  2848. --cirrus-bg: #fff;
  2849. --cirrus-primary: #f03d4d;
  2850. --cirrus-primary-rgb: 240, 61, 77;
  2851. --cirrus-primary-light: #ffdadd;
  2852. --cirrus-accent-hover: #d62939;
  2853. --cirrus-accent-border: #c21b2b;
  2854. --cirrus-light: #f6f9fc;
  2855. --cirrus-light-gray: #f8f9fa;
  2856. --cirrus-gray: #d5d7dc;
  2857. --cirrus-dark-gray: #909090;
  2858. --cirrus-dark: #363636;
  2859. --cirrus-link: #5e5cc7;
  2860. --cirrus-link-dark: #4643e2;
  2861. --cirrus-info: #2972fa;
  2862. --cirrus-success: #0dd157;
  2863. --cirrus-success-rgb: 13, 209, 87;
  2864. --cirrus-warning: #fab633;
  2865. --cirrus-danger: #fb4143;
  2866. --cirrus-light-hover: #d0e0ef;
  2867. --cirrus-dark-hover: #505050;
  2868. --cirrus-info-hover: #1062f9;
  2869. --cirrus-link-hover: #f8f7ff;
  2870. --cirrus-success-hover: #0cb94d;
  2871. --cirrus-warning-hover: #f9ad1a;
  2872. --cirrus-danger-hover: #eb0507;
  2873. --cirrus-select-bg: rgba(0, 161, 255, 0.2);
  2874. --cirrus-code-bg: var(--cirrus-primary-light);
  2875. --cirrus-code-fg: #dc4753;
  2876. --cirrus-form-group-bg: var(--cirrus-light-gray);
  2877. --cirrus-form-group-fg: var(--cirrus-dark-gray);
  2878. --toast-primary-bg: rgba(49, 59, 80, 0.9);
  2879. --animation-duration: 0.2s;
  2880. --focus-opacity: 0.55;
  2881. --space-size: 0.5rem;
  2882. --font-size-xs: 0.7rem;
  2883. --font-size-s: 0.85rem;
  2884. --font-size-m: 1rem;
  2885. --font-size-l: 1.35rem;
  2886. --font-size-xl: 1.75rem; }
  2887. /* Spacing */
  2888. /* Fonts */
  2889. /* Grid Count */
  2890. /* Grid Percents */
  2891. /* Tab Sizes */
  2892. /* Media Queries */
  2893. /* Smaller than the defined pixels are the dimensions for that range */
  2894. /* LISTS */
  2895. ul,
  2896. ol {
  2897. margin: 1rem 0 1rem 1rem;
  2898. padding-inline-start: 0.5rem;
  2899. /* Handle nesting */ }
  2900. ul ul,
  2901. ul ol,
  2902. ol ul,
  2903. ol ol {
  2904. margin: 0 0 0 1rem; }
  2905. ul {
  2906. list-style: disc;
  2907. /* Nested list bullet types */ }
  2908. ul ul {
  2909. list-style-type: circle; }
  2910. ul ul ul {
  2911. list-style-type: square; }
  2912. ol ol {
  2913. list-style: lower-alpha; }
  2914. ol ol ol {
  2915. list-style: upper-roman; }
  2916. /* Description lists */
  2917. dl {
  2918. margin: 1rem 0; }
  2919. /* Detail title */
  2920. dt {
  2921. font-weight: 700; }
  2922. dd {
  2923. margin-bottom: 0.5rem; }
  2924. li {
  2925. margin: 0.25rem 0; }
  2926. /* MISC */
  2927. ul {
  2928. /* MENU LISTS */
  2929. /* Style headers to have even space distribution. */
  2930. /* Style menu items */
  2931. /* Style sub menus inside a menu */
  2932. /* Menu item divider */
  2933. /* Title for the section separated by the divider */ }
  2934. ul.no-bullets {
  2935. list-style: none; }
  2936. ul.menu {
  2937. font-size: 1rem;
  2938. list-style: none;
  2939. margin: 0.5rem 0; }
  2940. ul .menu-title:not(:first-child) {
  2941. margin-bottom: 1rem; }
  2942. ul .menu-title:not(:last-child) {
  2943. margin-top: 1rem; }
  2944. ul .menu-item a {
  2945. color: #495057;
  2946. display: block;
  2947. padding: 0.5em 0.75em;
  2948. border-radius: 3px;
  2949. font-size: var(--font-size-s);
  2950. cursor: pointer;
  2951. transition: all var(--animation-duration); }
  2952. ul .menu-item:hover > a {
  2953. background-color: rgba(208, 208, 208, 0.3);
  2954. color: var(--cirrus-primary);
  2955. transition: all var(--animation-duration); }
  2956. ul .menu-item.selected > a {
  2957. color: #fff;
  2958. background-color: var(--cirrus-primary); }
  2959. ul .menu-item .menu-addon {
  2960. padding: 0.3rem;
  2961. z-index: 1;
  2962. position: relative;
  2963. color: var(--cirrus-fg);
  2964. cursor: pointer;
  2965. float: left;
  2966. margin-right: 0.1rem;
  2967. transition: all var(--animation-duration); }
  2968. ul .menu-item .menu-addon .icon {
  2969. font-size: inherit;
  2970. vertical-align: auto; }
  2971. ul .menu-item .menu-addon:hover {
  2972. transition: all var(--animation-duration); }
  2973. ul .menu-item .menu-addon.right {
  2974. float: right;
  2975. margin-right: 0;
  2976. margin-left: 0.1rem; }
  2977. ul .menu-item.selected .menu-addon {
  2978. color: #fff; }
  2979. ul .menu-item ul {
  2980. border-left: 1px solid #dee2e6;
  2981. margin: 0.75rem;
  2982. padding-left: 0.75rem; }
  2983. ul .divider {
  2984. border-top: 0.1rem solid #e9ecef;
  2985. height: 0.1rem;
  2986. margin: 1rem 0; }
  2987. ul .divider::after {
  2988. content: attr(data-label);
  2989. /* Text that will be displayed */
  2990. background-color: var(--cirrus-bg);
  2991. color: #adb5bd;
  2992. display: inline-block;
  2993. padding: 0 0.7rem;
  2994. margin: 0.5rem;
  2995. font-size: 0.7rem;
  2996. -webkit-transform: translateY(-1.1rem);
  2997. transform: translateY(-1.1rem); }
  2998. /* Dropdown menu for dropdown buttons */
  2999. .list-dropdown {
  3000. display: inline-block;
  3001. position: relative;
  3002. /* Allow for shown and :focus selectors for JS and native CSS transitions */ }
  3003. .list-dropdown .menu {
  3004. position: absolute;
  3005. top: 75%;
  3006. left: 0;
  3007. -webkit-animation: slide-down var(--animation-duration) ease 1;
  3008. animation: slide-down 0.1s ease 1;
  3009. background-color: var(--cirrus-bg);
  3010. border-radius: 0.2rem;
  3011. box-shadow: 0 1rem 3rem rgba(149, 157, 165, 0.3);
  3012. margin: 0;
  3013. opacity: 0;
  3014. min-width: 15rem;
  3015. padding: 0.25rem 0.5rem;
  3016. -webkit-transform: translateY(0.5rem);
  3017. transform: translateY(0.5rem);
  3018. z-index: 10;
  3019. pointer-events: none;
  3020. /* Remove pointer events to prevent mouse hover to show menu even though it is not visible */
  3021. overflow: hidden;
  3022. transition: all var(--animation-duration); }
  3023. @media screen and (max-width: 767px) {
  3024. .list-dropdown .menu {
  3025. height: 0;
  3026. padding: 0 !important;
  3027. position: relative; } }
  3028. .list-dropdown.dropdown-right .menu {
  3029. left: auto;
  3030. right: 0; }
  3031. .list-dropdown.shown .menu,
  3032. .list-dropdown .btn-dropdown:focus + .menu,
  3033. .list-dropdown .menu:hover {
  3034. display: block;
  3035. opacity: 1;
  3036. top: 100%;
  3037. z-index: 100;
  3038. pointer-events: auto;
  3039. /* Restore pointer events */
  3040. height: auto;
  3041. transition: all var(--animation-duration); }
  3042. .list-dropdown .btn-group .btn-dropdown:nth-last-child(2) {
  3043. border-bottom-right-radius: 3px;
  3044. border-top-right-radius: 3px; }
  3045. /* TREE */
  3046. /* Tree Navigation Menu */
  3047. .tree {
  3048. margin: 0; }
  3049. .tree .tree-item {
  3050. /* The title of the tree menu */
  3051. /* The dropdown glyph of the tree menu */
  3052. /* Expand the tree-item-body (has menu-items) */
  3053. /* Rotate the dropdown glyph */
  3054. /* Container for the menu-items of the tree menu */ }
  3055. .tree .tree-item .tree-item-header {
  3056. display: block;
  3057. padding: 0.25rem 0.5rem;
  3058. cursor: pointer;
  3059. font-weight: 700;
  3060. /* Keep styling consistent with menu-items */ }
  3061. .tree .tree-item .tree-item-header .icon {
  3062. transition: all var(--animation-duration); }
  3063. .tree .tree-item input:checked ~ .tree-item-body {
  3064. max-height: 100vh; }
  3065. .tree .tree-item input:checked ~ .tree-item-header .icon {
  3066. -webkit-transform: rotate(90deg);
  3067. transform: rotate(90deg); }
  3068. .tree .tree-item .tree-item-body {
  3069. max-height: 0;
  3070. /* Hidden at first */
  3071. margin-left: 1.5rem;
  3072. overflow: hidden;
  3073. transition: all var(--animation-duration); }
  3074. /* The body that will encompass the tree-nav and tree-nav-content */
  3075. .tree-nav-body {
  3076. display: -webkit-box;
  3077. display: -ms-flexbox;
  3078. display: flex;
  3079. height: 100vh;
  3080. -ms-flex-wrap: nowrap;
  3081. flex-wrap: nowrap;
  3082. /* A fixed menu on the side with a tree component */
  3083. /* The container for the tree component to prevent it from overflowing */
  3084. /* Darkened area that will close the navbar when clicked for mobile only */
  3085. /* Push document body further right to account for sidebar space */
  3086. /* The body where all other HTML components are entered if a tree-nav is used */ }
  3087. .tree-nav-body .tree-nav {
  3088. -webkit-box-flex: 0;
  3089. -ms-flex-positive: 0;
  3090. flex-grow: 0;
  3091. -ms-flex-negative: 1;
  3092. flex-shrink: 1;
  3093. padding: 2rem 1rem 2rem 2rem;
  3094. min-width: 15rem;
  3095. height: 100vh;
  3096. overflow: auto; }
  3097. .tree-nav-body .tree-nav-container {
  3098. overflow-y: auto;
  3099. top: 4rem;
  3100. bottom: 1rem; }
  3101. .tree-nav-body + .tree-nav-close {
  3102. display: none;
  3103. /* Not needed in desktop */ }
  3104. .tree-nav-body + .tree-nav-content {
  3105. max-width: 100%;
  3106. padding: 2rem;
  3107. -ms-flex: 1 0 auto;
  3108. -webkit-box-flex: 1;
  3109. flex: 1 0 auto;
  3110. overflow: auto;
  3111. margin: 0; }
  3112. .tree-nav-body .tree-nav-content {
  3113. width: 100%;
  3114. overflow: auto;
  3115. margin: 0;
  3116. padding: 2rem; }
  3117. @media screen and (max-width: 767px) {
  3118. /* Hide the menu to the side by default */
  3119. .tree-nav {
  3120. height: 100%;
  3121. left: 0;
  3122. overflow-y: auto;
  3123. padding: 3rem 1.5rem;
  3124. position: fixed;
  3125. top: 0;
  3126. -webkit-transform: translateX(-100%);
  3127. transform: translateX(-100%);
  3128. transition: transform var(--animation-duration) ease, -webkit-transform var(--animation-duration) ease;
  3129. z-index: 400;
  3130. /* Open the menu from the side */
  3131. /* Use a link and add the id of this element as the url */
  3132. /* Create the area to click to close the menu */
  3133. /* Reset max-width in mobile */ }
  3134. .tree-nav:target {
  3135. -webkit-transform: translateX(0);
  3136. transform: translateX(0);
  3137. transition: transform var(--animation-duration) ease, -webkit-transform var(--animation-duration) ease;
  3138. transition: -webkit-transform var(--animation-duration) ease;
  3139. transition: transform var(--animation-duration) ease;
  3140. /* Show the darkened area when the tree nav menu is clicked */ }
  3141. .tree-nav:target + .tree-nav-close {
  3142. display: block;
  3143. background-color: rgba(0, 0, 0, 0.15);
  3144. height: 100%;
  3145. left: 0;
  3146. position: fixed;
  3147. right: 0;
  3148. top: 0;
  3149. width: 100%;
  3150. z-index: 300; }
  3151. .tree-nav .tree-nav-close {
  3152. background-color: rgba(0, 0, 0, 0.15);
  3153. display: none;
  3154. height: 100%;
  3155. left: 0;
  3156. position: fixed;
  3157. right: 0;
  3158. top: 0;
  3159. width: 100%;
  3160. z-index: 300; }
  3161. .tree-nav + .tree-nav-body {
  3162. max-width: inherit; }
  3163. /* Header bar for mobile websites with the tree-nav */
  3164. .tree-nav-header {
  3165. position: fixed;
  3166. top: 0;
  3167. left: 0;
  3168. right: 0;
  3169. background-color: rgba(248, 249, 250, 0.8);
  3170. height: 3.5rem;
  3171. padding: 0.75rem 0.5rem;
  3172. text-align: center;
  3173. z-index: 300; }
  3174. /* For dropdown menu used in header (different from header dropdown) */
  3175. .nav-item.has-sub .list-dropdown {
  3176. width: 100%; }
  3177. .nav-item.has-sub .list-dropdown .btn-group {
  3178. width: 100%; }
  3179. .nav-item.has-sub .list-dropdown .btn-group .btn-dropdown {
  3180. flex-grow: 0; }
  3181. /* Show the dropdown menu in mobile hamburger menu relative with the header menu */
  3182. .list-dropdown .btn-dropdown:focus + .menu {
  3183. position: relative;
  3184. width: 100%; } }
  3185. /* MEDIA CSS */
  3186. /* Handles images, videos, figures, etc */
  3187. video.video-fullscreen {
  3188. position: absolute;
  3189. height: 100vh;
  3190. object-fit: cover;
  3191. width: 100%;
  3192. z-index: -1; }
  3193. /* Add to parent container to make media child fill container */
  3194. .media-stretch {
  3195. display: block;
  3196. padding: 0;
  3197. overflow: hidden;
  3198. width: 100%;
  3199. position: relative;
  3200. /* Add pseudoclass to allow media to have height (default height is 0) */
  3201. /* Force media embed to fill parent container */
  3202. /* Alternate media ratios */
  3203. /* For HTML5 video objects */ }
  3204. .media-stretch::before {
  3205. content: "";
  3206. display: block;
  3207. padding-bottom: 56.25%;
  3208. /* 9 / 16 for 16:9 ratio */ }
  3209. .media-stretch iframe,
  3210. .media-stretch embed,
  3211. .media-stretch object {
  3212. position: absolute;
  3213. top: 0;
  3214. right: 0;
  3215. bottom: 0;
  3216. left: 0;
  3217. width: 100%;
  3218. /* Make sure media does exceed or go under boundary limit */
  3219. height: 100%; }
  3220. .media-stretch.rat-4-3::before {
  3221. padding-bottom: 75%; }
  3222. .media-stretch.rat-1-1::before {
  3223. padding-bottom: 100%; }
  3224. .media-stretch video {
  3225. height: auto;
  3226. max-width: 100%;
  3227. width: 100%; }
  3228. /* FIGURES */
  3229. /* For flexible media display */
  3230. .fig {
  3231. margin: 0 0 0.5rem 0;
  3232. /* Small margin at the bottom */ }
  3233. .fig .fig-caption {
  3234. margin-top: 1rem; }
  3235. /* IMAGES */
  3236. .img-stretch {
  3237. max-width: 100%;
  3238. height: auto;
  3239. display: block; }
  3240. .img-cover {
  3241. object-fit: cover; }
  3242. .img-contain {
  3243. object-fit: contain; }
  3244. /* Spacing */
  3245. /* Fonts */
  3246. /* Grid Count */
  3247. /* Grid Percents */
  3248. /* Tab Sizes */
  3249. /* Media Queries */
  3250. /* Smaller than the defined pixels are the dimensions for that range */
  3251. /* Margin */
  3252. .m-0 {
  3253. margin: calc(var(--space-size) * 0) !important; }
  3254. .mt-0, .my-0 {
  3255. margin-top: calc(var(--space-size) * 0) !important; }
  3256. .mb-0, .my-0 {
  3257. margin-bottom: calc(var(--space-size) * 0) !important; }
  3258. .ml-0, .mx-0 {
  3259. margin-left: calc(var(--space-size) * 0) !important; }
  3260. .mr-0, .mx-0 {
  3261. margin-right: calc(var(--space-size) * 0) !important; }
  3262. /* Spacing */
  3263. .p-0 {
  3264. padding: calc(var(--space-size) * 0) !important; }
  3265. .pt-0, .py-0 {
  3266. padding-top: calc(var(--space-size) * 0) !important; }
  3267. .pb-0, .py-0 {
  3268. padding-bottom: calc(var(--space-size) * 0) !important; }
  3269. .pl-0, .px-0 {
  3270. padding-left: calc(var(--space-size) * 0) !important; }
  3271. .pr-0, .px-0 {
  3272. padding-right: calc(var(--space-size) * 0) !important; }
  3273. /* Margin */
  3274. .m-1 {
  3275. margin: calc(var(--space-size) * 1) !important; }
  3276. .mt-1, .my-1 {
  3277. margin-top: calc(var(--space-size) * 1) !important; }
  3278. .mb-1, .my-1 {
  3279. margin-bottom: calc(var(--space-size) * 1) !important; }
  3280. .ml-1, .mx-1 {
  3281. margin-left: calc(var(--space-size) * 1) !important; }
  3282. .mr-1, .mx-1 {
  3283. margin-right: calc(var(--space-size) * 1) !important; }
  3284. /* Spacing */
  3285. .p-1 {
  3286. padding: calc(var(--space-size) * 1) !important; }
  3287. .pt-1, .py-1 {
  3288. padding-top: calc(var(--space-size) * 1) !important; }
  3289. .pb-1, .py-1 {
  3290. padding-bottom: calc(var(--space-size) * 1) !important; }
  3291. .pl-1, .px-1 {
  3292. padding-left: calc(var(--space-size) * 1) !important; }
  3293. .pr-1, .px-1 {
  3294. padding-right: calc(var(--space-size) * 1) !important; }
  3295. /* Margin */
  3296. .m-2 {
  3297. margin: calc(var(--space-size) * 2) !important; }
  3298. .mt-2, .my-2 {
  3299. margin-top: calc(var(--space-size) * 2) !important; }
  3300. .mb-2, .my-2 {
  3301. margin-bottom: calc(var(--space-size) * 2) !important; }
  3302. .ml-2, .mx-2 {
  3303. margin-left: calc(var(--space-size) * 2) !important; }
  3304. .mr-2, .mx-2 {
  3305. margin-right: calc(var(--space-size) * 2) !important; }
  3306. /* Spacing */
  3307. .p-2 {
  3308. padding: calc(var(--space-size) * 2) !important; }
  3309. .pt-2, .py-2 {
  3310. padding-top: calc(var(--space-size) * 2) !important; }
  3311. .pb-2, .py-2 {
  3312. padding-bottom: calc(var(--space-size) * 2) !important; }
  3313. .pl-2, .px-2 {
  3314. padding-left: calc(var(--space-size) * 2) !important; }
  3315. .pr-2, .px-2 {
  3316. padding-right: calc(var(--space-size) * 2) !important; }
  3317. /* Margin */
  3318. .m-3 {
  3319. margin: calc(var(--space-size) * 3) !important; }
  3320. .mt-3, .my-3 {
  3321. margin-top: calc(var(--space-size) * 3) !important; }
  3322. .mb-3, .my-3 {
  3323. margin-bottom: calc(var(--space-size) * 3) !important; }
  3324. .ml-3, .mx-3 {
  3325. margin-left: calc(var(--space-size) * 3) !important; }
  3326. .mr-3, .mx-3 {
  3327. margin-right: calc(var(--space-size) * 3) !important; }
  3328. /* Spacing */
  3329. .p-3 {
  3330. padding: calc(var(--space-size) * 3) !important; }
  3331. .pt-3, .py-3 {
  3332. padding-top: calc(var(--space-size) * 3) !important; }
  3333. .pb-3, .py-3 {
  3334. padding-bottom: calc(var(--space-size) * 3) !important; }
  3335. .pl-3, .px-3 {
  3336. padding-left: calc(var(--space-size) * 3) !important; }
  3337. .pr-3, .px-3 {
  3338. padding-right: calc(var(--space-size) * 3) !important; }
  3339. /* Margin */
  3340. .m-4 {
  3341. margin: calc(var(--space-size) * 4) !important; }
  3342. .mt-4, .my-4 {
  3343. margin-top: calc(var(--space-size) * 4) !important; }
  3344. .mb-4, .my-4 {
  3345. margin-bottom: calc(var(--space-size) * 4) !important; }
  3346. .ml-4, .mx-4 {
  3347. margin-left: calc(var(--space-size) * 4) !important; }
  3348. .mr-4, .mx-4 {
  3349. margin-right: calc(var(--space-size) * 4) !important; }
  3350. /* Spacing */
  3351. .p-4 {
  3352. padding: calc(var(--space-size) * 4) !important; }
  3353. .pt-4, .py-4 {
  3354. padding-top: calc(var(--space-size) * 4) !important; }
  3355. .pb-4, .py-4 {
  3356. padding-bottom: calc(var(--space-size) * 4) !important; }
  3357. .pl-4, .px-4 {
  3358. padding-left: calc(var(--space-size) * 4) !important; }
  3359. .pr-4, .px-4 {
  3360. padding-right: calc(var(--space-size) * 4) !important; }
  3361. /* Margin */
  3362. .m-5 {
  3363. margin: calc(var(--space-size) * 5) !important; }
  3364. .mt-5, .my-5 {
  3365. margin-top: calc(var(--space-size) * 5) !important; }
  3366. .mb-5, .my-5 {
  3367. margin-bottom: calc(var(--space-size) * 5) !important; }
  3368. .ml-5, .mx-5 {
  3369. margin-left: calc(var(--space-size) * 5) !important; }
  3370. .mr-5, .mx-5 {
  3371. margin-right: calc(var(--space-size) * 5) !important; }
  3372. /* Spacing */
  3373. .p-5 {
  3374. padding: calc(var(--space-size) * 5) !important; }
  3375. .pt-5, .py-5 {
  3376. padding-top: calc(var(--space-size) * 5) !important; }
  3377. .pb-5, .py-5 {
  3378. padding-bottom: calc(var(--space-size) * 5) !important; }
  3379. .pl-5, .px-5 {
  3380. padding-left: calc(var(--space-size) * 5) !important; }
  3381. .pr-5, .px-5 {
  3382. padding-right: calc(var(--space-size) * 5) !important; }
  3383. /* Margin */
  3384. .m-6 {
  3385. margin: calc(var(--space-size) * 6) !important; }
  3386. .mt-6, .my-6 {
  3387. margin-top: calc(var(--space-size) * 6) !important; }
  3388. .mb-6, .my-6 {
  3389. margin-bottom: calc(var(--space-size) * 6) !important; }
  3390. .ml-6, .mx-6 {
  3391. margin-left: calc(var(--space-size) * 6) !important; }
  3392. .mr-6, .mx-6 {
  3393. margin-right: calc(var(--space-size) * 6) !important; }
  3394. /* Spacing */
  3395. .p-6 {
  3396. padding: calc(var(--space-size) * 6) !important; }
  3397. .pt-6, .py-6 {
  3398. padding-top: calc(var(--space-size) * 6) !important; }
  3399. .pb-6, .py-6 {
  3400. padding-bottom: calc(var(--space-size) * 6) !important; }
  3401. .pl-6, .px-6 {
  3402. padding-left: calc(var(--space-size) * 6) !important; }
  3403. .pr-6, .px-6 {
  3404. padding-right: calc(var(--space-size) * 6) !important; }
  3405. /* Margin */
  3406. .m-8 {
  3407. margin: calc(var(--space-size) * 8) !important; }
  3408. .mt-8, .my-8 {
  3409. margin-top: calc(var(--space-size) * 8) !important; }
  3410. .mb-8, .my-8 {
  3411. margin-bottom: calc(var(--space-size) * 8) !important; }
  3412. .ml-8, .mx-8 {
  3413. margin-left: calc(var(--space-size) * 8) !important; }
  3414. .mr-8, .mx-8 {
  3415. margin-right: calc(var(--space-size) * 8) !important; }
  3416. /* Spacing */
  3417. .p-8 {
  3418. padding: calc(var(--space-size) * 8) !important; }
  3419. .pt-8, .py-8 {
  3420. padding-top: calc(var(--space-size) * 8) !important; }
  3421. .pb-8, .py-8 {
  3422. padding-bottom: calc(var(--space-size) * 8) !important; }
  3423. .pl-8, .px-8 {
  3424. padding-left: calc(var(--space-size) * 8) !important; }
  3425. .pr-8, .px-8 {
  3426. padding-right: calc(var(--space-size) * 8) !important; }
  3427. /* Margin */
  3428. .m-10 {
  3429. margin: calc(var(--space-size) * 10) !important; }
  3430. .mt-10, .my-10 {
  3431. margin-top: calc(var(--space-size) * 10) !important; }
  3432. .mb-10, .my-10 {
  3433. margin-bottom: calc(var(--space-size) * 10) !important; }
  3434. .ml-10, .mx-10 {
  3435. margin-left: calc(var(--space-size) * 10) !important; }
  3436. .mr-10, .mx-10 {
  3437. margin-right: calc(var(--space-size) * 10) !important; }
  3438. /* Spacing */
  3439. .p-10 {
  3440. padding: calc(var(--space-size) * 10) !important; }
  3441. .pt-10, .py-10 {
  3442. padding-top: calc(var(--space-size) * 10) !important; }
  3443. .pb-10, .py-10 {
  3444. padding-bottom: calc(var(--space-size) * 10) !important; }
  3445. .pl-10, .px-10 {
  3446. padding-left: calc(var(--space-size) * 10) !important; }
  3447. .pr-10, .px-10 {
  3448. padding-right: calc(var(--space-size) * 10) !important; }
  3449. /* Margin */
  3450. .m-12 {
  3451. margin: calc(var(--space-size) * 12) !important; }
  3452. .mt-12, .my-12 {
  3453. margin-top: calc(var(--space-size) * 12) !important; }
  3454. .mb-12, .my-12 {
  3455. margin-bottom: calc(var(--space-size) * 12) !important; }
  3456. .ml-12, .mx-12 {
  3457. margin-left: calc(var(--space-size) * 12) !important; }
  3458. .mr-12, .mx-12 {
  3459. margin-right: calc(var(--space-size) * 12) !important; }
  3460. /* Spacing */
  3461. .p-12 {
  3462. padding: calc(var(--space-size) * 12) !important; }
  3463. .pt-12, .py-12 {
  3464. padding-top: calc(var(--space-size) * 12) !important; }
  3465. .pb-12, .py-12 {
  3466. padding-bottom: calc(var(--space-size) * 12) !important; }
  3467. .pl-12, .px-12 {
  3468. padding-left: calc(var(--space-size) * 12) !important; }
  3469. .pr-12, .px-12 {
  3470. padding-right: calc(var(--space-size) * 12) !important; }
  3471. /* Margin */
  3472. .m-16 {
  3473. margin: calc(var(--space-size) * 16) !important; }
  3474. .mt-16, .my-16 {
  3475. margin-top: calc(var(--space-size) * 16) !important; }
  3476. .mb-16, .my-16 {
  3477. margin-bottom: calc(var(--space-size) * 16) !important; }
  3478. .ml-16, .mx-16 {
  3479. margin-left: calc(var(--space-size) * 16) !important; }
  3480. .mr-16, .mx-16 {
  3481. margin-right: calc(var(--space-size) * 16) !important; }
  3482. /* Spacing */
  3483. .p-16 {
  3484. padding: calc(var(--space-size) * 16) !important; }
  3485. .pt-16, .py-16 {
  3486. padding-top: calc(var(--space-size) * 16) !important; }
  3487. .pb-16, .py-16 {
  3488. padding-bottom: calc(var(--space-size) * 16) !important; }
  3489. .pl-16, .px-16 {
  3490. padding-left: calc(var(--space-size) * 16) !important; }
  3491. .pr-16, .px-16 {
  3492. padding-right: calc(var(--space-size) * 16) !important; }
  3493. /* Margin */
  3494. .m-20 {
  3495. margin: calc(var(--space-size) * 20) !important; }
  3496. .mt-20, .my-20 {
  3497. margin-top: calc(var(--space-size) * 20) !important; }
  3498. .mb-20, .my-20 {
  3499. margin-bottom: calc(var(--space-size) * 20) !important; }
  3500. .ml-20, .mx-20 {
  3501. margin-left: calc(var(--space-size) * 20) !important; }
  3502. .mr-20, .mx-20 {
  3503. margin-right: calc(var(--space-size) * 20) !important; }
  3504. /* Spacing */
  3505. .p-20 {
  3506. padding: calc(var(--space-size) * 20) !important; }
  3507. .pt-20, .py-20 {
  3508. padding-top: calc(var(--space-size) * 20) !important; }
  3509. .pb-20, .py-20 {
  3510. padding-bottom: calc(var(--space-size) * 20) !important; }
  3511. .pl-20, .px-20 {
  3512. padding-left: calc(var(--space-size) * 20) !important; }
  3513. .pr-20, .px-20 {
  3514. padding-right: calc(var(--space-size) * 20) !important; }
  3515. /* Margin */
  3516. .m-24 {
  3517. margin: calc(var(--space-size) * 24) !important; }
  3518. .mt-24, .my-24 {
  3519. margin-top: calc(var(--space-size) * 24) !important; }
  3520. .mb-24, .my-24 {
  3521. margin-bottom: calc(var(--space-size) * 24) !important; }
  3522. .ml-24, .mx-24 {
  3523. margin-left: calc(var(--space-size) * 24) !important; }
  3524. .mr-24, .mx-24 {
  3525. margin-right: calc(var(--space-size) * 24) !important; }
  3526. /* Spacing */
  3527. .p-24 {
  3528. padding: calc(var(--space-size) * 24) !important; }
  3529. .pt-24, .py-24 {
  3530. padding-top: calc(var(--space-size) * 24) !important; }
  3531. .pb-24, .py-24 {
  3532. padding-bottom: calc(var(--space-size) * 24) !important; }
  3533. .pl-24, .px-24 {
  3534. padding-left: calc(var(--space-size) * 24) !important; }
  3535. .pr-24, .px-24 {
  3536. padding-right: calc(var(--space-size) * 24) !important; }
  3537. /* Margin */
  3538. .m-32 {
  3539. margin: calc(var(--space-size) * 32) !important; }
  3540. .mt-32, .my-32 {
  3541. margin-top: calc(var(--space-size) * 32) !important; }
  3542. .mb-32, .my-32 {
  3543. margin-bottom: calc(var(--space-size) * 32) !important; }
  3544. .ml-32, .mx-32 {
  3545. margin-left: calc(var(--space-size) * 32) !important; }
  3546. .mr-32, .mx-32 {
  3547. margin-right: calc(var(--space-size) * 32) !important; }
  3548. /* Spacing */
  3549. .p-32 {
  3550. padding: calc(var(--space-size) * 32) !important; }
  3551. .pt-32, .py-32 {
  3552. padding-top: calc(var(--space-size) * 32) !important; }
  3553. .pb-32, .py-32 {
  3554. padding-bottom: calc(var(--space-size) * 32) !important; }
  3555. .pl-32, .px-32 {
  3556. padding-left: calc(var(--space-size) * 32) !important; }
  3557. .pr-32, .px-32 {
  3558. padding-right: calc(var(--space-size) * 32) !important; }
  3559. .ml-auto, .mx-auto {
  3560. margin-left: auto !important; }
  3561. .mr-auto, .mx-auto {
  3562. margin-right: auto !important; }
  3563. .mt-auto, .my-auto {
  3564. margin-top: auto !important; }
  3565. .mb-auto, .my-auto {
  3566. margin-bottom: auto !important; }
  3567. /*
  3568. Functions
  3569. */
  3570. /*
  3571. Converts a given hex value to RGB.
  3572. */
  3573. /*
  3574. Generates delimited class name prefix.
  3575. */
  3576. /*
  3577. Fetch feature flag for different utility class types for generating viewport classes (e.g., u-flex-sm, u-flex-md, etc.).
  3578. */
  3579. /* Spacing */
  3580. /* Fonts */
  3581. /* Grid Count */
  3582. /* Grid Percents */
  3583. /* Tab Sizes */
  3584. /* Media Queries */
  3585. /* Smaller than the defined pixels are the dimensions for that range */
  3586. /* Color scheme for Cirrus */
  3587. /* v2 Colors */
  3588. :root {
  3589. /* v1 Colors */
  3590. --cirrus-fg: #374054;
  3591. --cirrus-bg: #fff;
  3592. --cirrus-primary: #f03d4d;
  3593. --cirrus-primary-rgb: 240, 61, 77;
  3594. --cirrus-primary-light: #ffdadd;
  3595. --cirrus-accent-hover: #d62939;
  3596. --cirrus-accent-border: #c21b2b;
  3597. --cirrus-light: #f6f9fc;
  3598. --cirrus-light-gray: #f8f9fa;
  3599. --cirrus-gray: #d5d7dc;
  3600. --cirrus-dark-gray: #909090;
  3601. --cirrus-dark: #363636;
  3602. --cirrus-link: #5e5cc7;
  3603. --cirrus-link-dark: #4643e2;
  3604. --cirrus-info: #2972fa;
  3605. --cirrus-success: #0dd157;
  3606. --cirrus-success-rgb: 13, 209, 87;
  3607. --cirrus-warning: #fab633;
  3608. --cirrus-danger: #fb4143;
  3609. --cirrus-light-hover: #d0e0ef;
  3610. --cirrus-dark-hover: #505050;
  3611. --cirrus-info-hover: #1062f9;
  3612. --cirrus-link-hover: #f8f7ff;
  3613. --cirrus-success-hover: #0cb94d;
  3614. --cirrus-warning-hover: #f9ad1a;
  3615. --cirrus-danger-hover: #eb0507;
  3616. --cirrus-select-bg: rgba(0, 161, 255, 0.2);
  3617. --cirrus-code-bg: var(--cirrus-primary-light);
  3618. --cirrus-code-fg: #dc4753;
  3619. --cirrus-form-group-bg: var(--cirrus-light-gray);
  3620. --cirrus-form-group-fg: var(--cirrus-dark-gray);
  3621. --toast-primary-bg: rgba(49, 59, 80, 0.9);
  3622. --animation-duration: 0.2s;
  3623. --focus-opacity: 0.55;
  3624. --space-size: 0.5rem;
  3625. --font-size-xs: 0.7rem;
  3626. --font-size-s: 0.85rem;
  3627. --font-size-m: 1rem;
  3628. --font-size-l: 1.35rem;
  3629. --font-size-xl: 1.75rem; }
  3630. /* TABLE */
  3631. .table {
  3632. margin-bottom: 1.5rem;
  3633. width: 100%;
  3634. border-collapse: collapse;
  3635. /* Allows us to set 0 margin in table cells */
  3636. border-spacing: 0;
  3637. text-align: center;
  3638. /* Text center by default */
  3639. /* Thicker border for table header */
  3640. /* CUSTOM STYLES */
  3641. /* All borders */
  3642. /* Striped table */
  3643. /* Decrease padding */
  3644. /* Fixed title table */
  3645. /* Borderless Table (for inner cells) */ }
  3646. .table td,
  3647. .table th {
  3648. border: 1px solid rgba(222, 226, 230, 0.5);
  3649. border-width: 0 0 1px;
  3650. padding: 0.75rem;
  3651. vertical-align: top;
  3652. text-align: inherit;
  3653. margin: 0; }
  3654. .table tr {
  3655. transition: all 0.3s; }
  3656. .table tr.selected {
  3657. /* Style a selected row */
  3658. background-color: var(--cirrus-primary);
  3659. color: #fff; }
  3660. .table .table caption {
  3661. padding-top: 0.75rem;
  3662. padding-bottom: 0.75rem;
  3663. color: #dee2e6;
  3664. text-align: left;
  3665. caption-side: bottom; }
  3666. .table tr:not(.selected):hover,
  3667. .table.striped tbody tr:not(.selected):nth-child(even):hover {
  3668. background-color: rgba(222, 226, 230, 0.15); }
  3669. .table thead th,
  3670. .table thead {
  3671. border-bottom: 2px solid rgba(222, 226, 230, 0.5); }
  3672. .table thead th,
  3673. .table tfoot th {
  3674. padding: 1rem; }
  3675. .table tfoot th {
  3676. border-top: 2px solid rgba(222, 226, 230, 0.5);
  3677. border-bottom: none; }
  3678. .table.bordered thead th,
  3679. .table.bordered thead {
  3680. border-bottom: 1px solid rgba(222, 226, 230, 0.5); }
  3681. .table.bordered td,
  3682. .table.bordered th {
  3683. border: 1px solid rgba(219, 219, 219, 0.5); }
  3684. .table.bordered thead td,
  3685. .table.bordered thead {
  3686. border-width: 1px; }
  3687. .table.striped tbody tr:nth-child(even) {
  3688. background-color: rgba(0, 0, 0, 0.05); }
  3689. .table.small td,
  3690. .table.small th {
  3691. padding: 0.25rem 0.75rem; }
  3692. .table.fixed-head thead {
  3693. position: relative;
  3694. display: block; }
  3695. .table.fixed-head tbody {
  3696. min-height: 200px;
  3697. /* Set the height you want */
  3698. display: block;
  3699. /* Needed */
  3700. overflow: auto;
  3701. /* Shows scrollbars */ }
  3702. .table.fixed-head tr {
  3703. display: table;
  3704. width: 100%;
  3705. /* Forces row to span container */ }
  3706. .table.borderless thead th,
  3707. .table.borderless th,
  3708. .table.borderless td {
  3709. border: none; }
  3710. /*
  3711. Functions
  3712. */
  3713. /*
  3714. Converts a given hex value to RGB.
  3715. */
  3716. /*
  3717. Generates delimited class name prefix.
  3718. */
  3719. /*
  3720. Fetch feature flag for different utility class types for generating viewport classes (e.g., u-flex-sm, u-flex-md, etc.).
  3721. */
  3722. /* Spacing */
  3723. /* Fonts */
  3724. /* Grid Count */
  3725. /* Grid Percents */
  3726. /* Tab Sizes */
  3727. /* Media Queries */
  3728. /* Smaller than the defined pixels are the dimensions for that range */
  3729. /* Color scheme for Cirrus */
  3730. /* v2 Colors */
  3731. :root {
  3732. /* v1 Colors */
  3733. --cirrus-fg: #374054;
  3734. --cirrus-bg: #fff;
  3735. --cirrus-primary: #f03d4d;
  3736. --cirrus-primary-rgb: 240, 61, 77;
  3737. --cirrus-primary-light: #ffdadd;
  3738. --cirrus-accent-hover: #d62939;
  3739. --cirrus-accent-border: #c21b2b;
  3740. --cirrus-light: #f6f9fc;
  3741. --cirrus-light-gray: #f8f9fa;
  3742. --cirrus-gray: #d5d7dc;
  3743. --cirrus-dark-gray: #909090;
  3744. --cirrus-dark: #363636;
  3745. --cirrus-link: #5e5cc7;
  3746. --cirrus-link-dark: #4643e2;
  3747. --cirrus-info: #2972fa;
  3748. --cirrus-success: #0dd157;
  3749. --cirrus-success-rgb: 13, 209, 87;
  3750. --cirrus-warning: #fab633;
  3751. --cirrus-danger: #fb4143;
  3752. --cirrus-light-hover: #d0e0ef;
  3753. --cirrus-dark-hover: #505050;
  3754. --cirrus-info-hover: #1062f9;
  3755. --cirrus-link-hover: #f8f7ff;
  3756. --cirrus-success-hover: #0cb94d;
  3757. --cirrus-warning-hover: #f9ad1a;
  3758. --cirrus-danger-hover: #eb0507;
  3759. --cirrus-select-bg: rgba(0, 161, 255, 0.2);
  3760. --cirrus-code-bg: var(--cirrus-primary-light);
  3761. --cirrus-code-fg: #dc4753;
  3762. --cirrus-form-group-bg: var(--cirrus-light-gray);
  3763. --cirrus-form-group-fg: var(--cirrus-dark-gray);
  3764. --toast-primary-bg: rgba(49, 59, 80, 0.9);
  3765. --animation-duration: 0.2s;
  3766. --focus-opacity: 0.55;
  3767. --space-size: 0.5rem;
  3768. --font-size-xs: 0.7rem;
  3769. --font-size-s: 0.85rem;
  3770. --font-size-m: 1rem;
  3771. --font-size-l: 1.35rem;
  3772. --font-size-xl: 1.75rem; }
  3773. /*
  3774. Functions
  3775. */
  3776. /*
  3777. Converts a given hex value to RGB.
  3778. */
  3779. /*
  3780. Generates delimited class name prefix.
  3781. */
  3782. /*
  3783. Fetch feature flag for different utility class types for generating viewport classes (e.g., u-flex-sm, u-flex-md, etc.).
  3784. */
  3785. /* Spacing */
  3786. /* Fonts */
  3787. /* Grid Count */
  3788. /* Grid Percents */
  3789. /* Tab Sizes */
  3790. /* Media Queries */
  3791. /* Smaller than the defined pixels are the dimensions for that range */
  3792. /* Color scheme for Cirrus */
  3793. /* v2 Colors */
  3794. :root {
  3795. /* v1 Colors */
  3796. --cirrus-fg: #374054;
  3797. --cirrus-bg: #fff;
  3798. --cirrus-primary: #f03d4d;
  3799. --cirrus-primary-rgb: 240, 61, 77;
  3800. --cirrus-primary-light: #ffdadd;
  3801. --cirrus-accent-hover: #d62939;
  3802. --cirrus-accent-border: #c21b2b;
  3803. --cirrus-light: #f6f9fc;
  3804. --cirrus-light-gray: #f8f9fa;
  3805. --cirrus-gray: #d5d7dc;
  3806. --cirrus-dark-gray: #909090;
  3807. --cirrus-dark: #363636;
  3808. --cirrus-link: #5e5cc7;
  3809. --cirrus-link-dark: #4643e2;
  3810. --cirrus-info: #2972fa;
  3811. --cirrus-success: #0dd157;
  3812. --cirrus-success-rgb: 13, 209, 87;
  3813. --cirrus-warning: #fab633;
  3814. --cirrus-danger: #fb4143;
  3815. --cirrus-light-hover: #d0e0ef;
  3816. --cirrus-dark-hover: #505050;
  3817. --cirrus-info-hover: #1062f9;
  3818. --cirrus-link-hover: #f8f7ff;
  3819. --cirrus-success-hover: #0cb94d;
  3820. --cirrus-warning-hover: #f9ad1a;
  3821. --cirrus-danger-hover: #eb0507;
  3822. --cirrus-select-bg: rgba(0, 161, 255, 0.2);
  3823. --cirrus-code-bg: var(--cirrus-primary-light);
  3824. --cirrus-code-fg: #dc4753;
  3825. --cirrus-form-group-bg: var(--cirrus-light-gray);
  3826. --cirrus-form-group-fg: var(--cirrus-dark-gray);
  3827. --toast-primary-bg: rgba(49, 59, 80, 0.9);
  3828. --animation-duration: 0.2s;
  3829. --focus-opacity: 0.55;
  3830. --space-size: 0.5rem;
  3831. --font-size-xs: 0.7rem;
  3832. --font-size-s: 0.85rem;
  3833. --font-size-m: 1rem;
  3834. --font-size-l: 1.35rem;
  3835. --font-size-xl: 1.75rem; }
  3836. /* ANIMATIONS */
  3837. /* Keyframes */
  3838. /* Spinning loading animation */
  3839. @-webkit-keyframes loading {
  3840. from {
  3841. transform: rotate(0deg); }
  3842. to {
  3843. transform: rotate(359deg); } }
  3844. @keyframes loading {
  3845. from {
  3846. transform: rotate(0deg); }
  3847. to {
  3848. transform: rotate(359deg); } }
  3849. /* Heart animation */
  3850. @-webkit-keyframes pound {
  3851. to {
  3852. transform: scale(1.1); } }
  3853. @keyframes pound {
  3854. to {
  3855. transform: scale(1.1); } }
  3856. /* Bounce animations */
  3857. @-webkit-keyframes bounce {
  3858. from,
  3859. 20%,
  3860. 53%,
  3861. 80%,
  3862. to {
  3863. -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  3864. /* Ease-out based on power of four */
  3865. animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  3866. -webkit-transform: translate3d(0, 0, 0);
  3867. transform: translate3d(0, 0, 0); }
  3868. 40%,
  3869. 43% {
  3870. -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  3871. animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  3872. -webkit-transform: translate3d(0, -30px, 0);
  3873. transform: translate3d(0, -30px, 0); }
  3874. 70% {
  3875. -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  3876. animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  3877. -webkit-transform: translate3d(0, -15px, 0);
  3878. transform: translate3d(0, -15px, 0); }
  3879. 90% {
  3880. -webkit-transform: translate3d(0, -4px, 0);
  3881. transform: translate3d(0, -4px, 0); } }
  3882. @keyframes bounce {
  3883. from,
  3884. 20%,
  3885. 53%,
  3886. 80%,
  3887. to {
  3888. -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  3889. /* Ease-out based on power of four */
  3890. animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  3891. -webkit-transform: translate3d(0, 0, 0);
  3892. transform: translate3d(0, 0, 0); }
  3893. 40%,
  3894. 43% {
  3895. -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  3896. animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  3897. -webkit-transform: translate3d(0, -30px, 0);
  3898. transform: translate3d(0, -30px, 0); }
  3899. 70% {
  3900. -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  3901. animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  3902. -webkit-transform: translate3d(0, -15px, 0);
  3903. transform: translate3d(0, -15px, 0); }
  3904. 90% {
  3905. -webkit-transform: translate3d(0, -4px, 0);
  3906. transform: translate3d(0, -4px, 0); } }
  3907. @keyframes bounceIn {
  3908. from,
  3909. 20%,
  3910. 40%,
  3911. 60%,
  3912. 80%,
  3913. to {
  3914. animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  3915. 0% {
  3916. opacity: 0;
  3917. transform: scale3d(0.3, 0.3, 0.3); }
  3918. 20% {
  3919. transform: scale3d(1.1, 1.1, 1.1); }
  3920. 40% {
  3921. transform: scale3d(0.9, 0.9, 0.9); }
  3922. 60% {
  3923. opacity: 1;
  3924. transform: scale3d(1.03, 1.03, 1.03); }
  3925. 80% {
  3926. transform: scale3d(0.97, 0.97, 0.97); }
  3927. to {
  3928. opacity: 1;
  3929. transform: scale3d(1, 1, 1); } }
  3930. @-webkit-keyframes fadeIn {
  3931. from {
  3932. opacity: 0; }
  3933. to {
  3934. opacity: 1; } }
  3935. @keyframes fadeIn {
  3936. from {
  3937. opacity: 0; }
  3938. to {
  3939. opacity: 1; } }
  3940. /* Hover animation */
  3941. .hover-grow {
  3942. /* Mouse leave */
  3943. transition-duration: 0.32s; }
  3944. .hover-grow:hover {
  3945. /* Mouse enter */
  3946. transform: scale(1.1);
  3947. transition-duration: 0.08s; }
  3948. .animated {
  3949. -webkit-animation-duration: 1s;
  3950. animation-duration: 1s;
  3951. -webkit-animation-fill-mode: both;
  3952. animation-fill-mode: both;
  3953. /* Loading button position relatively for loading spinner location */ }
  3954. .animated.loading {
  3955. display: block;
  3956. position: relative;
  3957. /* Loading Spinner, align center by default */
  3958. /* Hide text in loading button */ }
  3959. .animated.loading::after {
  3960. border: 2px solid #ced4da;
  3961. border-radius: 50%;
  3962. border-right-color: transparent;
  3963. border-top-color: transparent;
  3964. content: '';
  3965. display: block;
  3966. height: 1rem;
  3967. width: 1rem;
  3968. left: calc(50% - (1em / 1.25));
  3969. top: calc(50% - (1em / 1.35));
  3970. position: absolute;
  3971. -webkit-animation: loading 500ms infinite linear;
  3972. animation: loading 500ms infinite linear; }
  3973. .animated.loading.loading-white::after {
  3974. border-left-color: #fff;
  3975. border-bottom-color: #fff; }
  3976. .animated.loading.loading-left {
  3977. padding-left: 3rem;
  3978. /* Align spinner left */ }
  3979. .animated.loading.loading-left::after {
  3980. left: 1rem;
  3981. right: auto; }
  3982. .animated.loading.loading-right {
  3983. padding-right: 3rem;
  3984. /* Align spinner right */ }
  3985. .animated.loading.loading-right::after {
  3986. left: auto;
  3987. right: 1rem; }
  3988. .animated.loading.hide-text {
  3989. color: transparent !important; }
  3990. .animated.pulse {
  3991. animation: pound 0.35s infinite alternate;
  3992. -webkit-animation: pound 0.35s infinite alternate;
  3993. vertical-align: baseline; }
  3994. .animated.bounce {
  3995. animation-name: bounce;
  3996. -webkit-animation-name: bounce;
  3997. transform-origin: center bottom;
  3998. -webkit-transform-origin: center bottom; }
  3999. .animated.bounceIn {
  4000. animation-name: bounceIn; }
  4001. .animated.fadeIn {
  4002. -webkit-animation-name: fadeIn;
  4003. animation-name: fadeIn; }
  4004. .animated.infinite {
  4005. -webkit-animation-iteration-count: infinite;
  4006. animation-iteration-count: infinite; }
  4007. .animated.infinite.alternate {
  4008. animation-direction: alternate; }
  4009. .animated.paused {
  4010. -webkit-animation-play-state: paused !important;
  4011. /* Safari 4.0 - 8.0 */
  4012. animation-play-state: paused !important; }
  4013. /* Avatar */
  4014. .avatar {
  4015. border-radius: 50%;
  4016. position: relative;
  4017. display: block;
  4018. margin: auto;
  4019. font-size: 1.5rem;
  4020. font-weight: lighter;
  4021. width: 3.2rem;
  4022. height: 3.2rem;
  4023. background-color: var(--cirrus-primary);
  4024. overflow: hidden;
  4025. /* Draw text on image just like in Gmail */ }
  4026. .avatar::before {
  4027. content: attr(data-text);
  4028. color: #fff;
  4029. left: 50%;
  4030. top: 50%;
  4031. position: absolute;
  4032. transform: translate(-50%, -50%);
  4033. -webkit-transform: translate(-50%, -50%);
  4034. -moz-transform: translate(-50%, -50%);
  4035. -ms-transform: translate(-50%, -50%); }
  4036. .avatar.avatar--xsmall {
  4037. font-size: 0.8rem;
  4038. width: 1.6rem;
  4039. height: 1.6rem; }
  4040. .avatar.avatar--small {
  4041. font-size: 1rem;
  4042. width: 2.4rem;
  4043. height: 2.4rem; }
  4044. .avatar.avatar--large {
  4045. font-size: 2rem;
  4046. width: 4.8rem;
  4047. height: 4.8rem; }
  4048. .avatar.avatar--xlarge {
  4049. font-size: 3rem;
  4050. width: 6.4rem;
  4051. height: 6.4rem; }
  4052. .avatar img.padded {
  4053. padding: 0.5rem;
  4054. width: 100%; }
  4055. /*
  4056. Functions
  4057. */
  4058. /*
  4059. Converts a given hex value to RGB.
  4060. */
  4061. /*
  4062. Generates delimited class name prefix.
  4063. */
  4064. /*
  4065. Fetch feature flag for different utility class types for generating viewport classes (e.g., u-flex-sm, u-flex-md, etc.).
  4066. */
  4067. /* Spacing */
  4068. /* Fonts */
  4069. /* Grid Count */
  4070. /* Grid Percents */
  4071. /* Tab Sizes */
  4072. /* Media Queries */
  4073. /* Smaller than the defined pixels are the dimensions for that range */
  4074. /* Color scheme for Cirrus */
  4075. /* v2 Colors */
  4076. :root {
  4077. /* v1 Colors */
  4078. --cirrus-fg: #374054;
  4079. --cirrus-bg: #fff;
  4080. --cirrus-primary: #f03d4d;
  4081. --cirrus-primary-rgb: 240, 61, 77;
  4082. --cirrus-primary-light: #ffdadd;
  4083. --cirrus-accent-hover: #d62939;
  4084. --cirrus-accent-border: #c21b2b;
  4085. --cirrus-light: #f6f9fc;
  4086. --cirrus-light-gray: #f8f9fa;
  4087. --cirrus-gray: #d5d7dc;
  4088. --cirrus-dark-gray: #909090;
  4089. --cirrus-dark: #363636;
  4090. --cirrus-link: #5e5cc7;
  4091. --cirrus-link-dark: #4643e2;
  4092. --cirrus-info: #2972fa;
  4093. --cirrus-success: #0dd157;
  4094. --cirrus-success-rgb: 13, 209, 87;
  4095. --cirrus-warning: #fab633;
  4096. --cirrus-danger: #fb4143;
  4097. --cirrus-light-hover: #d0e0ef;
  4098. --cirrus-dark-hover: #505050;
  4099. --cirrus-info-hover: #1062f9;
  4100. --cirrus-link-hover: #f8f7ff;
  4101. --cirrus-success-hover: #0cb94d;
  4102. --cirrus-warning-hover: #f9ad1a;
  4103. --cirrus-danger-hover: #eb0507;
  4104. --cirrus-select-bg: rgba(0, 161, 255, 0.2);
  4105. --cirrus-code-bg: var(--cirrus-primary-light);
  4106. --cirrus-code-fg: #dc4753;
  4107. --cirrus-form-group-bg: var(--cirrus-light-gray);
  4108. --cirrus-form-group-fg: var(--cirrus-dark-gray);
  4109. --toast-primary-bg: rgba(49, 59, 80, 0.9);
  4110. --animation-duration: 0.2s;
  4111. --focus-opacity: 0.55;
  4112. --space-size: 0.5rem;
  4113. --font-size-xs: 0.7rem;
  4114. --font-size-s: 0.85rem;
  4115. --font-size-m: 1rem;
  4116. --font-size-l: 1.35rem;
  4117. --font-size-xl: 1.75rem; }
  4118. /*
  4119. Group selectors that share common styling.
  4120. */
  4121. /* CARDS */
  4122. .card {
  4123. background-color: #fff;
  4124. backface-visibility: hidden;
  4125. border-radius: 5px;
  4126. box-shadow: 0px 5px 12px 0 rgba(42, 51, 83, 0.12), 0px 0px 5px rgba(0, 0, 0, 0.06);
  4127. margin-bottom: 1rem;
  4128. overflow: hidden;
  4129. position: relative;
  4130. transition: all 0.3s;
  4131. /* Allow for the cards to have the same height when u-flex is used on the card */
  4132. /*
  4133. NOTE: To have cards with the same height, place the card class with col-x classes and have the parent have fluid-container.
  4134. */
  4135. /* Card Title Bar */ }
  4136. .card:hover {
  4137. transition: all 0.3s;
  4138. box-shadow: 0px 8px 20px 0 rgba(42, 51, 83, 0.12), 0 5px 5px rgba(0, 0, 0, 0.06); }
  4139. .card:hover .card-image::after {
  4140. opacity: 0; }
  4141. .card.slide-up, .card.card--slide-up {
  4142. display: flex;
  4143. flex-direction: column;
  4144. max-height: 550px;
  4145. /* More card components in second example */ }
  4146. .card.slide-up:hover .card-body, .card.slide-up:hover .card__body, .card.card--slide-up:hover .card-body, .card.card--slide-up:hover .card__body {
  4147. opacity: 1; }
  4148. .card.slide-up:hover .card-image, .card.slide-up:hover .card__image, .card.card--slide-up:hover .card-image, .card.card--slide-up:hover .card__image {
  4149. transform: translateY(-40px); }
  4150. .card.slide-up:hover .mobile-title, .card.slide-up:hover .card__mobile-title, .card.card--slide-up:hover .mobile-title, .card.card--slide-up:hover .card__mobile-title {
  4151. bottom: 35%;
  4152. transition: all 0.3s ease-in-out; }
  4153. .card.slide-up .mobile-title, .card.slide-up .card__mobile-title, .card.card--slide-up .mobile-title, .card.card--slide-up .card__mobile-title {
  4154. position: absolute;
  4155. left: 0;
  4156. bottom: 5rem;
  4157. background-color: var(--cirrus-bg);
  4158. -moz-transition: 0.3s ease-in-out;
  4159. -ms-transition: all 0.3s ease-in-out;
  4160. transition: 0.3s ease-in-out;
  4161. width: 100%;
  4162. padding: 1.5rem 0 0 0;
  4163. backface-visibility: hidden; }
  4164. .card.slide-up .card-body, .card.slide-up .card__body, .card.card--slide-up .card-body, .card.card--slide-up .card__body {
  4165. opacity: 0;
  4166. overflow: auto;
  4167. transition: all var(--animation-duration) ease-in-out; }
  4168. .card.u-flex .content {
  4169. flex-grow: 1; }
  4170. .card p {
  4171. margin: 1rem 0; }
  4172. .card .card-image, .card .card__image {
  4173. bottom: 0;
  4174. left: 0;
  4175. position: absolute;
  4176. right: 0;
  4177. top: 0;
  4178. border-radius: 5px 5px 0 0;
  4179. background-size: cover;
  4180. background-repeat: no-repeat;
  4181. transition: all 0.3s ease-in-out; }
  4182. .card .card-image::after, .card .card__image::after {
  4183. content: '';
  4184. display: block;
  4185. position: absolute;
  4186. background-color: rgba(0, 0, 0, 0.1);
  4187. top: 0;
  4188. left: 0;
  4189. right: 0;
  4190. transition: all 500ms;
  4191. bottom: 0; }
  4192. .card .card-container, .card .card__container {
  4193. display: block;
  4194. position: relative;
  4195. height: 40%;
  4196. min-height: 21rem;
  4197. /* So it appears in html5 standards mode */ }
  4198. .card .title-container, .card .card__title-container {
  4199. position: absolute;
  4200. bottom: 1rem;
  4201. width: 100%;
  4202. padding: 0 1rem; }
  4203. .card .title-container .title,
  4204. .card .title-container .subtitle, .card .card__title-container .title,
  4205. .card .card__title-container .subtitle {
  4206. color: #fff;
  4207. margin: 1rem auto; }
  4208. .card .title-container .title, .card .card__title-container .title {
  4209. font-weight: 300;
  4210. font-size: 1.5rem;
  4211. margin-bottom: 0;
  4212. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25); }
  4213. .card .action-bar, .card .card__action-bar {
  4214. -webkit-user-select: none;
  4215. -moz-user-select: none;
  4216. -ms-user-select: none;
  4217. user-select: none;
  4218. padding: 0.5rem;
  4219. margin: 0;
  4220. border-top: 1px solid #e9ecef;
  4221. box-sizing: border-box;
  4222. transition: left 200ms cubic-bezier(0.075, 0.82, 0.165, 1);
  4223. /* Add some padding to the buttons */ }
  4224. .card .action-bar .btn, .card .action-bar button, .card .action-bar [type="submit"], .card .action-bar [type="reset"], .card .action-bar [type="button"], .card .card__action-bar .btn, .card .card__action-bar button, .card .card__action-bar [type="submit"], .card .card__action-bar [type="reset"], .card .card__action-bar [type="button"] {
  4225. margin: 0 0.5rem; }
  4226. .card .action-bar + .card-footer, .card .action-bar + .card__footer, .card .card__action-bar + .card-footer, .card .card__action-bar + .card__footer {
  4227. padding: 1rem 0;
  4228. border-top: 1px solid #e9ecef; }
  4229. .card .card-footer, .card .card__footer {
  4230. position: relative;
  4231. font-size: 0.75rem;
  4232. color: #868e96; }
  4233. .card .card-head, .card .card__header {
  4234. align-items: stretch;
  4235. -webkit-box-align: stretch;
  4236. -ms-flex-align: stretch;
  4237. display: flex;
  4238. display: -webkit-box;
  4239. display: -ms-flexbox;
  4240. border-bottom: 1px solid #e9ecef; }
  4241. /*
  4242. Functions
  4243. */
  4244. /*
  4245. Converts a given hex value to RGB.
  4246. */
  4247. /*
  4248. Generates delimited class name prefix.
  4249. */
  4250. /*
  4251. Fetch feature flag for different utility class types for generating viewport classes (e.g., u-flex-sm, u-flex-md, etc.).
  4252. */
  4253. /* Spacing */
  4254. /* Fonts */
  4255. /* Grid Count */
  4256. /* Grid Percents */
  4257. /* Tab Sizes */
  4258. /* Media Queries */
  4259. /* Smaller than the defined pixels are the dimensions for that range */
  4260. /* Color scheme for Cirrus */
  4261. /* v2 Colors */
  4262. :root {
  4263. /* v1 Colors */
  4264. --cirrus-fg: #374054;
  4265. --cirrus-bg: #fff;
  4266. --cirrus-primary: #f03d4d;
  4267. --cirrus-primary-rgb: 240, 61, 77;
  4268. --cirrus-primary-light: #ffdadd;
  4269. --cirrus-accent-hover: #d62939;
  4270. --cirrus-accent-border: #c21b2b;
  4271. --cirrus-light: #f6f9fc;
  4272. --cirrus-light-gray: #f8f9fa;
  4273. --cirrus-gray: #d5d7dc;
  4274. --cirrus-dark-gray: #909090;
  4275. --cirrus-dark: #363636;
  4276. --cirrus-link: #5e5cc7;
  4277. --cirrus-link-dark: #4643e2;
  4278. --cirrus-info: #2972fa;
  4279. --cirrus-success: #0dd157;
  4280. --cirrus-success-rgb: 13, 209, 87;
  4281. --cirrus-warning: #fab633;
  4282. --cirrus-danger: #fb4143;
  4283. --cirrus-light-hover: #d0e0ef;
  4284. --cirrus-dark-hover: #505050;
  4285. --cirrus-info-hover: #1062f9;
  4286. --cirrus-link-hover: #f8f7ff;
  4287. --cirrus-success-hover: #0cb94d;
  4288. --cirrus-warning-hover: #f9ad1a;
  4289. --cirrus-danger-hover: #eb0507;
  4290. --cirrus-select-bg: rgba(0, 161, 255, 0.2);
  4291. --cirrus-code-bg: var(--cirrus-primary-light);
  4292. --cirrus-code-fg: #dc4753;
  4293. --cirrus-form-group-bg: var(--cirrus-light-gray);
  4294. --cirrus-form-group-fg: var(--cirrus-dark-gray);
  4295. --toast-primary-bg: rgba(49, 59, 80, 0.9);
  4296. --animation-duration: 0.2s;
  4297. --focus-opacity: 0.55;
  4298. --space-size: 0.5rem;
  4299. --font-size-xs: 0.7rem;
  4300. --font-size-s: 0.85rem;
  4301. --font-size-m: 1rem;
  4302. --font-size-l: 1.35rem;
  4303. --font-size-xl: 1.75rem; }
  4304. /*
  4305. Functions
  4306. */
  4307. /*
  4308. Converts a given hex value to RGB.
  4309. */
  4310. /*
  4311. Generates delimited class name prefix.
  4312. */
  4313. /*
  4314. Fetch feature flag for different utility class types for generating viewport classes (e.g., u-flex-sm, u-flex-md, etc.).
  4315. */
  4316. /* EXTENDED FORM */
  4317. /* Mixins */
  4318. /* Base class layout for extended form */
  4319. .form-ext-control {
  4320. padding-left: 1.5rem;
  4321. position: relative;
  4322. /* Checkbox */
  4323. /* Radio Button */
  4324. /* Hides the original input */
  4325. /* Toggle Switches */ }
  4326. .form-ext-control.form-ext-checkbox .form-ext-input:checked ~ .form-ext-label:after {
  4327. background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E"); }
  4328. .form-ext-control.form-ext-checkbox .form-ext-label:before {
  4329. border-radius: 0.25rem; }
  4330. .form-ext-control.form-ext-radio .form-ext-input:checked ~ .form-ext-label:after {
  4331. background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E"); }
  4332. .form-ext-control.form-ext-radio .form-ext-label:before {
  4333. border-radius: 50%; }
  4334. .form-ext-control .form-ext-input {
  4335. opacity: 0;
  4336. position: absolute;
  4337. z-index: -1;
  4338. /* Checked state */ }
  4339. .form-ext-control .form-ext-input:disabled ~ .form-ext-label {
  4340. opacity: 0.4; }
  4341. .form-ext-control .form-ext-input:checked ~ .form-ext-label:before {
  4342. background-color: var(--cirrus-primary); }
  4343. .form-ext-control .form-ext-input.form-ext-input--primary:checked ~ .form-ext-label {
  4344. color: var(--cirrus-primary); }
  4345. .form-ext-control .form-ext-input.form-ext-input--primary:checked ~ .form-ext-label:before {
  4346. background-color: var(--cirrus-primary); }
  4347. .form-ext-control .form-ext-input.form-ext-input--primary:focus ~ .form-ext-label:before {
  4348. border-color: inherit;
  4349. box-shadow: 0 0 0 0.2rem rgba(240, 61, 77, 0.55), inset 0 1px 8px rgba(0, 0, 0, 0.07); }
  4350. .form-ext-control .form-ext-input.form-ext-input--gray:checked ~ .form-ext-label {
  4351. color: var(--cirrus-gray); }
  4352. .form-ext-control .form-ext-input.form-ext-input--gray:checked ~ .form-ext-label:before {
  4353. background-color: var(--cirrus-gray); }
  4354. .form-ext-control .form-ext-input.form-ext-input--gray:focus ~ .form-ext-label:before {
  4355. border-color: inherit;
  4356. box-shadow: 0 0 0 0.2rem rgba(213, 215, 220, 0.55), inset 0 1px 8px rgba(0, 0, 0, 0.07); }
  4357. .form-ext-control .form-ext-input.form-ext-input--dark:checked ~ .form-ext-label {
  4358. color: var(--cirrus-dark); }
  4359. .form-ext-control .form-ext-input.form-ext-input--dark:checked ~ .form-ext-label:before {
  4360. background-color: var(--cirrus-dark); }
  4361. .form-ext-control .form-ext-input.form-ext-input--dark:focus ~ .form-ext-label:before {
  4362. border-color: inherit;
  4363. box-shadow: 0 0 0 0.2rem rgba(54, 54, 54, 0.55), inset 0 1px 8px rgba(0, 0, 0, 0.07); }
  4364. .form-ext-control .form-ext-input.form-ext-input--link:checked ~ .form-ext-label {
  4365. color: var(--cirrus-link); }
  4366. .form-ext-control .form-ext-input.form-ext-input--link:checked ~ .form-ext-label:before {
  4367. background-color: var(--cirrus-link); }
  4368. .form-ext-control .form-ext-input.form-ext-input--link:focus ~ .form-ext-label:before {
  4369. border-color: inherit;
  4370. box-shadow: 0 0 0 0.2rem rgba(94, 92, 199, 0.55), inset 0 1px 8px rgba(0, 0, 0, 0.07); }
  4371. .form-ext-control .form-ext-input.form-ext-input--info:checked ~ .form-ext-label {
  4372. color: var(--cirrus-info); }
  4373. .form-ext-control .form-ext-input.form-ext-input--info:checked ~ .form-ext-label:before {
  4374. background-color: var(--cirrus-info); }
  4375. .form-ext-control .form-ext-input.form-ext-input--info:focus ~ .form-ext-label:before {
  4376. border-color: inherit;
  4377. box-shadow: 0 0 0 0.2rem rgba(41, 114, 250, 0.55), inset 0 1px 8px rgba(0, 0, 0, 0.07); }
  4378. .form-ext-control .form-ext-input.form-ext-input--success:checked ~ .form-ext-label {
  4379. color: var(--cirrus-success); }
  4380. .form-ext-control .form-ext-input.form-ext-input--success:checked ~ .form-ext-label:before {
  4381. background-color: var(--cirrus-success); }
  4382. .form-ext-control .form-ext-input.form-ext-input--success:focus ~ .form-ext-label:before {
  4383. border-color: inherit;
  4384. box-shadow: 0 0 0 0.2rem rgba(13, 209, 87, 0.55), inset 0 1px 8px rgba(0, 0, 0, 0.07); }
  4385. .form-ext-control .form-ext-input.form-ext-input--warning:checked ~ .form-ext-label {
  4386. color: var(--cirrus-warning); }
  4387. .form-ext-control .form-ext-input.form-ext-input--warning:checked ~ .form-ext-label:before {
  4388. background-color: var(--cirrus-warning); }
  4389. .form-ext-control .form-ext-input.form-ext-input--warning:focus ~ .form-ext-label:before {
  4390. border-color: inherit;
  4391. box-shadow: 0 0 0 0.2rem rgba(250, 182, 51, 0.55), inset 0 1px 8px rgba(0, 0, 0, 0.07); }
  4392. .form-ext-control .form-ext-input.form-ext-input--danger:checked ~ .form-ext-label {
  4393. color: var(--cirrus-danger); }
  4394. .form-ext-control .form-ext-input.form-ext-input--danger:checked ~ .form-ext-label:before {
  4395. background-color: var(--cirrus-danger); }
  4396. .form-ext-control .form-ext-input.form-ext-input--danger:focus ~ .form-ext-label:before {
  4397. border-color: inherit;
  4398. box-shadow: 0 0 0 0.2rem rgba(251, 65, 67, 0.55), inset 0 1px 8px rgba(0, 0, 0, 0.07); }
  4399. .form-ext-control .form-ext-input:disabled ~ .form-ext-toggle__toggler {
  4400. opacity: 0.5; }
  4401. .form-ext-control .form-ext-toggle__label {
  4402. align-items: center;
  4403. display: flex;
  4404. justify-content: space-between; }
  4405. .form-ext-control .form-ext-toggle {
  4406. cursor: pointer;
  4407. position: relative;
  4408. /* Toggle themes */
  4409. /**
  4410. * Accessibility
  4411. */
  4412. /**
  4413. * Accessibility
  4414. */
  4415. /**
  4416. * Accessibility
  4417. */
  4418. /**
  4419. * Accessibility
  4420. */
  4421. /**
  4422. * Accessibility
  4423. */
  4424. /**
  4425. * Accessibility
  4426. */
  4427. /**
  4428. * Accessibility
  4429. */
  4430. /**
  4431. * Accessibility
  4432. */ }
  4433. .form-ext-control .form-ext-toggle input[type='checkbox'],
  4434. .form-ext-control .form-ext-toggle input[type='radio'] {
  4435. opacity: 0;
  4436. position: absolute;
  4437. z-index: -1; }
  4438. .form-ext-control .form-ext-toggle .form-ext-toggle__toggler {
  4439. border: 1px solid var(--cirrus-gray);
  4440. border-radius: 6.25rem;
  4441. color: var(--cirrus-gray);
  4442. display: block;
  4443. font-size: 9px;
  4444. height: 1.5rem;
  4445. position: relative;
  4446. width: 3rem; }
  4447. .form-ext-control .form-ext-toggle .form-ext-toggle__toggler i {
  4448. display: inline-block; }
  4449. .form-ext-control .form-ext-toggle input[type='checkbox']:checked + .form-ext-toggle__toggler,
  4450. .form-ext-control .form-ext-toggle input[type='checkbox']:checked + * .form-ext-toggle__toggler,
  4451. .form-ext-control .form-ext-toggle input[type='radio']:checked + .form-ext-toggle__toggler,
  4452. .form-ext-control .form-ext-toggle input[type='radio']:checked + * .form-ext-toggle__toggler {
  4453. background-color: var(--cirrus-primary);
  4454. border-color: var(--cirrus-primary);
  4455. color: #fff;
  4456. position: relative;
  4457. transition: all 0.4s ease; }
  4458. .form-ext-control .form-ext-toggle input[type='checkbox']:checked + .form-ext-toggle__toggler i::after,
  4459. .form-ext-control .form-ext-toggle input[type='checkbox']:checked + * .form-ext-toggle__toggler i::after,
  4460. .form-ext-control .form-ext-toggle input[type='radio']:checked + .form-ext-toggle__toggler i::after,
  4461. .form-ext-control .form-ext-toggle input[type='radio']:checked + * .form-ext-toggle__toggler i::after {
  4462. background-color: #fff;
  4463. left: calc(100% - 20px); }
  4464. .form-ext-control .form-ext-toggle input[type='checkbox']:checked + .form-ext-toggle__toggler i::before,
  4465. .form-ext-control .form-ext-toggle input[type='checkbox']:checked + * .form-ext-toggle__toggler i::before,
  4466. .form-ext-control .form-ext-toggle input[type='radio']:checked + .form-ext-toggle__toggler i::before,
  4467. .form-ext-control .form-ext-toggle input[type='radio']:checked + * .form-ext-toggle__toggler i::before {
  4468. color: #fff;
  4469. content: attr(data-check-icon);
  4470. text-align: left; }
  4471. .form-ext-control .form-ext-toggle.form-ext-toggle--primary input[type='checkbox']:checked + .form-ext-toggle__toggler,
  4472. .form-ext-control .form-ext-toggle.form-ext-toggle--primary input[type='checkbox']:checked + * .form-ext-toggle__toggler,
  4473. .form-ext-control .form-ext-toggle.form-ext-toggle--primary input[type='radio']:checked + .form-ext-toggle__toggler,
  4474. .form-ext-control .form-ext-toggle.form-ext-toggle--primary input[type='radio']:checked + * .form-ext-toggle__toggler {
  4475. background-color: var(--cirrus-primary);
  4476. border-color: var(--cirrus-primary); }
  4477. .form-ext-control .form-ext-toggle .form-ext-toggle--primary .form-ext-toggle__toggler {
  4478. border-color: var(--cirrus-primary);
  4479. color: var(--cirrus-primary); }
  4480. .form-ext-control .form-ext-toggle .form-ext-toggle--primary .form-ext-toggle__toggler i::after {
  4481. background-color: var(--cirrus-primary); }
  4482. .form-ext-control .form-ext-toggle .form-ext-input:focus + .form-ext-toggle__toggler,
  4483. .form-ext-control .form-ext-toggle .form-ext-input:focus ~ .form-ext-label:before {
  4484. box-shadow: 0 0 0 0.2rem rgba(240, 61, 77, 0.55), inset 0 1px 8px rgba(0, 0, 0, 0.07); }
  4485. .form-ext-control .form-ext-toggle.form-ext-toggle--primary .form-ext-input:focus + .form-ext-toggle__toggler {
  4486. box-shadow: 0 0 0 0.2rem rgba(240, 61, 77, 0.55), inset 0 1px 8px rgba(0, 0, 0, 0.07); }
  4487. .form-ext-control .form-ext-toggle.form-ext-toggle--gray input[type='checkbox']:checked + .form-ext-toggle__toggler,
  4488. .form-ext-control .form-ext-toggle.form-ext-toggle--gray input[type='checkbox']:checked + * .form-ext-toggle__toggler,
  4489. .form-ext-control .form-ext-toggle.form-ext-toggle--gray input[type='radio']:checked + .form-ext-toggle__toggler,
  4490. .form-ext-control .form-ext-toggle.form-ext-toggle--gray input[type='radio']:checked + * .form-ext-toggle__toggler {
  4491. background-color: var(--cirrus-gray);
  4492. border-color: var(--cirrus-gray); }
  4493. .form-ext-control .form-ext-toggle .form-ext-toggle--gray .form-ext-toggle__toggler {
  4494. border-color: var(--cirrus-gray);
  4495. color: var(--cirrus-gray); }
  4496. .form-ext-control .form-ext-toggle .form-ext-toggle--gray .form-ext-toggle__toggler i::after {
  4497. background-color: var(--cirrus-gray); }
  4498. .form-ext-control .form-ext-toggle .form-ext-input:focus + .form-ext-toggle__toggler,
  4499. .form-ext-control .form-ext-toggle .form-ext-input:focus ~ .form-ext-label:before {
  4500. box-shadow: 0 0 0 0.2rem rgba(213, 215, 220, 0.55), inset 0 1px 8px rgba(0, 0, 0, 0.07); }
  4501. .form-ext-control .form-ext-toggle.form-ext-toggle--gray .form-ext-input:focus + .form-ext-toggle__toggler {
  4502. box-shadow: 0 0 0 0.2rem rgba(213, 215, 220, 0.55), inset 0 1px 8px rgba(0, 0, 0, 0.07); }
  4503. .form-ext-control .form-ext-toggle.form-ext-toggle--dark input[type='checkbox']:checked + .form-ext-toggle__toggler,
  4504. .form-ext-control .form-ext-toggle.form-ext-toggle--dark input[type='checkbox']:checked + * .form-ext-toggle__toggler,
  4505. .form-ext-control .form-ext-toggle.form-ext-toggle--dark input[type='radio']:checked + .form-ext-toggle__toggler,
  4506. .form-ext-control .form-ext-toggle.form-ext-toggle--dark input[type='radio']:checked + * .form-ext-toggle__toggler {
  4507. background-color: var(--cirrus-dark);
  4508. border-color: var(--cirrus-dark); }
  4509. .form-ext-control .form-ext-toggle .form-ext-toggle--dark .form-ext-toggle__toggler {
  4510. border-color: var(--cirrus-dark);
  4511. color: var(--cirrus-dark); }
  4512. .form-ext-control .form-ext-toggle .form-ext-toggle--dark .form-ext-toggle__toggler i::after {
  4513. background-color: var(--cirrus-dark); }
  4514. .form-ext-control .form-ext-toggle .form-ext-input:focus + .form-ext-toggle__toggler,
  4515. .form-ext-control .form-ext-toggle .form-ext-input:focus ~ .form-ext-label:before {
  4516. box-shadow: 0 0 0 0.2rem rgba(54, 54, 54, 0.55), inset 0 1px 8px rgba(0, 0, 0, 0.07); }
  4517. .form-ext-control .form-ext-toggle.form-ext-toggle--dark .form-ext-input:focus + .form-ext-toggle__toggler {
  4518. box-shadow: 0 0 0 0.2rem rgba(54, 54, 54, 0.55), inset 0 1px 8px rgba(0, 0, 0, 0.07); }
  4519. .form-ext-control .form-ext-toggle.form-ext-toggle--link input[type='checkbox']:checked + .form-ext-toggle__toggler,
  4520. .form-ext-control .form-ext-toggle.form-ext-toggle--link input[type='checkbox']:checked + * .form-ext-toggle__toggler,
  4521. .form-ext-control .form-ext-toggle.form-ext-toggle--link input[type='radio']:checked + .form-ext-toggle__toggler,
  4522. .form-ext-control .form-ext-toggle.form-ext-toggle--link input[type='radio']:checked + * .form-ext-toggle__toggler {
  4523. background-color: var(--cirrus-link);
  4524. border-color: var(--cirrus-link); }
  4525. .form-ext-control .form-ext-toggle .form-ext-toggle--link .form-ext-toggle__toggler {
  4526. border-color: var(--cirrus-link);
  4527. color: var(--cirrus-link); }
  4528. .form-ext-control .form-ext-toggle .form-ext-toggle--link .form-ext-toggle__toggler i::after {
  4529. background-color: var(--cirrus-link); }
  4530. .form-ext-control .form-ext-toggle .form-ext-input:focus + .form-ext-toggle__toggler,
  4531. .form-ext-control .form-ext-toggle .form-ext-input:focus ~ .form-ext-label:before {
  4532. box-shadow: 0 0 0 0.2rem rgba(94, 92, 199, 0.55), inset 0 1px 8px rgba(0, 0, 0, 0.07); }
  4533. .form-ext-control .form-ext-toggle.form-ext-toggle--link .form-ext-input:focus + .form-ext-toggle__toggler {
  4534. box-shadow: 0 0 0 0.2rem rgba(94, 92, 199, 0.55), inset 0 1px 8px rgba(0, 0, 0, 0.07); }
  4535. .form-ext-control .form-ext-toggle.form-ext-toggle--info input[type='checkbox']:checked + .form-ext-toggle__toggler,
  4536. .form-ext-control .form-ext-toggle.form-ext-toggle--info input[type='checkbox']:checked + * .form-ext-toggle__toggler,
  4537. .form-ext-control .form-ext-toggle.form-ext-toggle--info input[type='radio']:checked + .form-ext-toggle__toggler,
  4538. .form-ext-control .form-ext-toggle.form-ext-toggle--info input[type='radio']:checked + * .form-ext-toggle__toggler {
  4539. background-color: var(--cirrus-info);
  4540. border-color: var(--cirrus-info); }
  4541. .form-ext-control .form-ext-toggle .form-ext-toggle--info .form-ext-toggle__toggler {
  4542. border-color: var(--cirrus-info);
  4543. color: var(--cirrus-info); }
  4544. .form-ext-control .form-ext-toggle .form-ext-toggle--info .form-ext-toggle__toggler i::after {
  4545. background-color: var(--cirrus-info); }
  4546. .form-ext-control .form-ext-toggle .form-ext-input:focus + .form-ext-toggle__toggler,
  4547. .form-ext-control .form-ext-toggle .form-ext-input:focus ~ .form-ext-label:before {
  4548. box-shadow: 0 0 0 0.2rem rgba(41, 114, 250, 0.55), inset 0 1px 8px rgba(0, 0, 0, 0.07); }
  4549. .form-ext-control .form-ext-toggle.form-ext-toggle--info .form-ext-input:focus + .form-ext-toggle__toggler {
  4550. box-shadow: 0 0 0 0.2rem rgba(41, 114, 250, 0.55), inset 0 1px 8px rgba(0, 0, 0, 0.07); }
  4551. .form-ext-control .form-ext-toggle.form-ext-toggle--success input[type='checkbox']:checked + .form-ext-toggle__toggler,
  4552. .form-ext-control .form-ext-toggle.form-ext-toggle--success input[type='checkbox']:checked + * .form-ext-toggle__toggler,
  4553. .form-ext-control .form-ext-toggle.form-ext-toggle--success input[type='radio']:checked + .form-ext-toggle__toggler,
  4554. .form-ext-control .form-ext-toggle.form-ext-toggle--success input[type='radio']:checked + * .form-ext-toggle__toggler {
  4555. background-color: var(--cirrus-success);
  4556. border-color: var(--cirrus-success); }
  4557. .form-ext-control .form-ext-toggle .form-ext-toggle--success .form-ext-toggle__toggler {
  4558. border-color: var(--cirrus-success);
  4559. color: var(--cirrus-success); }
  4560. .form-ext-control .form-ext-toggle .form-ext-toggle--success .form-ext-toggle__toggler i::after {
  4561. background-color: var(--cirrus-success); }
  4562. .form-ext-control .form-ext-toggle .form-ext-input:focus + .form-ext-toggle__toggler,
  4563. .form-ext-control .form-ext-toggle .form-ext-input:focus ~ .form-ext-label:before {
  4564. box-shadow: 0 0 0 0.2rem rgba(13, 209, 87, 0.55), inset 0 1px 8px rgba(0, 0, 0, 0.07); }
  4565. .form-ext-control .form-ext-toggle.form-ext-toggle--success .form-ext-input:focus + .form-ext-toggle__toggler {
  4566. box-shadow: 0 0 0 0.2rem rgba(13, 209, 87, 0.55), inset 0 1px 8px rgba(0, 0, 0, 0.07); }
  4567. .form-ext-control .form-ext-toggle.form-ext-toggle--warning input[type='checkbox']:checked + .form-ext-toggle__toggler,
  4568. .form-ext-control .form-ext-toggle.form-ext-toggle--warning input[type='checkbox']:checked + * .form-ext-toggle__toggler,
  4569. .form-ext-control .form-ext-toggle.form-ext-toggle--warning input[type='radio']:checked + .form-ext-toggle__toggler,
  4570. .form-ext-control .form-ext-toggle.form-ext-toggle--warning input[type='radio']:checked + * .form-ext-toggle__toggler {
  4571. background-color: var(--cirrus-warning);
  4572. border-color: var(--cirrus-warning); }
  4573. .form-ext-control .form-ext-toggle .form-ext-toggle--warning .form-ext-toggle__toggler {
  4574. border-color: var(--cirrus-warning);
  4575. color: var(--cirrus-warning); }
  4576. .form-ext-control .form-ext-toggle .form-ext-toggle--warning .form-ext-toggle__toggler i::after {
  4577. background-color: var(--cirrus-warning); }
  4578. .form-ext-control .form-ext-toggle .form-ext-input:focus + .form-ext-toggle__toggler,
  4579. .form-ext-control .form-ext-toggle .form-ext-input:focus ~ .form-ext-label:before {
  4580. box-shadow: 0 0 0 0.2rem rgba(250, 182, 51, 0.55), inset 0 1px 8px rgba(0, 0, 0, 0.07); }
  4581. .form-ext-control .form-ext-toggle.form-ext-toggle--warning .form-ext-input:focus + .form-ext-toggle__toggler {
  4582. box-shadow: 0 0 0 0.2rem rgba(250, 182, 51, 0.55), inset 0 1px 8px rgba(0, 0, 0, 0.07); }
  4583. .form-ext-control .form-ext-toggle.form-ext-toggle--danger input[type='checkbox']:checked + .form-ext-toggle__toggler,
  4584. .form-ext-control .form-ext-toggle.form-ext-toggle--danger input[type='checkbox']:checked + * .form-ext-toggle__toggler,
  4585. .form-ext-control .form-ext-toggle.form-ext-toggle--danger input[type='radio']:checked + .form-ext-toggle__toggler,
  4586. .form-ext-control .form-ext-toggle.form-ext-toggle--danger input[type='radio']:checked + * .form-ext-toggle__toggler {
  4587. background-color: var(--cirrus-danger);
  4588. border-color: var(--cirrus-danger); }
  4589. .form-ext-control .form-ext-toggle .form-ext-toggle--danger .form-ext-toggle__toggler {
  4590. border-color: var(--cirrus-danger);
  4591. color: var(--cirrus-danger); }
  4592. .form-ext-control .form-ext-toggle .form-ext-toggle--danger .form-ext-toggle__toggler i::after {
  4593. background-color: var(--cirrus-danger); }
  4594. .form-ext-control .form-ext-toggle .form-ext-input:focus + .form-ext-toggle__toggler,
  4595. .form-ext-control .form-ext-toggle .form-ext-input:focus ~ .form-ext-label:before {
  4596. box-shadow: 0 0 0 0.2rem rgba(251, 65, 67, 0.55), inset 0 1px 8px rgba(0, 0, 0, 0.07); }
  4597. .form-ext-control .form-ext-toggle.form-ext-toggle--danger .form-ext-input:focus + .form-ext-toggle__toggler {
  4598. box-shadow: 0 0 0 0.2rem rgba(251, 65, 67, 0.55), inset 0 1px 8px rgba(0, 0, 0, 0.07); }
  4599. .form-ext-control .form-ext-toggle .form-ext-toggle__toggler i::before,
  4600. .form-ext-control .form-ext-toggle .form-ext-toggle__toggler i::after {
  4601. content: '';
  4602. display: block;
  4603. position: absolute; }
  4604. .form-ext-control .form-ext-toggle .form-ext-toggle__toggler i::before {
  4605. content: attr(data-uncheck-icon);
  4606. padding: 2px 7px;
  4607. line-height: 18px;
  4608. text-align: right;
  4609. top: 0;
  4610. width: 65%;
  4611. font-size: 12px; }
  4612. .form-ext-control .form-ext-toggle .form-ext-toggle__toggler i::after {
  4613. background-color: var(--cirrus-gray);
  4614. border-radius: 50%;
  4615. height: 16px;
  4616. left: 4px;
  4617. width: 16px;
  4618. transform: translateY(-50%);
  4619. transition: left var(--animation-duration) ease;
  4620. text-align: left; }
  4621. .form-ext-control .form-ext-label {
  4622. margin-bottom: 0;
  4623. position: relative;
  4624. /* Base of custom form inputs */ }
  4625. .form-ext-control .form-ext-label:before, .form-ext-control .form-ext-label:after {
  4626. content: '';
  4627. display: block;
  4628. height: 1rem;
  4629. left: -1.5rem;
  4630. position: absolute;
  4631. top: 0.3rem;
  4632. transition: all var(--animation-duration);
  4633. width: 1rem; }
  4634. .form-ext-control .form-ext-label:before {
  4635. background-color: var(--cirrus-light);
  4636. border: 1px solid #dee2e6;
  4637. border-radius: 0.25rem;
  4638. pointer-events: none;
  4639. user-select: none;
  4640. box-sizing: border-box; }
  4641. .form-ext-control .form-ext-label:after {
  4642. background-position: center;
  4643. background-repeat: no-repeat;
  4644. background-size: 50% 50%; }
  4645. .form-ext-control .form-ext-input:checked ~ .form-ext-label:before {
  4646. border: none; }
  4647. /* Spacing */
  4648. /* Fonts */
  4649. /* Grid Count */
  4650. /* Grid Percents */
  4651. /* Tab Sizes */
  4652. /* Media Queries */
  4653. /* Smaller than the defined pixels are the dimensions for that range */
  4654. /* GRID */
  4655. :root {
  4656. --gap-0: 0;
  4657. --gap-1: 0.25rem;
  4658. --gap-2: 0.5rem;
  4659. --gap-3: 1rem;
  4660. --gap-4: 1.25rem;
  4661. --gap-5: 1.5rem;
  4662. --gap-6: 2rem;
  4663. --gap-7: 3rem;
  4664. --gap-8: 4rem;
  4665. --gap-9: 5rem;
  4666. --gap-10: 7rem;
  4667. --gap-11: 9rem;
  4668. --gap-12: 12rem; }
  4669. .grid {
  4670. --grid-gap: --gap-2;
  4671. --grid-template-column: repeat(12, minmax(0, 1fr));
  4672. --grid-column-start: auto;
  4673. --grid-column-end: auto;
  4674. --grid-row-start: auto;
  4675. --grid-row-end: auto;
  4676. display: grid;
  4677. grid-gap: var(--grid-gap);
  4678. grid-template-columns: var(--grid-template-column);
  4679. /* Gap */
  4680. /* Gap */
  4681. /* Gap */
  4682. /* Gap */
  4683. /* Gap */
  4684. /* Gap */
  4685. /* Gap */
  4686. /* Gap */
  4687. /* Gap */
  4688. /* Gap */
  4689. /* Gap */
  4690. /* Gap */
  4691. /* Templates */
  4692. /* Column expansion */
  4693. /* Row expansion */
  4694. /* Cell Column Start/End */
  4695. /* Cell Row Start/End */
  4696. /* Templates */
  4697. /* Column expansion */
  4698. /* Row expansion */
  4699. /* Cell Column Start/End */
  4700. /* Cell Row Start/End */
  4701. /* Templates */
  4702. /* Column expansion */
  4703. /* Row expansion */
  4704. /* Cell Column Start/End */
  4705. /* Cell Row Start/End */
  4706. /* Templates */
  4707. /* Column expansion */
  4708. /* Row expansion */
  4709. /* Cell Column Start/End */
  4710. /* Cell Row Start/End */
  4711. /* Templates */
  4712. /* Column expansion */
  4713. /* Row expansion */
  4714. /* Cell Column Start/End */
  4715. /* Cell Row Start/End */
  4716. /* Templates */
  4717. /* Column expansion */
  4718. /* Row expansion */
  4719. /* Cell Column Start/End */
  4720. /* Cell Row Start/End */
  4721. /* Templates */
  4722. /* Column expansion */
  4723. /* Row expansion */
  4724. /* Cell Column Start/End */
  4725. /* Cell Row Start/End */
  4726. /* Templates */
  4727. /* Column expansion */
  4728. /* Row expansion */
  4729. /* Cell Column Start/End */
  4730. /* Cell Row Start/End */
  4731. /* Templates */
  4732. /* Column expansion */
  4733. /* Row expansion */
  4734. /* Cell Column Start/End */
  4735. /* Cell Row Start/End */
  4736. /* Templates */
  4737. /* Column expansion */
  4738. /* Row expansion */
  4739. /* Cell Column Start/End */
  4740. /* Cell Row Start/End */
  4741. /* Templates */
  4742. /* Column expansion */
  4743. /* Row expansion */
  4744. /* Cell Column Start/End */
  4745. /* Cell Row Start/End */
  4746. /* Templates */
  4747. /* Column expansion */
  4748. /* Row expansion */
  4749. /* Cell Column Start/End */
  4750. /* Cell Row Start/End */ }
  4751. .grid.grid-gap-1 {
  4752. --grid-gap: var(--gap-1); }
  4753. .grid.grid-gap-2 {
  4754. --grid-gap: var(--gap-2); }
  4755. .grid.grid-gap-3 {
  4756. --grid-gap: var(--gap-3); }
  4757. .grid.grid-gap-4 {
  4758. --grid-gap: var(--gap-4); }
  4759. .grid.grid-gap-5 {
  4760. --grid-gap: var(--gap-5); }
  4761. .grid.grid-gap-6 {
  4762. --grid-gap: var(--gap-6); }
  4763. .grid.grid-gap-7 {
  4764. --grid-gap: var(--gap-7); }
  4765. .grid.grid-gap-8 {
  4766. --grid-gap: var(--gap-8); }
  4767. .grid.grid-gap-9 {
  4768. --grid-gap: var(--gap-9); }
  4769. .grid.grid-gap-10 {
  4770. --grid-gap: var(--gap-10); }
  4771. .grid.grid-gap-11 {
  4772. --grid-gap: var(--gap-11); }
  4773. .grid.grid-gap-12 {
  4774. --grid-gap: var(--gap-12); }
  4775. .grid.grid-cols-1 {
  4776. --grid-template-column: repeat(1, minmax(0, 1fr)); }
  4777. .grid .grid-c-1 {
  4778. grid-column: span 1 / span 1; }
  4779. .grid .grid-r-1 {
  4780. grid-row: span 1 / span 1; }
  4781. .grid .grid-cs-1 {
  4782. grid-column-start: 1; }
  4783. .grid .grid-ce-1 {
  4784. grid-column-end: 2; }
  4785. .grid .grid-rs-1 {
  4786. grid-row-start: 1; }
  4787. .grid .grid-re-1 {
  4788. grid-row-end: 2; }
  4789. .grid.grid-cols-2 {
  4790. --grid-template-column: repeat(2, minmax(0, 1fr)); }
  4791. .grid .grid-c-2 {
  4792. grid-column: span 2 / span 2; }
  4793. .grid .grid-r-2 {
  4794. grid-row: span 2 / span 2; }
  4795. .grid .grid-cs-2 {
  4796. grid-column-start: 2; }
  4797. .grid .grid-ce-2 {
  4798. grid-column-end: 3; }
  4799. .grid .grid-rs-2 {
  4800. grid-row-start: 2; }
  4801. .grid .grid-re-2 {
  4802. grid-row-end: 3; }
  4803. .grid.grid-cols-3 {
  4804. --grid-template-column: repeat(3, minmax(0, 1fr)); }
  4805. .grid .grid-c-3 {
  4806. grid-column: span 3 / span 3; }
  4807. .grid .grid-r-3 {
  4808. grid-row: span 3 / span 3; }
  4809. .grid .grid-cs-3 {
  4810. grid-column-start: 3; }
  4811. .grid .grid-ce-3 {
  4812. grid-column-end: 4; }
  4813. .grid .grid-rs-3 {
  4814. grid-row-start: 3; }
  4815. .grid .grid-re-3 {
  4816. grid-row-end: 4; }
  4817. .grid.grid-cols-4 {
  4818. --grid-template-column: repeat(4, minmax(0, 1fr)); }
  4819. .grid .grid-c-4 {
  4820. grid-column: span 4 / span 4; }
  4821. .grid .grid-r-4 {
  4822. grid-row: span 4 / span 4; }
  4823. .grid .grid-cs-4 {
  4824. grid-column-start: 4; }
  4825. .grid .grid-ce-4 {
  4826. grid-column-end: 5; }
  4827. .grid .grid-rs-4 {
  4828. grid-row-start: 4; }
  4829. .grid .grid-re-4 {
  4830. grid-row-end: 5; }
  4831. .grid.grid-cols-5 {
  4832. --grid-template-column: repeat(5, minmax(0, 1fr)); }
  4833. .grid .grid-c-5 {
  4834. grid-column: span 5 / span 5; }
  4835. .grid .grid-r-5 {
  4836. grid-row: span 5 / span 5; }
  4837. .grid .grid-cs-5 {
  4838. grid-column-start: 5; }
  4839. .grid .grid-ce-5 {
  4840. grid-column-end: 6; }
  4841. .grid .grid-rs-5 {
  4842. grid-row-start: 5; }
  4843. .grid .grid-re-5 {
  4844. grid-row-end: 6; }
  4845. .grid.grid-cols-6 {
  4846. --grid-template-column: repeat(6, minmax(0, 1fr)); }
  4847. .grid .grid-c-6 {
  4848. grid-column: span 6 / span 6; }
  4849. .grid .grid-r-6 {
  4850. grid-row: span 6 / span 6; }
  4851. .grid .grid-cs-6 {
  4852. grid-column-start: 6; }
  4853. .grid .grid-ce-6 {
  4854. grid-column-end: 7; }
  4855. .grid .grid-rs-6 {
  4856. grid-row-start: 6; }
  4857. .grid .grid-re-6 {
  4858. grid-row-end: 7; }
  4859. .grid.grid-cols-7 {
  4860. --grid-template-column: repeat(7, minmax(0, 1fr)); }
  4861. .grid .grid-c-7 {
  4862. grid-column: span 7 / span 7; }
  4863. .grid .grid-r-7 {
  4864. grid-row: span 7 / span 7; }
  4865. .grid .grid-cs-7 {
  4866. grid-column-start: 7; }
  4867. .grid .grid-ce-7 {
  4868. grid-column-end: 8; }
  4869. .grid .grid-rs-7 {
  4870. grid-row-start: 7; }
  4871. .grid .grid-re-7 {
  4872. grid-row-end: 8; }
  4873. .grid.grid-cols-8 {
  4874. --grid-template-column: repeat(8, minmax(0, 1fr)); }
  4875. .grid .grid-c-8 {
  4876. grid-column: span 8 / span 8; }
  4877. .grid .grid-r-8 {
  4878. grid-row: span 8 / span 8; }
  4879. .grid .grid-cs-8 {
  4880. grid-column-start: 8; }
  4881. .grid .grid-ce-8 {
  4882. grid-column-end: 9; }
  4883. .grid .grid-rs-8 {
  4884. grid-row-start: 8; }
  4885. .grid .grid-re-8 {
  4886. grid-row-end: 9; }
  4887. .grid.grid-cols-9 {
  4888. --grid-template-column: repeat(9, minmax(0, 1fr)); }
  4889. .grid .grid-c-9 {
  4890. grid-column: span 9 / span 9; }
  4891. .grid .grid-r-9 {
  4892. grid-row: span 9 / span 9; }
  4893. .grid .grid-cs-9 {
  4894. grid-column-start: 9; }
  4895. .grid .grid-ce-9 {
  4896. grid-column-end: 10; }
  4897. .grid .grid-rs-9 {
  4898. grid-row-start: 9; }
  4899. .grid .grid-re-9 {
  4900. grid-row-end: 10; }
  4901. .grid.grid-cols-10 {
  4902. --grid-template-column: repeat(10, minmax(0, 1fr)); }
  4903. .grid .grid-c-10 {
  4904. grid-column: span 10 / span 10; }
  4905. .grid .grid-r-10 {
  4906. grid-row: span 10 / span 10; }
  4907. .grid .grid-cs-10 {
  4908. grid-column-start: 10; }
  4909. .grid .grid-ce-10 {
  4910. grid-column-end: 11; }
  4911. .grid .grid-rs-10 {
  4912. grid-row-start: 10; }
  4913. .grid .grid-re-10 {
  4914. grid-row-end: 11; }
  4915. .grid.grid-cols-11 {
  4916. --grid-template-column: repeat(11, minmax(0, 1fr)); }
  4917. .grid .grid-c-11 {
  4918. grid-column: span 11 / span 11; }
  4919. .grid .grid-r-11 {
  4920. grid-row: span 11 / span 11; }
  4921. .grid .grid-cs-11 {
  4922. grid-column-start: 11; }
  4923. .grid .grid-ce-11 {
  4924. grid-column-end: 12; }
  4925. .grid .grid-rs-11 {
  4926. grid-row-start: 11; }
  4927. .grid .grid-re-11 {
  4928. grid-row-end: 12; }
  4929. .grid.grid-cols-12 {
  4930. --grid-template-column: repeat(12, minmax(0, 1fr)); }
  4931. .grid .grid-c-12 {
  4932. grid-column: span 12 / span 12; }
  4933. .grid .grid-r-12 {
  4934. grid-row: span 12 / span 12; }
  4935. .grid .grid-cs-12 {
  4936. grid-column-start: 12; }
  4937. .grid .grid-ce-12 {
  4938. grid-column-end: 13; }
  4939. .grid .grid-rs-12 {
  4940. grid-row-start: 12; }
  4941. .grid .grid-re-12 {
  4942. grid-row-end: 13; }
  4943. .grid .grid-ce-end {
  4944. grid-column-end: -1; }
  4945. .grid .grid-re-end {
  4946. grid-row-end: -1; }
  4947. .grid .grid-ce-auto {
  4948. grid-column-end: auto; }
  4949. .grid .grid-re-auto {
  4950. grid-row-end: auto; }
  4951. @media screen and (max-width: 767px) {
  4952. .grid {
  4953. --grid-template-column: repeat(1, minmax(0, 1fr)); } }
  4954. /* EXTENDED LINKS */
  4955. /* Animated links */
  4956. .u,
  4957. .utb {
  4958. display: inline;
  4959. position: relative;
  4960. /* So the psuedo-elements are positioned correctly */ }
  4961. /* Underline */
  4962. .u::after {
  4963. content: "";
  4964. transition: all 0.3s;
  4965. -webkit-backface-visibility: hidden;
  4966. backface-visibility: hidden;
  4967. position: absolute;
  4968. height: 0.1rem;
  4969. width: 0;
  4970. background: var(--cirrus-link-dark);
  4971. bottom: -0.25em; }
  4972. .u:hover::after {
  4973. width: 100%; }
  4974. .u.u-LR::after {
  4975. /* Left to Right */
  4976. left: 0; }
  4977. .u.u-LR::after {
  4978. /* Left to Right */
  4979. left: 0; }
  4980. .u.u-RL::after {
  4981. /* Right to Left */
  4982. right: 0; }
  4983. .u.u-RL:hover::after {
  4984. width: 100%; }
  4985. .u.u-C::after {
  4986. /* Center Outwards */
  4987. left: 50%;
  4988. -webkit-transform: translateX(-50%);
  4989. transform: translateX(-50%); }
  4990. /* Underline top and bottom */
  4991. .utb {
  4992. /* Opposite start */ }
  4993. .utb::before, .utb::after {
  4994. content: "";
  4995. transition: all 0.3s;
  4996. -webkit-backface-visibility: hidden;
  4997. backface-visibility: hidden;
  4998. position: absolute;
  4999. height: 0.1rem;
  5000. width: 0;
  5001. background: var(--cirrus-link-dark); }
  5002. .utb::before {
  5003. top: -0.25em; }
  5004. .utb::after {
  5005. bottom: -0.25em; }
  5006. .utb:hover::before, .utb:hover::after {
  5007. width: 100%; }
  5008. .utb.utb-LR::before, .utb.utb-LR::after {
  5009. left: 0; }
  5010. .utb.utb-RL::before, .utb.utb-RL::after {
  5011. right: 0; }
  5012. .utb.utb-C::before, .utb.utb-C::after {
  5013. left: 50%;
  5014. -webkit-transform: translateX(-50%);
  5015. transform: translateX(-50%); }
  5016. .utb.utb-OLR::before {
  5017. /* Suffix denotes border transition direction for the top border (left to right). Bottom border will be the opposite direction */
  5018. left: 0; }
  5019. .utb.utb-OLR::after {
  5020. right: 0; }
  5021. .utb.utb-ORL::before {
  5022. right: 0; }
  5023. .utb.utb-ORL::after {
  5024. left: 0; }
  5025. /* Links with square borders */
  5026. /* Please note that usquare is the parent span (not div) which would create the left and right borders. The link (.utb-OLR) gets nested within this */
  5027. .usquare {
  5028. margin-left: 0.4rem;
  5029. position: relative;
  5030. overflow: hidden; }
  5031. .usquare::before, .usquare::after {
  5032. content: "";
  5033. transition: 0.25s all ease;
  5034. -webkit-backface-visibility: hidden;
  5035. backface-visibility: hidden;
  5036. position: absolute;
  5037. width: 2px;
  5038. width: 0.1 rem;
  5039. height: 0;
  5040. background: var(--cirrus-link-dark); }
  5041. .usquare::before {
  5042. left: 0;
  5043. bottom: -0.2rem; }
  5044. .usquare::after {
  5045. right: 0;
  5046. top: -0.2rem; }
  5047. .usquare:hover::before, .usquare:hover::after {
  5048. height: calc(100% + 0.4rem);
  5049. /* Makes the left and right borders */ }
  5050. .usquare:hover a::before,
  5051. .usquare:hover a::after {
  5052. width: 100%; }
  5053. .usquare.delay::before {
  5054. transition-delay: 0.6s; }
  5055. .usquare.delay::after {
  5056. transition-delay: var(--animation-duration); }
  5057. .usquare.delay a::after {
  5058. transition: 0.25s all ease 0.4s; }
  5059. .usquare a {
  5060. position: static;
  5061. padding: 0.2rem 0.4rem;
  5062. transition: 0.25s all ease; }
  5063. .usquare a::before {
  5064. left: 0; }
  5065. .usquare a::after {
  5066. right: 0; }
  5067. /*
  5068. Group selectors that share common styling.
  5069. */
  5070. /* Spacing */
  5071. /* Fonts */
  5072. /* Grid Count */
  5073. /* Grid Percents */
  5074. /* Tab Sizes */
  5075. /* Media Queries */
  5076. /* Smaller than the defined pixels are the dimensions for that range */
  5077. /*
  5078. Functions
  5079. */
  5080. /*
  5081. Converts a given hex value to RGB.
  5082. */
  5083. /*
  5084. Generates delimited class name prefix.
  5085. */
  5086. /*
  5087. Fetch feature flag for different utility class types for generating viewport classes (e.g., u-flex-sm, u-flex-md, etc.).
  5088. */
  5089. /* Spacing */
  5090. /* Fonts */
  5091. /* Grid Count */
  5092. /* Grid Percents */
  5093. /* Tab Sizes */
  5094. /* Media Queries */
  5095. /* Smaller than the defined pixels are the dimensions for that range */
  5096. /* Color scheme for Cirrus */
  5097. /* v2 Colors */
  5098. :root {
  5099. /* v1 Colors */
  5100. --cirrus-fg: #374054;
  5101. --cirrus-bg: #fff;
  5102. --cirrus-primary: #f03d4d;
  5103. --cirrus-primary-rgb: 240, 61, 77;
  5104. --cirrus-primary-light: #ffdadd;
  5105. --cirrus-accent-hover: #d62939;
  5106. --cirrus-accent-border: #c21b2b;
  5107. --cirrus-light: #f6f9fc;
  5108. --cirrus-light-gray: #f8f9fa;
  5109. --cirrus-gray: #d5d7dc;
  5110. --cirrus-dark-gray: #909090;
  5111. --cirrus-dark: #363636;
  5112. --cirrus-link: #5e5cc7;
  5113. --cirrus-link-dark: #4643e2;
  5114. --cirrus-info: #2972fa;
  5115. --cirrus-success: #0dd157;
  5116. --cirrus-success-rgb: 13, 209, 87;
  5117. --cirrus-warning: #fab633;
  5118. --cirrus-danger: #fb4143;
  5119. --cirrus-light-hover: #d0e0ef;
  5120. --cirrus-dark-hover: #505050;
  5121. --cirrus-info-hover: #1062f9;
  5122. --cirrus-link-hover: #f8f7ff;
  5123. --cirrus-success-hover: #0cb94d;
  5124. --cirrus-warning-hover: #f9ad1a;
  5125. --cirrus-danger-hover: #eb0507;
  5126. --cirrus-select-bg: rgba(0, 161, 255, 0.2);
  5127. --cirrus-code-bg: var(--cirrus-primary-light);
  5128. --cirrus-code-fg: #dc4753;
  5129. --cirrus-form-group-bg: var(--cirrus-light-gray);
  5130. --cirrus-form-group-fg: var(--cirrus-dark-gray);
  5131. --toast-primary-bg: rgba(49, 59, 80, 0.9);
  5132. --animation-duration: 0.2s;
  5133. --focus-opacity: 0.55;
  5134. --space-size: 0.5rem;
  5135. --font-size-xs: 0.7rem;
  5136. --font-size-s: 0.85rem;
  5137. --font-size-m: 1rem;
  5138. --font-size-l: 1.35rem;
  5139. --font-size-xl: 1.75rem; }
  5140. /* The base of the modal dialog, which is an overlay of the webpage */
  5141. .modal {
  5142. position: fixed;
  5143. /* Scrolls with the user */
  5144. top: 0;
  5145. left: 0;
  5146. right: 0;
  5147. bottom: 0;
  5148. opacity: 0;
  5149. /* Initially hidden */
  5150. padding: 1rem;
  5151. display: none;
  5152. /* Doesn't block the elements underneath */
  5153. -webkit-box-align: center;
  5154. -ms-flex-align: center;
  5155. align-items: center;
  5156. -webkit-box-pack: center;
  5157. -ms-flex-pack: center;
  5158. justify-content: center;
  5159. /* Vertical centering */
  5160. pointer-events: none;
  5161. /* Prevent any pointer events made to modal while hidden */
  5162. /* When the modal dialog is visible */
  5163. /* Different size modals */
  5164. /* The modal dialog body with the text itself */
  5165. /* MODAL ANIMATIONS */
  5166. /* Visible state */ }
  5167. .modal:target, .modal.shown {
  5168. display: -webkit-box;
  5169. display: -ms-flexbox;
  5170. display: flex;
  5171. opacity: 1;
  5172. z-index: 999;
  5173. pointer-events: auto;
  5174. /* Re-enable pointer events */
  5175. /* The div in the modal dialpog used to create the translucent background */ }
  5176. .modal:target .modal-overlay, .modal.shown .modal-overlay {
  5177. position: absolute;
  5178. /* Absolute inside of the modal container */
  5179. top: 0;
  5180. left: 0;
  5181. right: 0;
  5182. bottom: 0;
  5183. display: block;
  5184. background-color: rgba(54, 54, 54, 0.5); }
  5185. .modal:target .modal-container,
  5186. .modal:target .modal-container, .modal.shown .modal-container,
  5187. .modal.shown .modal-container {
  5188. -webkit-animation: slide-down var(--animation-duration) ease 1;
  5189. animation: slide-down var(--animation-duration) ease 1;
  5190. z-index: 1; }
  5191. .modal.modal-small .modal-content {
  5192. max-width: 20rem;
  5193. /* 320px */ }
  5194. .modal.modal-large .modal-content {
  5195. max-width: 60rem;
  5196. /* 960px */ }
  5197. .modal .modal-content {
  5198. background-color: var(--cirrus-bg);
  5199. padding: 0;
  5200. display: block;
  5201. border-radius: 3px;
  5202. box-shadow: 0 0.4rem 1rem rgba(54, 54, 54, 0.3);
  5203. z-index: 1;
  5204. color: var(--cirrus-fg);
  5205. max-width: 40rem;
  5206. /* 640px */
  5207. /* Restrict width */ }
  5208. .modal .modal-content.small {
  5209. max-width: 32rem; }
  5210. .modal .modal-content h1, .modal .modal-content h2, .modal .modal-content h3, .modal .modal-content h4, .modal .modal-content h5, .modal .modal-content h6 {
  5211. color: var(--cirrus-fg); }
  5212. .modal .modal-content .modal-header {
  5213. padding: 1rem 2.5rem; }
  5214. .modal .modal-content .modal-header .modal-title {
  5215. font-weight: bolder;
  5216. font-size: 1.4rem; }
  5217. .modal .modal-content .modal-body {
  5218. padding: 1rem 2.5rem;
  5219. overflow-y: auto;
  5220. max-height: 50vh;
  5221. /* Max height is 50% of viewport height which prevents dialog from extetnding past screen */
  5222. position: relative; }
  5223. .modal .modal-content .modal-footer {
  5224. padding: 1rem 2.5rem; }
  5225. @media screen and (max-width: 767px) {
  5226. .modal .modal-content {
  5227. max-width: 90%; } }
  5228. .modal.modal-animated--dropdown {
  5229. -webkit-animation: slide-down var(--animation-duration) ease 1;
  5230. animation: slide-down var(--animation-duration) ease 1; }
  5231. .modal.modal-animated--zoom-in, .modal.modal-animated--zoom-out {
  5232. display: -webkit-box;
  5233. /* Force dialog to appear in the center */
  5234. display: -ms-flexbox;
  5235. display: flex;
  5236. opacity: 0;
  5237. transition: 300ms all ease; }
  5238. .modal:target.modal-animated--zoom-in, .modal:target.modal-animated--zoom-out {
  5239. opacity: 1;
  5240. transition: 300ms all ease; }
  5241. .modal.modal-animated--zoom-in .modal-content {
  5242. transform: scale(0.8);
  5243. transition: 300ms all ease; }
  5244. .modal:target.modal-animated--zoom-in .modal-content,
  5245. .modal:target.modal-animated--zoom-out .modal-content {
  5246. transform: scale(1);
  5247. transition: 300ms all ease; }
  5248. .modal.modal-animated--zoom-out .modal-content {
  5249. transform: scale(1.2);
  5250. transition: 300ms all ease; }
  5251. /* Keyframes for slide down animation */
  5252. @-webkit-keyframes slide-down {
  5253. 0% {
  5254. opacity: 0;
  5255. -webkit-transform: translateY(-3rem);
  5256. transform: translateY(-3rem); }
  5257. 100% {
  5258. opacity: 1;
  5259. -webkit-transform: translateY(0);
  5260. transform: translateY(0); } }
  5261. @keyframes slide-down {
  5262. 0% {
  5263. opacity: 0;
  5264. -webkit-transform: translateY(-3rem);
  5265. transform: translateY(-3rem); }
  5266. 100% {
  5267. opacity: 1;
  5268. -webkit-transform: translateY(0);
  5269. transform: translateY(0); } }
  5270. @media screen and (max-width: 767px) {
  5271. .modal-content {
  5272. max-width: 90%; } }
  5273. /*
  5274. Functions
  5275. */
  5276. /*
  5277. Converts a given hex value to RGB.
  5278. */
  5279. /*
  5280. Generates delimited class name prefix.
  5281. */
  5282. /*
  5283. Fetch feature flag for different utility class types for generating viewport classes (e.g., u-flex-sm, u-flex-md, etc.).
  5284. */
  5285. /* Spacing */
  5286. /* Fonts */
  5287. /* Grid Count */
  5288. /* Grid Percents */
  5289. /* Tab Sizes */
  5290. /* Media Queries */
  5291. /* Smaller than the defined pixels are the dimensions for that range */
  5292. /* Color scheme for Cirrus */
  5293. /* v2 Colors */
  5294. :root {
  5295. /* v1 Colors */
  5296. --cirrus-fg: #374054;
  5297. --cirrus-bg: #fff;
  5298. --cirrus-primary: #f03d4d;
  5299. --cirrus-primary-rgb: 240, 61, 77;
  5300. --cirrus-primary-light: #ffdadd;
  5301. --cirrus-accent-hover: #d62939;
  5302. --cirrus-accent-border: #c21b2b;
  5303. --cirrus-light: #f6f9fc;
  5304. --cirrus-light-gray: #f8f9fa;
  5305. --cirrus-gray: #d5d7dc;
  5306. --cirrus-dark-gray: #909090;
  5307. --cirrus-dark: #363636;
  5308. --cirrus-link: #5e5cc7;
  5309. --cirrus-link-dark: #4643e2;
  5310. --cirrus-info: #2972fa;
  5311. --cirrus-success: #0dd157;
  5312. --cirrus-success-rgb: 13, 209, 87;
  5313. --cirrus-warning: #fab633;
  5314. --cirrus-danger: #fb4143;
  5315. --cirrus-light-hover: #d0e0ef;
  5316. --cirrus-dark-hover: #505050;
  5317. --cirrus-info-hover: #1062f9;
  5318. --cirrus-link-hover: #f8f7ff;
  5319. --cirrus-success-hover: #0cb94d;
  5320. --cirrus-warning-hover: #f9ad1a;
  5321. --cirrus-danger-hover: #eb0507;
  5322. --cirrus-select-bg: rgba(0, 161, 255, 0.2);
  5323. --cirrus-code-bg: var(--cirrus-primary-light);
  5324. --cirrus-code-fg: #dc4753;
  5325. --cirrus-form-group-bg: var(--cirrus-light-gray);
  5326. --cirrus-form-group-fg: var(--cirrus-dark-gray);
  5327. --toast-primary-bg: rgba(49, 59, 80, 0.9);
  5328. --animation-duration: 0.2s;
  5329. --focus-opacity: 0.55;
  5330. --space-size: 0.5rem;
  5331. --font-size-xs: 0.7rem;
  5332. --font-size-s: 0.85rem;
  5333. --font-size-m: 1rem;
  5334. --font-size-l: 1.35rem;
  5335. --font-size-xl: 1.75rem; }
  5336. /*
  5337. Group selectors that share common styling.
  5338. */
  5339. /* A collection of modifiers that extend control styling */
  5340. .btn .btn--pilled, button .btn--pilled, [type="submit"] .btn--pilled, [type="reset"] .btn--pilled, [type="button"] .btn--pilled {
  5341. border-radius: 6.25rem;
  5342. padding-left: 1.25rem;
  5343. padding-right: 1.25rem; }
  5344. /* btn--circle: contents must be placed inside child element */
  5345. .btn.btn--circle, button.btn--circle, [type="submit"].btn--circle, [type="reset"].btn--circle, [type="button"].btn--circle {
  5346. border-radius: 100%;
  5347. min-width: 60px;
  5348. overflow: hidden;
  5349. padding: 0;
  5350. text-align: center; }
  5351. .btn.btn--circle:before, button.btn--circle:before, [type="submit"].btn--circle:before, [type="reset"].btn--circle:before, [type="button"].btn--circle:before {
  5352. content: '';
  5353. display: inline-block;
  5354. vertical-align: middle;
  5355. padding-top: 100%; }
  5356. .btn.btn--circle *, button.btn--circle *, [type="submit"].btn--circle *, [type="reset"].btn--circle *, [type="button"].btn--circle * {
  5357. display: inline;
  5358. max-width: 90%;
  5359. vertical-align: middle;
  5360. white-space: pre-wrap; }
  5361. /* Input (primary text-based) controls apply to inputs */
  5362. .input-control--pilled {
  5363. border-radius: 6.25rem !important; }
  5364. /* Theme modifiers */
  5365. /* GLOBAL THEME SELECTORS */
  5366. /* v1 */
  5367. .bg-primary {
  5368. background-color: var(--cirrus-primary) !important; }
  5369. .text-primary {
  5370. border-color: var(--cirrus-primary) !important;
  5371. color: var(--cirrus-primary) !important; }
  5372. .bg-success {
  5373. background-color: var(--cirrus-success) !important; }
  5374. .text-success {
  5375. border-color: var(--cirrus-success) !important;
  5376. color: var(--cirrus-success) !important; }
  5377. .bg-warning {
  5378. background-color: var(--cirrus-warning) !important; }
  5379. .text-warning {
  5380. border-color: var(--cirrus-warning) !important;
  5381. color: var(--cirrus-warning) !important; }
  5382. .bg-danger {
  5383. background-color: var(--cirrus-danger) !important; }
  5384. .text-danger {
  5385. border-color: var(--cirrus-danger) !important;
  5386. color: var(--cirrus-danger) !important; }
  5387. .bg-light {
  5388. background-color: var(--cirrus-light) !important; }
  5389. .text-light {
  5390. border-color: var(--cirrus-light) !important;
  5391. color: var(--cirrus-light) !important; }
  5392. .bg-dark {
  5393. background-color: var(--cirrus-dark) !important; }
  5394. .text-dark {
  5395. border-color: var(--cirrus-dark) !important;
  5396. color: var(--cirrus-dark) !important; }
  5397. .bg-link {
  5398. background-color: var(--cirrus-link) !important; }
  5399. .text-link {
  5400. border-color: var(--cirrus-link) !important;
  5401. color: var(--cirrus-link) !important; }
  5402. .bg-link-dark {
  5403. background-color: var(--cirrus-link-dark) !important; }
  5404. .text-link-dark {
  5405. border-color: var(--cirrus-link-dark) !important;
  5406. color: var(--cirrus-link-dark) !important; }
  5407. .bg-info {
  5408. background-color: var(--cirrus-info) !important; }
  5409. .text-info {
  5410. border-color: var(--cirrus-info) !important;
  5411. color: var(--cirrus-info) !important; }
  5412. /* v2 */
  5413. .bg-pink-100 {
  5414. background-color: #F8E7F1 !important; }
  5415. .text-pink-100 {
  5416. border-color: #F8E7F1 !important;
  5417. color: #F8E7F1 !important; }
  5418. .bg-pink-200 {
  5419. background-color: #F3D2E3 !important; }
  5420. .text-pink-200 {
  5421. border-color: #F3D2E3 !important;
  5422. color: #F3D2E3 !important; }
  5423. .bg-pink-300 {
  5424. background-color: #ECB7D3 !important; }
  5425. .text-pink-300 {
  5426. border-color: #ECB7D3 !important;
  5427. color: #ECB7D3 !important; }
  5428. .bg-pink-400 {
  5429. background-color: #EB8CBC !important; }
  5430. .text-pink-400 {
  5431. border-color: #EB8CBC !important;
  5432. color: #EB8CBC !important; }
  5433. .bg-pink-500 {
  5434. background-color: #DD5A9C !important; }
  5435. .text-pink-500 {
  5436. border-color: #DD5A9C !important;
  5437. color: #DD5A9C !important; }
  5438. .bg-pink-600 {
  5439. background-color: #D12E81 !important; }
  5440. .text-pink-600 {
  5441. border-color: #D12E81 !important;
  5442. color: #D12E81 !important; }
  5443. .bg-pink-700 {
  5444. background-color: #A21F61 !important; }
  5445. .text-pink-700 {
  5446. border-color: #A21F61 !important;
  5447. color: #A21F61 !important; }
  5448. .bg-pink-800 {
  5449. background-color: #831B50 !important; }
  5450. .text-pink-800 {
  5451. border-color: #831B50 !important;
  5452. color: #831B50 !important; }
  5453. .bg-pink-900 {
  5454. background-color: #741648 !important; }
  5455. .text-pink-900 {
  5456. border-color: #741648 !important;
  5457. color: #741648 !important; }
  5458. .bg-red-100 {
  5459. background-color: #FDE7E9 !important; }
  5460. .text-red-100 {
  5461. border-color: #FDE7E9 !important;
  5462. color: #FDE7E9 !important; }
  5463. .bg-red-200 {
  5464. background-color: #FBD4D5 !important; }
  5465. .text-red-200 {
  5466. border-color: #FBD4D5 !important;
  5467. color: #FBD4D5 !important; }
  5468. .bg-red-300 {
  5469. background-color: #F7B1B1 !important; }
  5470. .text-red-300 {
  5471. border-color: #F7B1B1 !important;
  5472. color: #F7B1B1 !important; }
  5473. .bg-red-400 {
  5474. background-color: #F19393 !important; }
  5475. .text-red-400 {
  5476. border-color: #F19393 !important;
  5477. color: #F19393 !important; }
  5478. .bg-red-500 {
  5479. background-color: #E85C61 !important; }
  5480. .text-red-500 {
  5481. border-color: #E85C61 !important;
  5482. color: #E85C61 !important; }
  5483. .bg-red-600 {
  5484. background-color: #DB3839 !important; }
  5485. .text-red-600 {
  5486. border-color: #DB3839 !important;
  5487. color: #DB3839 !important; }
  5488. .bg-red-700 {
  5489. background-color: #B31E1D !important; }
  5490. .text-red-700 {
  5491. border-color: #B31E1D !important;
  5492. color: #B31E1D !important; }
  5493. .bg-red-800 {
  5494. background-color: #9B1313 !important; }
  5495. .text-red-800 {
  5496. border-color: #9B1313 !important;
  5497. color: #9B1313 !important; }
  5498. .bg-red-900 {
  5499. background-color: #890E10 !important; }
  5500. .text-red-900 {
  5501. border-color: #890E10 !important;
  5502. color: #890E10 !important; }
  5503. .bg-orange-100 {
  5504. background-color: #FDEED1 !important; }
  5505. .text-orange-100 {
  5506. border-color: #FDEED1 !important;
  5507. color: #FDEED1 !important; }
  5508. .bg-orange-200 {
  5509. background-color: #FBDBAA !important; }
  5510. .text-orange-200 {
  5511. border-color: #FBDBAA !important;
  5512. color: #FBDBAA !important; }
  5513. .bg-orange-300 {
  5514. background-color: #F6B65C !important; }
  5515. .text-orange-300 {
  5516. border-color: #F6B65C !important;
  5517. color: #F6B65C !important; }
  5518. .bg-orange-400 {
  5519. background-color: #F19736 !important; }
  5520. .text-orange-400 {
  5521. border-color: #F19736 !important;
  5522. color: #F19736 !important; }
  5523. .bg-orange-500 {
  5524. background-color: #E4771C !important; }
  5525. .text-orange-500 {
  5526. border-color: #E4771C !important;
  5527. color: #E4771C !important; }
  5528. .bg-orange-600 {
  5529. background-color: #C45307 !important; }
  5530. .text-orange-600 {
  5531. border-color: #C45307 !important;
  5532. color: #C45307 !important; }
  5533. .bg-orange-700 {
  5534. background-color: #9B3908 !important; }
  5535. .text-orange-700 {
  5536. border-color: #9B3908 !important;
  5537. color: #9B3908 !important; }
  5538. .bg-orange-800 {
  5539. background-color: #842B09 !important; }
  5540. .text-orange-800 {
  5541. border-color: #842B09 !important;
  5542. color: #842B09 !important; }
  5543. .bg-orange-900 {
  5544. background-color: #890E10 !important; }
  5545. .text-orange-900 {
  5546. border-color: #890E10 !important;
  5547. color: #890E10 !important; }
  5548. .bg-yellow-100 {
  5549. background-color: #FFFDE4 !important; }
  5550. .text-yellow-100 {
  5551. border-color: #FFFDE4 !important;
  5552. color: #FFFDE4 !important; }
  5553. .bg-yellow-200 {
  5554. background-color: #F9E978 !important; }
  5555. .text-yellow-200 {
  5556. border-color: #F9E978 !important;
  5557. color: #F9E978 !important; }
  5558. .bg-yellow-300 {
  5559. background-color: #F6DA52 !important; }
  5560. .text-yellow-300 {
  5561. border-color: #F6DA52 !important;
  5562. color: #F6DA52 !important; }
  5563. .bg-yellow-400 {
  5564. background-color: #E8BB24 !important; }
  5565. .text-yellow-400 {
  5566. border-color: #E8BB24 !important;
  5567. color: #E8BB24 !important; }
  5568. .bg-yellow-500 {
  5569. background-color: #D29507 !important; }
  5570. .text-yellow-500 {
  5571. border-color: #D29507 !important;
  5572. color: #D29507 !important; }
  5573. .bg-yellow-600 {
  5574. background-color: #9D6B0C !important; }
  5575. .text-yellow-600 {
  5576. border-color: #9D6B0C !important;
  5577. color: #9D6B0C !important; }
  5578. .bg-yellow-700 {
  5579. background-color: #7C4D09 !important; }
  5580. .text-yellow-700 {
  5581. border-color: #7C4D09 !important;
  5582. color: #7C4D09 !important; }
  5583. .bg-yellow-800 {
  5584. background-color: #6C3E0C !important; }
  5585. .text-yellow-800 {
  5586. border-color: #6C3E0C !important;
  5587. color: #6C3E0C !important; }
  5588. .bg-yellow-900 {
  5589. background-color: #5D320F !important; }
  5590. .text-yellow-900 {
  5591. border-color: #5D320F !important;
  5592. color: #5D320F !important; }
  5593. .bg-green-100 {
  5594. background-color: #E1F7EB !important; }
  5595. .text-green-100 {
  5596. border-color: #E1F7EB !important;
  5597. color: #E1F7EB !important; }
  5598. .bg-green-200 {
  5599. background-color: #C2ECD6 !important; }
  5600. .text-green-200 {
  5601. border-color: #C2ECD6 !important;
  5602. color: #C2ECD6 !important; }
  5603. .bg-green-300 {
  5604. background-color: #98D9B7 !important; }
  5605. .text-green-300 {
  5606. border-color: #98D9B7 !important;
  5607. color: #98D9B7 !important; }
  5608. .bg-green-400 {
  5609. background-color: #64C192 !important; }
  5610. .text-green-400 {
  5611. border-color: #64C192 !important;
  5612. color: #64C192 !important; }
  5613. .bg-green-500 {
  5614. background-color: #44A675 !important; }
  5615. .text-green-500 {
  5616. border-color: #44A675 !important;
  5617. color: #44A675 !important; }
  5618. .bg-green-600 {
  5619. background-color: #33855D !important; }
  5620. .text-green-600 {
  5621. border-color: #33855D !important;
  5622. color: #33855D !important; }
  5623. .bg-green-700 {
  5624. background-color: #27684A !important; }
  5625. .text-green-700 {
  5626. border-color: #27684A !important;
  5627. color: #27684A !important; }
  5628. .bg-green-800 {
  5629. background-color: #275440 !important; }
  5630. .text-green-800 {
  5631. border-color: #275440 !important;
  5632. color: #275440 !important; }
  5633. .bg-green-900 {
  5634. background-color: #234535 !important; }
  5635. .text-green-900 {
  5636. border-color: #234535 !important;
  5637. color: #234535 !important; }
  5638. .bg-teal-100 {
  5639. background-color: #DDF2F5 !important; }
  5640. .text-teal-100 {
  5641. border-color: #DDF2F5 !important;
  5642. color: #DDF2F5 !important; }
  5643. .bg-teal-200 {
  5644. background-color: #B5E6EB !important; }
  5645. .text-teal-200 {
  5646. border-color: #B5E6EB !important;
  5647. color: #B5E6EB !important; }
  5648. .bg-teal-300 {
  5649. background-color: #7FCED5 !important; }
  5650. .text-teal-300 {
  5651. border-color: #7FCED5 !important;
  5652. color: #7FCED5 !important; }
  5653. .bg-teal-400 {
  5654. background-color: #59BAC3 !important; }
  5655. .text-teal-400 {
  5656. border-color: #59BAC3 !important;
  5657. color: #59BAC3 !important; }
  5658. .bg-teal-500 {
  5659. background-color: #1E9CA8 !important; }
  5660. .text-teal-500 {
  5661. border-color: #1E9CA8 !important;
  5662. color: #1E9CA8 !important; }
  5663. .bg-teal-600 {
  5664. background-color: #0F7D8A !important; }
  5665. .text-teal-600 {
  5666. border-color: #0F7D8A !important;
  5667. color: #0F7D8A !important; }
  5668. .bg-teal-700 {
  5669. background-color: #0A616A !important; }
  5670. .text-teal-700 {
  5671. border-color: #0A616A !important;
  5672. color: #0A616A !important; }
  5673. .bg-teal-800 {
  5674. background-color: #105157 !important; }
  5675. .text-teal-800 {
  5676. border-color: #105157 !important;
  5677. color: #105157 !important; }
  5678. .bg-teal-900 {
  5679. background-color: #114448 !important; }
  5680. .text-teal-900 {
  5681. border-color: #114448 !important;
  5682. color: #114448 !important; }
  5683. .bg-blue-100 {
  5684. background-color: #E1EFFC !important; }
  5685. .text-blue-100 {
  5686. border-color: #E1EFFC !important;
  5687. color: #E1EFFC !important; }
  5688. .bg-blue-200 {
  5689. background-color: #BFDCFC !important; }
  5690. .text-blue-200 {
  5691. border-color: #BFDCFC !important;
  5692. color: #BFDCFC !important; }
  5693. .bg-blue-300 {
  5694. background-color: #8BC2F8 !important; }
  5695. .text-blue-300 {
  5696. border-color: #8BC2F8 !important;
  5697. color: #8BC2F8 !important; }
  5698. .bg-blue-400 {
  5699. background-color: #5FA7F3 !important; }
  5700. .text-blue-400 {
  5701. border-color: #5FA7F3 !important;
  5702. color: #5FA7F3 !important; }
  5703. .bg-blue-500 {
  5704. background-color: #3C91EC !important; }
  5705. .text-blue-500 {
  5706. border-color: #3C91EC !important;
  5707. color: #3C91EC !important; }
  5708. .bg-blue-600 {
  5709. background-color: #1B74D9 !important; }
  5710. .text-blue-600 {
  5711. border-color: #1B74D9 !important;
  5712. color: #1B74D9 !important; }
  5713. .bg-blue-700 {
  5714. background-color: #1E5898 !important; }
  5715. .text-blue-700 {
  5716. border-color: #1E5898 !important;
  5717. color: #1E5898 !important; }
  5718. .bg-blue-800 {
  5719. background-color: #1E4C80 !important; }
  5720. .text-blue-800 {
  5721. border-color: #1E4C80 !important;
  5722. color: #1E4C80 !important; }
  5723. .bg-blue-900 {
  5724. background-color: #1C3C63 !important; }
  5725. .text-blue-900 {
  5726. border-color: #1C3C63 !important;
  5727. color: #1C3C63 !important; }
  5728. .bg-indigo-100 {
  5729. background-color: #E2EFFF !important; }
  5730. .text-indigo-100 {
  5731. border-color: #E2EFFF !important;
  5732. color: #E2EFFF !important; }
  5733. .bg-indigo-200 {
  5734. background-color: #C4DBFD !important; }
  5735. .text-indigo-200 {
  5736. border-color: #C4DBFD !important;
  5737. color: #C4DBFD !important; }
  5738. .bg-indigo-300 {
  5739. background-color: #A1BEFA !important; }
  5740. .text-indigo-300 {
  5741. border-color: #A1BEFA !important;
  5742. color: #A1BEFA !important; }
  5743. .bg-indigo-400 {
  5744. background-color: #89A3F7 !important; }
  5745. .text-indigo-400 {
  5746. border-color: #89A3F7 !important;
  5747. color: #89A3F7 !important; }
  5748. .bg-indigo-500 {
  5749. background-color: #6C83E9 !important; }
  5750. .text-indigo-500 {
  5751. border-color: #6C83E9 !important;
  5752. color: #6C83E9 !important; }
  5753. .bg-indigo-600 {
  5754. background-color: #5966D9 !important; }
  5755. .text-indigo-600 {
  5756. border-color: #5966D9 !important;
  5757. color: #5966D9 !important; }
  5758. .bg-indigo-700 {
  5759. background-color: #4C4F9E !important; }
  5760. .text-indigo-700 {
  5761. border-color: #4C4F9E !important;
  5762. color: #4C4F9E !important; }
  5763. .bg-indigo-800 {
  5764. background-color: #42417B !important; }
  5765. .text-indigo-800 {
  5766. border-color: #42417B !important;
  5767. color: #42417B !important; }
  5768. .bg-indigo-900 {
  5769. background-color: #3A3462 !important; }
  5770. .text-indigo-900 {
  5771. border-color: #3A3462 !important;
  5772. color: #3A3462 !important; }
  5773. .bg-purple-100 {
  5774. background-color: #F0E9FB !important; }
  5775. .text-purple-100 {
  5776. border-color: #F0E9FB !important;
  5777. color: #F0E9FB !important; }
  5778. .bg-purple-200 {
  5779. background-color: #E2D4F8 !important; }
  5780. .text-purple-200 {
  5781. border-color: #E2D4F8 !important;
  5782. color: #E2D4F8 !important; }
  5783. .bg-purple-300 {
  5784. background-color: #CBB2F6 !important; }
  5785. .text-purple-300 {
  5786. border-color: #CBB2F6 !important;
  5787. color: #CBB2F6 !important; }
  5788. .bg-purple-400 {
  5789. background-color: #B89AF4 !important; }
  5790. .text-purple-400 {
  5791. border-color: #B89AF4 !important;
  5792. color: #B89AF4 !important; }
  5793. .bg-purple-500 {
  5794. background-color: #9C73ED !important; }
  5795. .text-purple-500 {
  5796. border-color: #9C73ED !important;
  5797. color: #9C73ED !important; }
  5798. .bg-purple-600 {
  5799. background-color: #8256E1 !important; }
  5800. .text-purple-600 {
  5801. border-color: #8256E1 !important;
  5802. color: #8256E1 !important; }
  5803. .bg-purple-700 {
  5804. background-color: #6340B6 !important; }
  5805. .text-purple-700 {
  5806. border-color: #6340B6 !important;
  5807. color: #6340B6 !important; }
  5808. .bg-purple-800 {
  5809. background-color: #50388E !important; }
  5810. .text-purple-800 {
  5811. border-color: #50388E !important;
  5812. color: #50388E !important; }
  5813. .bg-purple-900 {
  5814. background-color: #413170 !important; }
  5815. .text-purple-900 {
  5816. border-color: #413170 !important;
  5817. color: #413170 !important; }
  5818. .bg-gray-000 {
  5819. background-color: #f8f9fa !important; }
  5820. .text-gray-000 {
  5821. border-color: #f8f9fa !important;
  5822. color: #f8f9fa !important; }
  5823. .bg-gray-100 {
  5824. background-color: #f1f3f5 !important; }
  5825. .text-gray-100 {
  5826. border-color: #f1f3f5 !important;
  5827. color: #f1f3f5 !important; }
  5828. .bg-gray-200 {
  5829. background-color: #e9ecef !important; }
  5830. .text-gray-200 {
  5831. border-color: #e9ecef !important;
  5832. color: #e9ecef !important; }
  5833. .bg-gray-300 {
  5834. background-color: #dee2e6 !important; }
  5835. .text-gray-300 {
  5836. border-color: #dee2e6 !important;
  5837. color: #dee2e6 !important; }
  5838. .bg-gray-400 {
  5839. background-color: #ced4da !important; }
  5840. .text-gray-400 {
  5841. border-color: #ced4da !important;
  5842. color: #ced4da !important; }
  5843. .bg-gray-500 {
  5844. background-color: #adb5bd !important; }
  5845. .text-gray-500 {
  5846. border-color: #adb5bd !important;
  5847. color: #adb5bd !important; }
  5848. .bg-gray-600 {
  5849. background-color: #868e96 !important; }
  5850. .text-gray-600 {
  5851. border-color: #868e96 !important;
  5852. color: #868e96 !important; }
  5853. .bg-gray-700 {
  5854. background-color: #495057 !important; }
  5855. .text-gray-700 {
  5856. border-color: #495057 !important;
  5857. color: #495057 !important; }
  5858. .bg-gray-800 {
  5859. background-color: #343a40 !important; }
  5860. .text-gray-800 {
  5861. border-color: #343a40 !important;
  5862. color: #343a40 !important; }
  5863. .bg-gray-900 {
  5864. background-color: #212529 !important; }
  5865. .text-gray-900 {
  5866. border-color: #212529 !important;
  5867. color: #212529 !important; }
  5868. /*
  5869. Group selectors that share common styling.
  5870. */
  5871. /*
  5872. Functions
  5873. */
  5874. /*
  5875. Converts a given hex value to RGB.
  5876. */
  5877. /*
  5878. Generates delimited class name prefix.
  5879. */
  5880. /*
  5881. Fetch feature flag for different utility class types for generating viewport classes (e.g., u-flex-sm, u-flex-md, etc.).
  5882. */
  5883. /* Spacing */
  5884. /* Fonts */
  5885. /* Grid Count */
  5886. /* Grid Percents */
  5887. /* Tab Sizes */
  5888. /* Media Queries */
  5889. /* Smaller than the defined pixels are the dimensions for that range */
  5890. /* Color scheme for Cirrus */
  5891. /* v2 Colors */
  5892. :root {
  5893. /* v1 Colors */
  5894. --cirrus-fg: #374054;
  5895. --cirrus-bg: #fff;
  5896. --cirrus-primary: #f03d4d;
  5897. --cirrus-primary-rgb: 240, 61, 77;
  5898. --cirrus-primary-light: #ffdadd;
  5899. --cirrus-accent-hover: #d62939;
  5900. --cirrus-accent-border: #c21b2b;
  5901. --cirrus-light: #f6f9fc;
  5902. --cirrus-light-gray: #f8f9fa;
  5903. --cirrus-gray: #d5d7dc;
  5904. --cirrus-dark-gray: #909090;
  5905. --cirrus-dark: #363636;
  5906. --cirrus-link: #5e5cc7;
  5907. --cirrus-link-dark: #4643e2;
  5908. --cirrus-info: #2972fa;
  5909. --cirrus-success: #0dd157;
  5910. --cirrus-success-rgb: 13, 209, 87;
  5911. --cirrus-warning: #fab633;
  5912. --cirrus-danger: #fb4143;
  5913. --cirrus-light-hover: #d0e0ef;
  5914. --cirrus-dark-hover: #505050;
  5915. --cirrus-info-hover: #1062f9;
  5916. --cirrus-link-hover: #f8f7ff;
  5917. --cirrus-success-hover: #0cb94d;
  5918. --cirrus-warning-hover: #f9ad1a;
  5919. --cirrus-danger-hover: #eb0507;
  5920. --cirrus-select-bg: rgba(0, 161, 255, 0.2);
  5921. --cirrus-code-bg: var(--cirrus-primary-light);
  5922. --cirrus-code-fg: #dc4753;
  5923. --cirrus-form-group-bg: var(--cirrus-light-gray);
  5924. --cirrus-form-group-fg: var(--cirrus-dark-gray);
  5925. --toast-primary-bg: rgba(49, 59, 80, 0.9);
  5926. --animation-duration: 0.2s;
  5927. --focus-opacity: 0.55;
  5928. --space-size: 0.5rem;
  5929. --font-size-xs: 0.7rem;
  5930. --font-size-s: 0.85rem;
  5931. --font-size-m: 1rem;
  5932. --font-size-l: 1.35rem;
  5933. --font-size-xl: 1.75rem; }
  5934. /* PAGINATION */
  5935. /* Parent contianer for page navigation */
  5936. .pagination {
  5937. display: flex;
  5938. display: -ms-flexbox;
  5939. /* Use for the major pagination meant to display about 2 items */
  5940. /* Bordered pagination */ }
  5941. .pagination .pagination-item {
  5942. -webkit-flex: 1 0 50%;
  5943. /* Flex to fill */
  5944. -ms-flex: 1 0 50%;
  5945. flex: 1 0 50%;
  5946. margin: 1rem 0.1rem;
  5947. transition: all 0.3s;
  5948. /* Pagination Item */
  5949. /* Used to display many pagination items */ }
  5950. .pagination .pagination-item:hover p,
  5951. .pagination .pagination-item:hover h1, .pagination .pagination-item:hover h2, .pagination .pagination-item:hover h3, .pagination .pagination-item:hover h4, .pagination .pagination-item:hover h5, .pagination .pagination-item:hover h6 {
  5952. transition: all 0.3s;
  5953. color: var(--cirrus-primary); }
  5954. .pagination .pagination-item:not(.selected):hover *:not([disabled]):not(.disabled):not(.ellipses) {
  5955. transition: all 0.3s;
  5956. color: var(--cirrus-primary); }
  5957. .pagination .pagination-item.pagination-next {
  5958. text-align: right; }
  5959. .pagination .pagination-item.pagination-prev {
  5960. text-align: left; }
  5961. .pagination .pagination-item a {
  5962. color: #495057; }
  5963. .pagination .pagination-item a[disabled], .pagination .pagination-item a.disabled {
  5964. cursor: pointer;
  5965. opacity: 0.5;
  5966. pointer-events: none;
  5967. user-select: none; }
  5968. .pagination .pagination-item .pagination-item-subtitle {
  5969. opacity: 0.7;
  5970. margin: 0;
  5971. /* Needed to override style after formatting paragraph update */ }
  5972. .pagination .pagination-item.short {
  5973. border-radius: 0.1rem;
  5974. margin: 0.2rem 0;
  5975. -webkit-flex: 0;
  5976. /* Flex to fill */
  5977. -ms-flex: 0;
  5978. flex: 0;
  5979. /* Color the selected pagination item with accent color */ }
  5980. .pagination .pagination-item.short:first-child a {
  5981. border-top-left-radius: 0.25rem;
  5982. border-bottom-left-radius: 0.25rem; }
  5983. .pagination .pagination-item.short:last-child a {
  5984. border-top-right-radius: 0.25rem;
  5985. border-bottom-right-radius: 0.25rem; }
  5986. .pagination .pagination-item.short:not([disabled]):not(.disabled):not(.selected):hover {
  5987. background-color: rgba(0, 0, 0, 0.07); }
  5988. .pagination .pagination-item.short.selected {
  5989. background-color: var(--cirrus-primary);
  5990. color: #fff; }
  5991. .pagination .pagination-item.short.selected a {
  5992. color: #fff; }
  5993. .pagination .pagination-item.short.ellipses {
  5994. color: #adb5bd;
  5995. pointer-events: none; }
  5996. .pagination .pagination-item.short a {
  5997. display: inline-block;
  5998. line-height: 1.25;
  5999. padding: 0.5rem 0.75rem; }
  6000. .pagination.pagination-bordered .pagination-item.short a {
  6001. border: 1px solid #dee2e6;
  6002. border-radius: 0;
  6003. margin-left: -1px; }
  6004. /*
  6005. Functions
  6006. */
  6007. /*
  6008. Converts a given hex value to RGB.
  6009. */
  6010. /*
  6011. Generates delimited class name prefix.
  6012. */
  6013. /*
  6014. Fetch feature flag for different utility class types for generating viewport classes (e.g., u-flex-sm, u-flex-md, etc.).
  6015. */
  6016. /* Spacing */
  6017. /* Fonts */
  6018. /* Grid Count */
  6019. /* Grid Percents */
  6020. /* Tab Sizes */
  6021. /* Media Queries */
  6022. /* Smaller than the defined pixels are the dimensions for that range */
  6023. /* Color scheme for Cirrus */
  6024. /* v2 Colors */
  6025. :root {
  6026. /* v1 Colors */
  6027. --cirrus-fg: #374054;
  6028. --cirrus-bg: #fff;
  6029. --cirrus-primary: #f03d4d;
  6030. --cirrus-primary-rgb: 240, 61, 77;
  6031. --cirrus-primary-light: #ffdadd;
  6032. --cirrus-accent-hover: #d62939;
  6033. --cirrus-accent-border: #c21b2b;
  6034. --cirrus-light: #f6f9fc;
  6035. --cirrus-light-gray: #f8f9fa;
  6036. --cirrus-gray: #d5d7dc;
  6037. --cirrus-dark-gray: #909090;
  6038. --cirrus-dark: #363636;
  6039. --cirrus-link: #5e5cc7;
  6040. --cirrus-link-dark: #4643e2;
  6041. --cirrus-info: #2972fa;
  6042. --cirrus-success: #0dd157;
  6043. --cirrus-success-rgb: 13, 209, 87;
  6044. --cirrus-warning: #fab633;
  6045. --cirrus-danger: #fb4143;
  6046. --cirrus-light-hover: #d0e0ef;
  6047. --cirrus-dark-hover: #505050;
  6048. --cirrus-info-hover: #1062f9;
  6049. --cirrus-link-hover: #f8f7ff;
  6050. --cirrus-success-hover: #0cb94d;
  6051. --cirrus-warning-hover: #f9ad1a;
  6052. --cirrus-danger-hover: #eb0507;
  6053. --cirrus-select-bg: rgba(0, 161, 255, 0.2);
  6054. --cirrus-code-bg: var(--cirrus-primary-light);
  6055. --cirrus-code-fg: #dc4753;
  6056. --cirrus-form-group-bg: var(--cirrus-light-gray);
  6057. --cirrus-form-group-fg: var(--cirrus-dark-gray);
  6058. --toast-primary-bg: rgba(49, 59, 80, 0.9);
  6059. --animation-duration: 0.2s;
  6060. --focus-opacity: 0.55;
  6061. --space-size: 0.5rem;
  6062. --font-size-xs: 0.7rem;
  6063. --font-size-s: 0.85rem;
  6064. --font-size-m: 1rem;
  6065. --font-size-l: 1.35rem;
  6066. --font-size-xl: 1.75rem; }
  6067. /* PLACEHOLDER */
  6068. /* Designed to be embedded in any parent container as placeholder when content is absent. */
  6069. .placeholder {
  6070. background-color: rgba(222, 226, 230, 0.5);
  6071. border-radius: 3px;
  6072. text-align: center;
  6073. padding: 3rem 2rem;
  6074. color: #495057;
  6075. /* Lighter than original text color */
  6076. display: block;
  6077. /* Place buttons here for the placeholder */ }
  6078. .placeholder .placeholder-icon {
  6079. text-align: center; }
  6080. .placeholder .placeholder-title,
  6081. .placeholder .placeholder-subtitle {
  6082. margin: 1rem auto; }
  6083. .placeholder .placeholder-subtitle {
  6084. opacity: 0.7;
  6085. margin: 0; }
  6086. .placeholder .placeholder-commands {
  6087. margin-top: 1rem; }
  6088. /*
  6089. Functions
  6090. */
  6091. /*
  6092. Converts a given hex value to RGB.
  6093. */
  6094. /*
  6095. Generates delimited class name prefix.
  6096. */
  6097. /*
  6098. Fetch feature flag for different utility class types for generating viewport classes (e.g., u-flex-sm, u-flex-md, etc.).
  6099. */
  6100. /* Spacing */
  6101. /* Fonts */
  6102. /* Grid Count */
  6103. /* Grid Percents */
  6104. /* Tab Sizes */
  6105. /* Media Queries */
  6106. /* Smaller than the defined pixels are the dimensions for that range */
  6107. /* Color scheme for Cirrus */
  6108. /* v2 Colors */
  6109. :root {
  6110. /* v1 Colors */
  6111. --cirrus-fg: #374054;
  6112. --cirrus-bg: #fff;
  6113. --cirrus-primary: #f03d4d;
  6114. --cirrus-primary-rgb: 240, 61, 77;
  6115. --cirrus-primary-light: #ffdadd;
  6116. --cirrus-accent-hover: #d62939;
  6117. --cirrus-accent-border: #c21b2b;
  6118. --cirrus-light: #f6f9fc;
  6119. --cirrus-light-gray: #f8f9fa;
  6120. --cirrus-gray: #d5d7dc;
  6121. --cirrus-dark-gray: #909090;
  6122. --cirrus-dark: #363636;
  6123. --cirrus-link: #5e5cc7;
  6124. --cirrus-link-dark: #4643e2;
  6125. --cirrus-info: #2972fa;
  6126. --cirrus-success: #0dd157;
  6127. --cirrus-success-rgb: 13, 209, 87;
  6128. --cirrus-warning: #fab633;
  6129. --cirrus-danger: #fb4143;
  6130. --cirrus-light-hover: #d0e0ef;
  6131. --cirrus-dark-hover: #505050;
  6132. --cirrus-info-hover: #1062f9;
  6133. --cirrus-link-hover: #f8f7ff;
  6134. --cirrus-success-hover: #0cb94d;
  6135. --cirrus-warning-hover: #f9ad1a;
  6136. --cirrus-danger-hover: #eb0507;
  6137. --cirrus-select-bg: rgba(0, 161, 255, 0.2);
  6138. --cirrus-code-bg: var(--cirrus-primary-light);
  6139. --cirrus-code-fg: #dc4753;
  6140. --cirrus-form-group-bg: var(--cirrus-light-gray);
  6141. --cirrus-form-group-fg: var(--cirrus-dark-gray);
  6142. --toast-primary-bg: rgba(49, 59, 80, 0.9);
  6143. --animation-duration: 0.2s;
  6144. --focus-opacity: 0.55;
  6145. --space-size: 0.5rem;
  6146. --font-size-xs: 0.7rem;
  6147. --font-size-s: 0.85rem;
  6148. --font-size-m: 1rem;
  6149. --font-size-l: 1.35rem;
  6150. --font-size-xl: 1.75rem; }
  6151. /* Spacing */
  6152. /* Fonts */
  6153. /* Grid Count */
  6154. /* Grid Percents */
  6155. /* Tab Sizes */
  6156. /* Media Queries */
  6157. /* Smaller than the defined pixels are the dimensions for that range */
  6158. /* TABS AND TAB CONTAINER */
  6159. .tab-container {
  6160. display: -webkit-box;
  6161. display: -ms-flexbox;
  6162. display: flex;
  6163. -webkit-box-pack: justify;
  6164. -ms-flex-pack: justify;
  6165. justify-content: space-between;
  6166. overflow: hidden;
  6167. overflow-x: auto;
  6168. /* Allow scrollbar to be visible if the width of the tabs exceeds container */
  6169. user-select: none;
  6170. white-space: nowrap;
  6171. -webkit-box-align: stretch;
  6172. -ms-flex-align: stretch;
  6173. align-items: stretch;
  6174. font-size: var(--font-size-s);
  6175. /* Shift tabs to the center */
  6176. /* Shift tabs to the right */
  6177. /* Depth tab styles */
  6178. /* Classic tab styles */
  6179. /* Tabs that fill the width */
  6180. /* Different tab sizes */
  6181. /* Tabs are embedded inside an unordered list */
  6182. /* Font Awesome Integration */
  6183. /* Left icon */
  6184. /* Right icon */ }
  6185. .tab-container.tabs-center ul {
  6186. justify-content: center;
  6187. -webkit-box-pack: center;
  6188. -ms-flex-pack: center; }
  6189. .tab-container.tabs-right ul {
  6190. -webkit-box-pack: end;
  6191. -ms-flex-pack: end;
  6192. justify-content: flex-end; }
  6193. .tab-container.tabs-depth ul {
  6194. box-shadow: 0 2px 3px rgba(134, 142, 150, 0.15);
  6195. border-bottom: 0; }
  6196. .tab-container.tabs-classic ul {
  6197. border-bottom-color: #dee2e6;
  6198. border-bottom-style: solid;
  6199. border-bottom-width: 1px;
  6200. border-radius: 3px 3px 0 0;
  6201. /* Only round the top left and right corners */
  6202. transition: all 0.3s; }
  6203. .tab-container.tabs-classic ul li:not(.selected) a:hover,
  6204. .tab-container.tabs-classic ul li:not(.selected) .tab-item-content:hover {
  6205. background-color: #f1f3f5;
  6206. transition: all 0.3s; }
  6207. .tab-container.tabs-classic ul li.selected a,
  6208. .tab-container.tabs-classic ul li.selected .tab-item-content {
  6209. color: var(--cirrus-primary);
  6210. border-color: #dee2e6;
  6211. border-bottom-color: transparent !important; }
  6212. .tab-container.tabs-classic ul li a,
  6213. .tab-container.tabs-classic ul li .tab-item-content {
  6214. border: 1px solid transparent;
  6215. border-bottom-color: #dee2e6;
  6216. border-radius: 3px 3px 0 0;
  6217. cursor: pointer;
  6218. transition: all 0.3s; }
  6219. .tab-container.tabs-fill {
  6220. /* Override the -webkit-box display that sizes tab items based on text */ }
  6221. .tab-container.tabs-fill ul {
  6222. display: flex;
  6223. /* Equal size tabs */ }
  6224. .tab-container.tabs-fill li {
  6225. -webkit-box-flex: 1;
  6226. -ms-flex-positive: 1;
  6227. flex-grow: 1;
  6228. -ms-flex-negative: 0;
  6229. flex-shrink: 0;
  6230. /* Disable shrinking to original width */
  6231. flex-basis: 0; }
  6232. .tab-container.tabs-xsmall {
  6233. font-size: 0.6rem; }
  6234. .tab-container.tabs-small {
  6235. font-size: 0.75rem; }
  6236. .tab-container.tabs-large {
  6237. font-size: 1.25rem; }
  6238. .tab-container.tabs-xlarge {
  6239. font-size: 1.5rem; }
  6240. .tab-container ul {
  6241. display: flex;
  6242. -webkit-box-pack: start;
  6243. -ms-flex-pack: start;
  6244. justify-content: flex-start;
  6245. /* Move tab items to left side */
  6246. margin: 0.5rem;
  6247. /* Override the behavior for standard ul and add equal padding */
  6248. border-bottom: 1px solid #e9ecef;
  6249. /* Bottom border of tabs */
  6250. flex-grow: 1;
  6251. list-style: none;
  6252. padding-inline-start: 0; }
  6253. .tab-container li {
  6254. display: block;
  6255. /* Keep the tabs from extending too far */
  6256. cursor: pointer;
  6257. margin: 0;
  6258. text-align: center; }
  6259. .tab-container li:hover a,
  6260. .tab-container li:hover .tab-item-content {
  6261. border-bottom-color: rgba(240, 61, 77, 0.6);
  6262. transition: all 0.3s; }
  6263. .tab-container li.selected a,
  6264. .tab-container li.selected .tab-item-content {
  6265. border-bottom-color: var(--cirrus-primary);
  6266. color: var(--cirrus-primary);
  6267. border-width: 2px;
  6268. transition: all 0.3s; }
  6269. .tab-container li a,
  6270. .tab-container li .tab-item-content {
  6271. display: -webkit-box;
  6272. display: -ms-flexbox;
  6273. display: flex;
  6274. -webkit-box-align: center;
  6275. -ms-flex-align: center;
  6276. align-items: center;
  6277. border-bottom: 1px solid #e9ecef;
  6278. -webkit-box-pack: center;
  6279. -ms-flex-pack: center;
  6280. justify-content: center;
  6281. padding: 0.5rem 1rem;
  6282. transition: all 0.3s;
  6283. color: var(--cirrus-fg);
  6284. border-width: 2px;
  6285. margin-bottom: -1px;
  6286. /* Get rid of any remaining border lines */
  6287. background-color: var(--cirrus-bg); }
  6288. .tab-container .icon:first-child {
  6289. margin-right: 0.75rem; }
  6290. .tab-container .icon:last-child {
  6291. margin-left: 0.75rem; }
  6292. /*
  6293. Functions
  6294. */
  6295. /*
  6296. Converts a given hex value to RGB.
  6297. */
  6298. /*
  6299. Generates delimited class name prefix.
  6300. */
  6301. /*
  6302. Fetch feature flag for different utility class types for generating viewport classes (e.g., u-flex-sm, u-flex-md, etc.).
  6303. */
  6304. /* Spacing */
  6305. /* Fonts */
  6306. /* Grid Count */
  6307. /* Grid Percents */
  6308. /* Tab Sizes */
  6309. /* Media Queries */
  6310. /* Smaller than the defined pixels are the dimensions for that range */
  6311. /* Color scheme for Cirrus */
  6312. /* v2 Colors */
  6313. :root {
  6314. /* v1 Colors */
  6315. --cirrus-fg: #374054;
  6316. --cirrus-bg: #fff;
  6317. --cirrus-primary: #f03d4d;
  6318. --cirrus-primary-rgb: 240, 61, 77;
  6319. --cirrus-primary-light: #ffdadd;
  6320. --cirrus-accent-hover: #d62939;
  6321. --cirrus-accent-border: #c21b2b;
  6322. --cirrus-light: #f6f9fc;
  6323. --cirrus-light-gray: #f8f9fa;
  6324. --cirrus-gray: #d5d7dc;
  6325. --cirrus-dark-gray: #909090;
  6326. --cirrus-dark: #363636;
  6327. --cirrus-link: #5e5cc7;
  6328. --cirrus-link-dark: #4643e2;
  6329. --cirrus-info: #2972fa;
  6330. --cirrus-success: #0dd157;
  6331. --cirrus-success-rgb: 13, 209, 87;
  6332. --cirrus-warning: #fab633;
  6333. --cirrus-danger: #fb4143;
  6334. --cirrus-light-hover: #d0e0ef;
  6335. --cirrus-dark-hover: #505050;
  6336. --cirrus-info-hover: #1062f9;
  6337. --cirrus-link-hover: #f8f7ff;
  6338. --cirrus-success-hover: #0cb94d;
  6339. --cirrus-warning-hover: #f9ad1a;
  6340. --cirrus-danger-hover: #eb0507;
  6341. --cirrus-select-bg: rgba(0, 161, 255, 0.2);
  6342. --cirrus-code-bg: var(--cirrus-primary-light);
  6343. --cirrus-code-fg: #dc4753;
  6344. --cirrus-form-group-bg: var(--cirrus-light-gray);
  6345. --cirrus-form-group-fg: var(--cirrus-dark-gray);
  6346. --toast-primary-bg: rgba(49, 59, 80, 0.9);
  6347. --animation-duration: 0.2s;
  6348. --focus-opacity: 0.55;
  6349. --space-size: 0.5rem;
  6350. --font-size-xs: 0.7rem;
  6351. --font-size-s: 0.85rem;
  6352. --font-size-m: 1rem;
  6353. --font-size-l: 1.35rem;
  6354. --font-size-xl: 1.75rem; }
  6355. /* TAGS */
  6356. .tag {
  6357. align-items: center;
  6358. background-color: var(--cirrus-light);
  6359. border-radius: 0.25rem;
  6360. color: var(--cirrus-fg);
  6361. display: inline-flex;
  6362. font-size: 75%;
  6363. line-height: 1.5;
  6364. min-height: 1.5rem;
  6365. padding: 0 0.5rem;
  6366. white-space: nowrap;
  6367. /* Delete button for tag */
  6368. /* Draw the delete button */
  6369. /* TAG THEMES */
  6370. /* Tag close button */ }
  6371. .tag.tag--large {
  6372. font-size: 120%;
  6373. padding: 0.25rem 0.75rem; }
  6374. .tag.tag--xlarge {
  6375. font-size: 150%;
  6376. padding: 0.5rem 1.25rem; }
  6377. .tag.tag--rounded {
  6378. border-radius: 290486px; }
  6379. .tag.tag__delete {
  6380. background-color: rgba(10, 10, 10, 0.2);
  6381. border-radius: 290486px;
  6382. cursor: pointer;
  6383. pointer-events: auto;
  6384. display: inline-block;
  6385. height: 16px;
  6386. max-height: 16px;
  6387. max-width: 16px;
  6388. min-height: 16px;
  6389. min-width: 16px;
  6390. position: relative; }
  6391. .tag.tag__delete:hover {
  6392. background-color: rgba(10, 10, 10, 0.3); }
  6393. .tag.tag__delete::before, .tag.tag__delete::after {
  6394. background-color: var(--cirrus-light);
  6395. content: '';
  6396. display: block;
  6397. left: 50%;
  6398. position: absolute;
  6399. top: 50%;
  6400. -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  6401. transform: translateX(-50%) translateY(-50%) rotate(45deg);
  6402. -webkit-transform-origin: center center;
  6403. transform-origin: center center; }
  6404. .tag.tag__delete::before {
  6405. height: 1px;
  6406. width: 50%; }
  6407. .tag.tag__delete::after {
  6408. height: 50%;
  6409. width: 1px; }
  6410. .tag.tag__delete {
  6411. margin-left: 0.25rem;
  6412. margin-right: -0.125rem; }
  6413. .tag.tag--white {
  6414. background-color: #fff;
  6415. color: var(--cirrus-dark); }
  6416. .tag.tag--black {
  6417. background-color: #000;
  6418. color: #fff; }
  6419. .tag.tag--primary {
  6420. background-color: var(--cirrus-primary);
  6421. color: #fff; }
  6422. .tag.tag--primary {
  6423. background-color: #f03d4d;
  6424. color: #fff;
  6425. cursor: pointer; }
  6426. .tag.tag--primary.tag__close-btn:hover {
  6427. background-color: #ee2537; }
  6428. .tag.tag--primary.tag__close-btn:active {
  6429. background-color: #e81225; }
  6430. .tag.tag--gray {
  6431. background-color: #d5d7dc;
  6432. color: #fff;
  6433. cursor: pointer; }
  6434. .tag.tag--gray.tag__close-btn:hover {
  6435. background-color: #c7cad0; }
  6436. .tag.tag--gray.tag__close-btn:active {
  6437. background-color: #b9bdc5; }
  6438. .tag.tag--dark {
  6439. background-color: #363636;
  6440. color: #fff;
  6441. cursor: pointer; }
  6442. .tag.tag--dark.tag__close-btn:hover {
  6443. background-color: #292929; }
  6444. .tag.tag--dark.tag__close-btn:active {
  6445. background-color: #1d1d1d; }
  6446. .tag.tag--link {
  6447. background-color: #5e5cc7;
  6448. color: #fff;
  6449. cursor: pointer; }
  6450. .tag.tag--link.tag__close-btn:hover {
  6451. background-color: #4b49c0; }
  6452. .tag.tag--link.tag__close-btn:active {
  6453. background-color: #403db3; }
  6454. .tag.tag--info {
  6455. background-color: #2972fa;
  6456. color: #fff;
  6457. cursor: pointer; }
  6458. .tag.tag--info.tag__close-btn:hover {
  6459. background-color: #1062f9; }
  6460. .tag.tag--info.tag__close-btn:active {
  6461. background-color: #0555eb; }
  6462. .tag.tag--success {
  6463. background-color: #0dd157;
  6464. color: #fff;
  6465. cursor: pointer; }
  6466. .tag.tag--success.tag__close-btn:hover {
  6467. background-color: #0cb94d; }
  6468. .tag.tag--success.tag__close-btn:active {
  6469. background-color: #0aa143; }
  6470. .tag.tag--warning {
  6471. background-color: #fab633;
  6472. color: #fff;
  6473. cursor: pointer; }
  6474. .tag.tag--warning.tag__close-btn:hover {
  6475. background-color: #f9ad1a; }
  6476. .tag.tag--warning.tag__close-btn:active {
  6477. background-color: #f4a306; }
  6478. .tag.tag--danger {
  6479. background-color: #fb4143;
  6480. color: #fff;
  6481. cursor: pointer; }
  6482. .tag.tag--danger.tag__close-btn:hover {
  6483. background-color: #fa282a; }
  6484. .tag.tag--danger.tag__close-btn:active {
  6485. background-color: #fa0f12; }
  6486. .tag.tag__close-btn {
  6487. padding: 0;
  6488. position: relative;
  6489. width: 1.5rem; }
  6490. .tag.tag__close-btn::before, .tag.tag__close-btn::after {
  6491. background-color: var(--cirrus-fg);
  6492. content: '';
  6493. display: block;
  6494. left: 50%;
  6495. top: 50%;
  6496. position: absolute;
  6497. -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  6498. transform: translateX(-50%) translateY(-50%) rotate(45deg);
  6499. -webkit-transform-origin: center center;
  6500. transform-origin: center center; }
  6501. .tag.tag__close-btn::before {
  6502. height: 1px;
  6503. width: 50%; }
  6504. .tag.tag__close-btn::after {
  6505. height: 50%;
  6506. width: 1px; }
  6507. /* TAG CONTAINER */
  6508. .tag-container {
  6509. /* Add margin in between tag containers */
  6510. /* Used for grouping tags together */
  6511. /* Tag positioning */ }
  6512. .tag-container:not(:last-child) {
  6513. margin-bottom: 1rem; }
  6514. .tag-container.group-tags {
  6515. --tag-first-border-radius: 0.25rem 0 0 0.25rem;
  6516. --tag-last-border-radius: 0 0.25rem 0.25rem 0;
  6517. display: flex;
  6518. flex-wrap: wrap; }
  6519. .tag-container.group-tags .tag {
  6520. margin-right: 0 !important; }
  6521. .tag-container.group-tags .tag:first-child {
  6522. border-radius: var(--tag-first-border-radius); }
  6523. .tag-container.group-tags .tag:not(:first-child):not(:last-child) {
  6524. border-radius: 0; }
  6525. .tag-container.group-tags .tag:last-child {
  6526. border-radius: var(--tag-last-border-radius); }
  6527. .tag-container.group-tags.group-tags--rounded {
  6528. --tag-first-border-radius: 290486px 0 0 290486px;
  6529. --tag-last-border-radius: 0 290486px 290486px 0; }
  6530. .tag-container.tag-container--centered {
  6531. justify-content: center; }
  6532. .tag-container.tag-container--centered .tag {
  6533. margin: 0 0.25rem; }
  6534. .tag-container.tag-container--right {
  6535. justify-content: flex-end; }
  6536. .tag-container.tag-container--right .tag:not(:first-child) {
  6537. margin-left: 0.5rem; }
  6538. .tag-container.tag-container--right .tag:not(:last-child) {
  6539. margin-right: 0; }
  6540. .tag-container .tag {
  6541. margin-bottom: 0.5rem; }
  6542. .tag-container .tag:not(:last-child) {
  6543. margin-right: 0.5rem; }
  6544. /* MISC */
  6545. a.tag:hover {
  6546. text-decoration: underline; }
  6547. /* TILES */
  6548. .tile {
  6549. display: flex;
  6550. display: -ms-flexbox;
  6551. align-content: space-between;
  6552. /* Ensure space between child elements of card tile */
  6553. -webkit-align-content: space-between;
  6554. -ms-flex-line-pack: justify;
  6555. /* Evenly distribute lines */
  6556. overflow: inherit;
  6557. /* Prevent overflowing when unnecessary */
  6558. /* Override the default behavior where buttons display as blocks */
  6559. /* Add spacing between the elements in between */ }
  6560. .tile p {
  6561. font-size: 0.95rem;
  6562. /* Base font size is 1rem */ }
  6563. .tile .tile__icon,
  6564. .tile .tile__buttons {
  6565. flex: 0 0 auto; }
  6566. .tile .tile__buttons button,
  6567. .tile .tile__buttons .btn,
  6568. .tile .tile__buttons [type="submit"] {
  6569. display: inline-block;
  6570. margin: 0.1rem;
  6571. /* Reduce space used by buttons, default .5rem */ }
  6572. .tile .tile__container {
  6573. flex: 1 1 auto;
  6574. -webkit-flex: 1 1 auto;
  6575. -ms-flex: 1 1 auto; }
  6576. .tile .tile__container:not(:first-child) {
  6577. padding-left: 1rem; }
  6578. .tile .tile__container:not(:last-child) {
  6579. padding-right: 1rem; }
  6580. .tile .tile__title {
  6581. line-height: 1.5rem;
  6582. font-weight: bolder;
  6583. margin: 0.1rem auto; }
  6584. .tile .tile__subtitle {
  6585. line-height: 1.25rem;
  6586. opacity: 0.7;
  6587. margin: 0.1rem auto; }
  6588. /*
  6589. Functions
  6590. */
  6591. /*
  6592. Converts a given hex value to RGB.
  6593. */
  6594. /*
  6595. Generates delimited class name prefix.
  6596. */
  6597. /*
  6598. Fetch feature flag for different utility class types for generating viewport classes (e.g., u-flex-sm, u-flex-md, etc.).
  6599. */
  6600. /* Spacing */
  6601. /* Fonts */
  6602. /* Grid Count */
  6603. /* Grid Percents */
  6604. /* Tab Sizes */
  6605. /* Media Queries */
  6606. /* Smaller than the defined pixels are the dimensions for that range */
  6607. /* Color scheme for Cirrus */
  6608. /* v2 Colors */
  6609. :root {
  6610. /* v1 Colors */
  6611. --cirrus-fg: #374054;
  6612. --cirrus-bg: #fff;
  6613. --cirrus-primary: #f03d4d;
  6614. --cirrus-primary-rgb: 240, 61, 77;
  6615. --cirrus-primary-light: #ffdadd;
  6616. --cirrus-accent-hover: #d62939;
  6617. --cirrus-accent-border: #c21b2b;
  6618. --cirrus-light: #f6f9fc;
  6619. --cirrus-light-gray: #f8f9fa;
  6620. --cirrus-gray: #d5d7dc;
  6621. --cirrus-dark-gray: #909090;
  6622. --cirrus-dark: #363636;
  6623. --cirrus-link: #5e5cc7;
  6624. --cirrus-link-dark: #4643e2;
  6625. --cirrus-info: #2972fa;
  6626. --cirrus-success: #0dd157;
  6627. --cirrus-success-rgb: 13, 209, 87;
  6628. --cirrus-warning: #fab633;
  6629. --cirrus-danger: #fb4143;
  6630. --cirrus-light-hover: #d0e0ef;
  6631. --cirrus-dark-hover: #505050;
  6632. --cirrus-info-hover: #1062f9;
  6633. --cirrus-link-hover: #f8f7ff;
  6634. --cirrus-success-hover: #0cb94d;
  6635. --cirrus-warning-hover: #f9ad1a;
  6636. --cirrus-danger-hover: #eb0507;
  6637. --cirrus-select-bg: rgba(0, 161, 255, 0.2);
  6638. --cirrus-code-bg: var(--cirrus-primary-light);
  6639. --cirrus-code-fg: #dc4753;
  6640. --cirrus-form-group-bg: var(--cirrus-light-gray);
  6641. --cirrus-form-group-fg: var(--cirrus-dark-gray);
  6642. --toast-primary-bg: rgba(49, 59, 80, 0.9);
  6643. --animation-duration: 0.2s;
  6644. --focus-opacity: 0.55;
  6645. --space-size: 0.5rem;
  6646. --font-size-xs: 0.7rem;
  6647. --font-size-s: 0.85rem;
  6648. --font-size-m: 1rem;
  6649. --font-size-l: 1.35rem;
  6650. --font-size-xl: 1.75rem; }
  6651. .toast {
  6652. display: block;
  6653. width: 100%;
  6654. padding: 0.75rem 1.25rem;
  6655. background-color: var(--toast-primary-bg);
  6656. border: 1px solid var(--toast-primary-bg);
  6657. border-radius: 2px;
  6658. color: #fff;
  6659. position: relative;
  6660. margin: 0.5rem;
  6661. /* TOAST TYPES */ }
  6662. .toast.toast--translucent {
  6663. opacity: 0.5; }
  6664. .toast.toast--translucent:hover {
  6665. opacity: 1; }
  6666. .toast p {
  6667. margin: 0; }
  6668. .toast a {
  6669. color: var(--cirrus-light);
  6670. transition: all 0.3s; }
  6671. .toast a:hover {
  6672. opacity: 0.8;
  6673. transition: all 0.3s; }
  6674. .toast .toast__title {
  6675. margin: 0;
  6676. margin-top: 1rem; }
  6677. .toast .btn-close {
  6678. position: absolute;
  6679. right: 1rem;
  6680. top: 1rem; }
  6681. .toast.toast--primary {
  6682. background-color: var(--cirrus-primary);
  6683. border-color: var(--cirrus-primary); }
  6684. .toast.toast--primary {
  6685. background-color: #f03d4d;
  6686. border-color: #f03d4d; }
  6687. .toast.toast--gray {
  6688. background-color: #d5d7dc;
  6689. border-color: #d5d7dc; }
  6690. .toast.toast--dark {
  6691. background-color: #363636;
  6692. border-color: #363636; }
  6693. .toast.toast--link {
  6694. background-color: #5e5cc7;
  6695. border-color: #5e5cc7; }
  6696. .toast.toast--info {
  6697. background-color: #2972fa;
  6698. border-color: #2972fa; }
  6699. .toast.toast--success {
  6700. background-color: #0dd157;
  6701. border-color: #0dd157; }
  6702. .toast.toast--warning {
  6703. background-color: #fab633;
  6704. border-color: #fab633; }
  6705. .toast.toast--danger {
  6706. background-color: #fb4143;
  6707. border-color: #fb4143; }
  6708. /*
  6709. Functions
  6710. */
  6711. /*
  6712. Converts a given hex value to RGB.
  6713. */
  6714. /*
  6715. Generates delimited class name prefix.
  6716. */
  6717. /*
  6718. Fetch feature flag for different utility class types for generating viewport classes (e.g., u-flex-sm, u-flex-md, etc.).
  6719. */
  6720. /* Spacing */
  6721. /* Fonts */
  6722. /* Grid Count */
  6723. /* Grid Percents */
  6724. /* Tab Sizes */
  6725. /* Media Queries */
  6726. /* Smaller than the defined pixels are the dimensions for that range */
  6727. /* Color scheme for Cirrus */
  6728. /* v2 Colors */
  6729. :root {
  6730. /* v1 Colors */
  6731. --cirrus-fg: #374054;
  6732. --cirrus-bg: #fff;
  6733. --cirrus-primary: #f03d4d;
  6734. --cirrus-primary-rgb: 240, 61, 77;
  6735. --cirrus-primary-light: #ffdadd;
  6736. --cirrus-accent-hover: #d62939;
  6737. --cirrus-accent-border: #c21b2b;
  6738. --cirrus-light: #f6f9fc;
  6739. --cirrus-light-gray: #f8f9fa;
  6740. --cirrus-gray: #d5d7dc;
  6741. --cirrus-dark-gray: #909090;
  6742. --cirrus-dark: #363636;
  6743. --cirrus-link: #5e5cc7;
  6744. --cirrus-link-dark: #4643e2;
  6745. --cirrus-info: #2972fa;
  6746. --cirrus-success: #0dd157;
  6747. --cirrus-success-rgb: 13, 209, 87;
  6748. --cirrus-warning: #fab633;
  6749. --cirrus-danger: #fb4143;
  6750. --cirrus-light-hover: #d0e0ef;
  6751. --cirrus-dark-hover: #505050;
  6752. --cirrus-info-hover: #1062f9;
  6753. --cirrus-link-hover: #f8f7ff;
  6754. --cirrus-success-hover: #0cb94d;
  6755. --cirrus-warning-hover: #f9ad1a;
  6756. --cirrus-danger-hover: #eb0507;
  6757. --cirrus-select-bg: rgba(0, 161, 255, 0.2);
  6758. --cirrus-code-bg: var(--cirrus-primary-light);
  6759. --cirrus-code-fg: #dc4753;
  6760. --cirrus-form-group-bg: var(--cirrus-light-gray);
  6761. --cirrus-form-group-fg: var(--cirrus-dark-gray);
  6762. --toast-primary-bg: rgba(49, 59, 80, 0.9);
  6763. --animation-duration: 0.2s;
  6764. --focus-opacity: 0.55;
  6765. --space-size: 0.5rem;
  6766. --font-size-xs: 0.7rem;
  6767. --font-size-s: 0.85rem;
  6768. --font-size-m: 1rem;
  6769. --font-size-l: 1.35rem;
  6770. --font-size-xl: 1.75rem; }
  6771. /* TOOLTIPS */
  6772. .tooltip {
  6773. position: relative;
  6774. /* let's the pseudoelement that we are displaying relative to the button. */
  6775. overflow: visible;
  6776. /* Allows the pseudoelement to be shown */
  6777. white-space: nowrap;
  6778. /* Keeps the button text from wrapping and getting too large */
  6779. /* This is the psuedoelement that creates the tooltip */
  6780. /* Handles the on hover event of the button and then modifies the associated tooltip accordingly. */
  6781. /* Tooltip top left */
  6782. /* Tooltip top right */
  6783. /* Tooltip bottom */
  6784. /* Tooltip bottom left */
  6785. /* Tooltip bottom right */
  6786. /* Tooltip right */
  6787. /* Tooltip Left */ }
  6788. .tooltip::after {
  6789. -webkit-appearance: none;
  6790. -moz-appearance: none;
  6791. position: absolute;
  6792. color: #fff;
  6793. font-size: 0.6rem;
  6794. background-color: rgba(69, 77, 93, 0.9);
  6795. content: attr(data-tooltip);
  6796. /* Retrieves the data specified in this element property and displays it as text */
  6797. display: block;
  6798. line-height: 1rem;
  6799. text-transform: none;
  6800. overflow: hidden;
  6801. padding: 0.4rem 0.8rem;
  6802. opacity: 0;
  6803. /* Hide the element */
  6804. text-overflow: ellipsis;
  6805. max-width: 15rem;
  6806. -webkit-transform: translate(-50%, 0);
  6807. transform: translate(-50%, 0);
  6808. transition: all var(--animation-duration) ease;
  6809. z-index: 200;
  6810. pointer-events: none;
  6811. bottom: 100%;
  6812. /* Pushes the tooltip above the button */
  6813. left: 50%;
  6814. /* Horizontally center it */
  6815. border-radius: 0.2rem; }
  6816. .tooltip:focus::after, .tooltip:hover::after {
  6817. opacity: 1;
  6818. -webkit-transform: translate(-50%, -0.5rem);
  6819. transform: translate(-50%, -0.5rem);
  6820. transition: all var(--animation-duration) ease; }
  6821. .tooltip.tooltip--top-left::after {
  6822. -webkit-transform: translate(-50%, 0);
  6823. transform: translate(-50%, 0); }
  6824. .tooltip.tooltip--top-left:hover::after, .tooltip.tooltip--top-left:focus::after {
  6825. left: 0;
  6826. -webkit-transform: translate(-100%, -0.5rem);
  6827. transform: translate(-100%, -0.5rem); }
  6828. .tooltip.tooltip--top-right::after {
  6829. left: auto;
  6830. -webkit-transform: translate(15%, 0);
  6831. transform: translate(15%, 0); }
  6832. .tooltip.tooltip--top-right:hover::after, .tooltip.tooltip--top-right:focus::after {
  6833. right: 0;
  6834. -webkit-transform: translate(100%, -0.5rem);
  6835. transform: translate(100%, -0.5rem); }
  6836. .tooltip.tooltip--bottom::after {
  6837. top: 100%;
  6838. transform: translate(-50%, -1rem);
  6839. /* Moves tooltip to the center horizontally and shifts tooltip down */
  6840. -webkit-transform: translate(-50%, -1rem);
  6841. -moz-transform: translate(-50%, -1rem);
  6842. -ms-transform: translate(-50%, -1rem);
  6843. bottom: auto; }
  6844. .tooltip.tooltip--bottom:hover::after, .tooltip.tooltip--bottom:focus::after {
  6845. transform: translate(-50%, 0.5rem);
  6846. -webkit-transform: translate(-50%, 0.5rem);
  6847. -moz-transform: translate(-50%, 0.5rem);
  6848. -ms-transform: translate(-50%, 0.5rem);
  6849. bottom: auto; }
  6850. .tooltip.tooltip--bottom-left::after {
  6851. top: 100%;
  6852. -webkit-transform: translate(-65%, -1rem);
  6853. transform: translate(-65%, -1rem);
  6854. bottom: auto; }
  6855. .tooltip.tooltip--bottom-left:hover::after, .tooltip.tooltip--bottom-left:focus::after {
  6856. left: 0;
  6857. -webkit-transform: translate(-100%, 0.5rem);
  6858. transform: translate(-100%, 0.5rem); }
  6859. .tooltip.tooltip--bottom-right::after {
  6860. left: auto;
  6861. top: 100%;
  6862. -webkit-transform: translate(0%, -1rem);
  6863. transform: translate(0%, -1rem);
  6864. bottom: auto; }
  6865. .tooltip.tooltip--bottom-right:hover::after, .tooltip.tooltip--bottom-right:focus::after {
  6866. right: 0;
  6867. -webkit-transform: translate(100%, 0.5rem);
  6868. transform: translate(100%, 0.5rem); }
  6869. .tooltip.tooltip--right::after {
  6870. left: 100%;
  6871. bottom: 50%;
  6872. transform: translate(-1rem, 50%);
  6873. -webkit-transform: translate(-1rem, 50%);
  6874. -moz-transform: translate(-1rem, 50%);
  6875. -ms-transform: translate(-1rem, 50%); }
  6876. .tooltip.tooltip--right:hover::after, .tooltip.tooltip--right:focus::after {
  6877. transform: translate(0.5rem, 50%);
  6878. -webkit-transform: translate(0.5rem, 50%);
  6879. -moz-transform: translate(0.5rem, 50%);
  6880. -ms-transform: translate(0.5rem, 50%); }
  6881. .tooltip.tooltip--left::after {
  6882. right: 100%;
  6883. bottom: 50%;
  6884. left: auto;
  6885. /* Needed to work */
  6886. transform: translate(1rem, 50%);
  6887. -webkit-transform: translate(1rem, 50%);
  6888. -moz-transform: translate(1rem, 50%);
  6889. -ms-transform: translate(1rem, 50%); }
  6890. .tooltip.tooltip--left:hover::after, .tooltip.tooltip--left:focus::after {
  6891. transform: translate(-0.5rem, 50%);
  6892. -webkit-transform: translate(-0.5rem, 50%);
  6893. -moz-transform: translate(-0.5rem, 50%);
  6894. -ms-transform: translate(-0.5rem, 50%); }
  6895. /*
  6896. Functions
  6897. */
  6898. /*
  6899. Converts a given hex value to RGB.
  6900. */
  6901. /*
  6902. Generates delimited class name prefix.
  6903. */
  6904. /*
  6905. Fetch feature flag for different utility class types for generating viewport classes (e.g., u-flex-sm, u-flex-md, etc.).
  6906. */
  6907. /* Spacing */
  6908. /* Fonts */
  6909. /* Grid Count */
  6910. /* Grid Percents */
  6911. /* Tab Sizes */
  6912. /* Media Queries */
  6913. /* Smaller than the defined pixels are the dimensions for that range */
  6914. .u-left {
  6915. clear: left !important; }
  6916. .u-right {
  6917. clear: right !important; }
  6918. .u-both {
  6919. clear: both !important; }
  6920. @media screen and (min-width: 640px) {
  6921. .u-left-sm {
  6922. clear: left !important; } }
  6923. @media screen and (min-width: 640px) {
  6924. .u-right-sm {
  6925. clear: right !important; } }
  6926. @media screen and (min-width: 640px) {
  6927. .u-both-sm {
  6928. clear: both !important; } }
  6929. @media screen and (min-width: 768px) {
  6930. .u-left-md {
  6931. clear: left !important; } }
  6932. @media screen and (min-width: 768px) {
  6933. .u-right-md {
  6934. clear: right !important; } }
  6935. @media screen and (min-width: 768px) {
  6936. .u-both-md {
  6937. clear: both !important; } }
  6938. @media screen and (min-width: 1024px) {
  6939. .u-left-lg {
  6940. clear: left !important; } }
  6941. @media screen and (min-width: 1024px) {
  6942. .u-right-lg {
  6943. clear: right !important; } }
  6944. @media screen and (min-width: 1024px) {
  6945. .u-both-lg {
  6946. clear: both !important; } }
  6947. @media screen and (min-width: 1280px) {
  6948. .u-left-xl {
  6949. clear: left !important; } }
  6950. @media screen and (min-width: 1280px) {
  6951. .u-right-xl {
  6952. clear: right !important; } }
  6953. @media screen and (min-width: 1280px) {
  6954. .u-both-xl {
  6955. clear: both !important; } }
  6956. /*
  6957. When using floats, clearfix allows the container to automatically resize so that
  6958. other elements are not blocked by children.
  6959. */
  6960. .u-clearfix:after {
  6961. clear: both !important;
  6962. content: ' ';
  6963. display: table !important; }
  6964. /*
  6965. Functions
  6966. */
  6967. /*
  6968. Converts a given hex value to RGB.
  6969. */
  6970. /*
  6971. Generates delimited class name prefix.
  6972. */
  6973. /*
  6974. Fetch feature flag for different utility class types for generating viewport classes (e.g., u-flex-sm, u-flex-md, etc.).
  6975. */
  6976. /* Spacing */
  6977. /* Fonts */
  6978. /* Grid Count */
  6979. /* Grid Percents */
  6980. /* Tab Sizes */
  6981. /* Media Queries */
  6982. /* Smaller than the defined pixels are the dimensions for that range */
  6983. .u-none {
  6984. display: none !important; }
  6985. .u-inline {
  6986. display: inline !important; }
  6987. .u-inline-block {
  6988. display: inline-block !important; }
  6989. .u-block {
  6990. display: block !important; }
  6991. .u-flex {
  6992. display: flex !important; }
  6993. .u-inline-flex {
  6994. display: inline-flex !important; }
  6995. .u-table {
  6996. display: table !important; }
  6997. .u-table-row {
  6998. display: table-row !important; }
  6999. .u-table-column {
  7000. display: table-column !important; }
  7001. .u-table-cell {
  7002. display: table-cell !important; }
  7003. @media screen and (min-width: 640px) {
  7004. .u-none-sm {
  7005. display: none !important; } }
  7006. @media screen and (min-width: 640px) {
  7007. .u-inline-sm {
  7008. display: inline !important; } }
  7009. @media screen and (min-width: 640px) {
  7010. .u-inline-block-sm {
  7011. display: inline-block !important; } }
  7012. @media screen and (min-width: 640px) {
  7013. .u-block-sm {
  7014. display: block !important; } }
  7015. @media screen and (min-width: 640px) {
  7016. .u-flex-sm {
  7017. display: flex !important; } }
  7018. @media screen and (min-width: 640px) {
  7019. .u-inline-flex-sm {
  7020. display: inline-flex !important; } }
  7021. @media screen and (min-width: 640px) {
  7022. .u-table-sm {
  7023. display: table !important; } }
  7024. @media screen and (min-width: 640px) {
  7025. .u-table-row-sm {
  7026. display: table-row !important; } }
  7027. @media screen and (min-width: 640px) {
  7028. .u-table-column-sm {
  7029. display: table-column !important; } }
  7030. @media screen and (min-width: 640px) {
  7031. .u-table-cell-sm {
  7032. display: table-cell !important; } }
  7033. @media screen and (min-width: 768px) {
  7034. .u-none-md {
  7035. display: none !important; } }
  7036. @media screen and (min-width: 768px) {
  7037. .u-inline-md {
  7038. display: inline !important; } }
  7039. @media screen and (min-width: 768px) {
  7040. .u-inline-block-md {
  7041. display: inline-block !important; } }
  7042. @media screen and (min-width: 768px) {
  7043. .u-block-md {
  7044. display: block !important; } }
  7045. @media screen and (min-width: 768px) {
  7046. .u-flex-md {
  7047. display: flex !important; } }
  7048. @media screen and (min-width: 768px) {
  7049. .u-inline-flex-md {
  7050. display: inline-flex !important; } }
  7051. @media screen and (min-width: 768px) {
  7052. .u-table-md {
  7053. display: table !important; } }
  7054. @media screen and (min-width: 768px) {
  7055. .u-table-row-md {
  7056. display: table-row !important; } }
  7057. @media screen and (min-width: 768px) {
  7058. .u-table-column-md {
  7059. display: table-column !important; } }
  7060. @media screen and (min-width: 768px) {
  7061. .u-table-cell-md {
  7062. display: table-cell !important; } }
  7063. @media screen and (min-width: 1024px) {
  7064. .u-none-lg {
  7065. display: none !important; } }
  7066. @media screen and (min-width: 1024px) {
  7067. .u-inline-lg {
  7068. display: inline !important; } }
  7069. @media screen and (min-width: 1024px) {
  7070. .u-inline-block-lg {
  7071. display: inline-block !important; } }
  7072. @media screen and (min-width: 1024px) {
  7073. .u-block-lg {
  7074. display: block !important; } }
  7075. @media screen and (min-width: 1024px) {
  7076. .u-flex-lg {
  7077. display: flex !important; } }
  7078. @media screen and (min-width: 1024px) {
  7079. .u-inline-flex-lg {
  7080. display: inline-flex !important; } }
  7081. @media screen and (min-width: 1024px) {
  7082. .u-table-lg {
  7083. display: table !important; } }
  7084. @media screen and (min-width: 1024px) {
  7085. .u-table-row-lg {
  7086. display: table-row !important; } }
  7087. @media screen and (min-width: 1024px) {
  7088. .u-table-column-lg {
  7089. display: table-column !important; } }
  7090. @media screen and (min-width: 1024px) {
  7091. .u-table-cell-lg {
  7092. display: table-cell !important; } }
  7093. @media screen and (min-width: 1280px) {
  7094. .u-none-xl {
  7095. display: none !important; } }
  7096. @media screen and (min-width: 1280px) {
  7097. .u-inline-xl {
  7098. display: inline !important; } }
  7099. @media screen and (min-width: 1280px) {
  7100. .u-inline-block-xl {
  7101. display: inline-block !important; } }
  7102. @media screen and (min-width: 1280px) {
  7103. .u-block-xl {
  7104. display: block !important; } }
  7105. @media screen and (min-width: 1280px) {
  7106. .u-flex-xl {
  7107. display: flex !important; } }
  7108. @media screen and (min-width: 1280px) {
  7109. .u-inline-flex-xl {
  7110. display: inline-flex !important; } }
  7111. @media screen and (min-width: 1280px) {
  7112. .u-table-xl {
  7113. display: table !important; } }
  7114. @media screen and (min-width: 1280px) {
  7115. .u-table-row-xl {
  7116. display: table-row !important; } }
  7117. @media screen and (min-width: 1280px) {
  7118. .u-table-column-xl {
  7119. display: table-column !important; } }
  7120. @media screen and (min-width: 1280px) {
  7121. .u-table-cell-xl {
  7122. display: table-cell !important; } }
  7123. /*
  7124. Functions
  7125. */
  7126. /*
  7127. Converts a given hex value to RGB.
  7128. */
  7129. /*
  7130. Generates delimited class name prefix.
  7131. */
  7132. /*
  7133. Fetch feature flag for different utility class types for generating viewport classes (e.g., u-flex-sm, u-flex-md, etc.).
  7134. */
  7135. /* Spacing */
  7136. /* Fonts */
  7137. /* Grid Count */
  7138. /* Grid Percents */
  7139. /* Tab Sizes */
  7140. /* Media Queries */
  7141. /* Smaller than the defined pixels are the dimensions for that range */
  7142. .u-flex-row {
  7143. flex-direction: row !important; }
  7144. .u-flex-row-reverse {
  7145. flex-direction: row-reverse !important; }
  7146. .u-flex-column {
  7147. flex-direction: column !important; }
  7148. .u-flex-column-reverse {
  7149. flex-direction: column-reverse !important; }
  7150. @media screen and (min-width: 640px) {
  7151. .u-flex-row-sm {
  7152. flex-direction: row !important; } }
  7153. @media screen and (min-width: 640px) {
  7154. .u-flex-row-reverse-sm {
  7155. flex-direction: row-reverse !important; } }
  7156. @media screen and (min-width: 640px) {
  7157. .u-flex-column-sm {
  7158. flex-direction: column !important; } }
  7159. @media screen and (min-width: 640px) {
  7160. .u-flex-column-reverse-sm {
  7161. flex-direction: column-reverse !important; } }
  7162. @media screen and (min-width: 768px) {
  7163. .u-flex-row-md {
  7164. flex-direction: row !important; } }
  7165. @media screen and (min-width: 768px) {
  7166. .u-flex-row-reverse-md {
  7167. flex-direction: row-reverse !important; } }
  7168. @media screen and (min-width: 768px) {
  7169. .u-flex-column-md {
  7170. flex-direction: column !important; } }
  7171. @media screen and (min-width: 768px) {
  7172. .u-flex-column-reverse-md {
  7173. flex-direction: column-reverse !important; } }
  7174. @media screen and (min-width: 1024px) {
  7175. .u-flex-row-lg {
  7176. flex-direction: row !important; } }
  7177. @media screen and (min-width: 1024px) {
  7178. .u-flex-row-reverse-lg {
  7179. flex-direction: row-reverse !important; } }
  7180. @media screen and (min-width: 1024px) {
  7181. .u-flex-column-lg {
  7182. flex-direction: column !important; } }
  7183. @media screen and (min-width: 1024px) {
  7184. .u-flex-column-reverse-lg {
  7185. flex-direction: column-reverse !important; } }
  7186. @media screen and (min-width: 1280px) {
  7187. .u-flex-row-xl {
  7188. flex-direction: row !important; } }
  7189. @media screen and (min-width: 1280px) {
  7190. .u-flex-row-reverse-xl {
  7191. flex-direction: row-reverse !important; } }
  7192. @media screen and (min-width: 1280px) {
  7193. .u-flex-column-xl {
  7194. flex-direction: column !important; } }
  7195. @media screen and (min-width: 1280px) {
  7196. .u-flex-column-reverse-xl {
  7197. flex-direction: column-reverse !important; } }
  7198. .u-justify-flex-start {
  7199. justify-content: flex-start !important; }
  7200. .u-justify-center {
  7201. justify-content: center !important; }
  7202. .u-justify-flex-end {
  7203. justify-content: flex-end !important; }
  7204. .u-justify-space-between {
  7205. justify-content: space-between !important; }
  7206. .u-justify-space-around {
  7207. justify-content: space-around !important; }
  7208. .u-justify-space-evenly {
  7209. justify-content: space-evenly !important; }
  7210. @media screen and (min-width: 640px) {
  7211. .u-justify-flex-start-sm {
  7212. justify-content: flex-start !important; } }
  7213. @media screen and (min-width: 640px) {
  7214. .u-justify-center-sm {
  7215. justify-content: center !important; } }
  7216. @media screen and (min-width: 640px) {
  7217. .u-justify-flex-end-sm {
  7218. justify-content: flex-end !important; } }
  7219. @media screen and (min-width: 640px) {
  7220. .u-justify-space-between-sm {
  7221. justify-content: space-between !important; } }
  7222. @media screen and (min-width: 640px) {
  7223. .u-justify-space-around-sm {
  7224. justify-content: space-around !important; } }
  7225. @media screen and (min-width: 640px) {
  7226. .u-justify-space-evenly-sm {
  7227. justify-content: space-evenly !important; } }
  7228. @media screen and (min-width: 768px) {
  7229. .u-justify-flex-start-md {
  7230. justify-content: flex-start !important; } }
  7231. @media screen and (min-width: 768px) {
  7232. .u-justify-center-md {
  7233. justify-content: center !important; } }
  7234. @media screen and (min-width: 768px) {
  7235. .u-justify-flex-end-md {
  7236. justify-content: flex-end !important; } }
  7237. @media screen and (min-width: 768px) {
  7238. .u-justify-space-between-md {
  7239. justify-content: space-between !important; } }
  7240. @media screen and (min-width: 768px) {
  7241. .u-justify-space-around-md {
  7242. justify-content: space-around !important; } }
  7243. @media screen and (min-width: 768px) {
  7244. .u-justify-space-evenly-md {
  7245. justify-content: space-evenly !important; } }
  7246. @media screen and (min-width: 1024px) {
  7247. .u-justify-flex-start-lg {
  7248. justify-content: flex-start !important; } }
  7249. @media screen and (min-width: 1024px) {
  7250. .u-justify-center-lg {
  7251. justify-content: center !important; } }
  7252. @media screen and (min-width: 1024px) {
  7253. .u-justify-flex-end-lg {
  7254. justify-content: flex-end !important; } }
  7255. @media screen and (min-width: 1024px) {
  7256. .u-justify-space-between-lg {
  7257. justify-content: space-between !important; } }
  7258. @media screen and (min-width: 1024px) {
  7259. .u-justify-space-around-lg {
  7260. justify-content: space-around !important; } }
  7261. @media screen and (min-width: 1024px) {
  7262. .u-justify-space-evenly-lg {
  7263. justify-content: space-evenly !important; } }
  7264. @media screen and (min-width: 1280px) {
  7265. .u-justify-flex-start-xl {
  7266. justify-content: flex-start !important; } }
  7267. @media screen and (min-width: 1280px) {
  7268. .u-justify-center-xl {
  7269. justify-content: center !important; } }
  7270. @media screen and (min-width: 1280px) {
  7271. .u-justify-flex-end-xl {
  7272. justify-content: flex-end !important; } }
  7273. @media screen and (min-width: 1280px) {
  7274. .u-justify-space-between-xl {
  7275. justify-content: space-between !important; } }
  7276. @media screen and (min-width: 1280px) {
  7277. .u-justify-space-around-xl {
  7278. justify-content: space-around !important; } }
  7279. @media screen and (min-width: 1280px) {
  7280. .u-justify-space-evenly-xl {
  7281. justify-content: space-evenly !important; } }
  7282. .u-items-stretch {
  7283. align-items: stretch !important; }
  7284. .u-items-flex-start {
  7285. align-items: flex-start !important; }
  7286. .u-items-center {
  7287. align-items: center !important; }
  7288. .u-items-flex-end {
  7289. align-items: flex-end !important; }
  7290. .u-items-baseline {
  7291. align-items: baseline !important; }
  7292. @media screen and (min-width: 640px) {
  7293. .u-items-stretch-sm {
  7294. align-items: stretch !important; } }
  7295. @media screen and (min-width: 640px) {
  7296. .u-items-flex-start-sm {
  7297. align-items: flex-start !important; } }
  7298. @media screen and (min-width: 640px) {
  7299. .u-items-center-sm {
  7300. align-items: center !important; } }
  7301. @media screen and (min-width: 640px) {
  7302. .u-items-flex-end-sm {
  7303. align-items: flex-end !important; } }
  7304. @media screen and (min-width: 640px) {
  7305. .u-items-baseline-sm {
  7306. align-items: baseline !important; } }
  7307. @media screen and (min-width: 768px) {
  7308. .u-items-stretch-md {
  7309. align-items: stretch !important; } }
  7310. @media screen and (min-width: 768px) {
  7311. .u-items-flex-start-md {
  7312. align-items: flex-start !important; } }
  7313. @media screen and (min-width: 768px) {
  7314. .u-items-center-md {
  7315. align-items: center !important; } }
  7316. @media screen and (min-width: 768px) {
  7317. .u-items-flex-end-md {
  7318. align-items: flex-end !important; } }
  7319. @media screen and (min-width: 768px) {
  7320. .u-items-baseline-md {
  7321. align-items: baseline !important; } }
  7322. @media screen and (min-width: 1024px) {
  7323. .u-items-stretch-lg {
  7324. align-items: stretch !important; } }
  7325. @media screen and (min-width: 1024px) {
  7326. .u-items-flex-start-lg {
  7327. align-items: flex-start !important; } }
  7328. @media screen and (min-width: 1024px) {
  7329. .u-items-center-lg {
  7330. align-items: center !important; } }
  7331. @media screen and (min-width: 1024px) {
  7332. .u-items-flex-end-lg {
  7333. align-items: flex-end !important; } }
  7334. @media screen and (min-width: 1024px) {
  7335. .u-items-baseline-lg {
  7336. align-items: baseline !important; } }
  7337. @media screen and (min-width: 1280px) {
  7338. .u-items-stretch-xl {
  7339. align-items: stretch !important; } }
  7340. @media screen and (min-width: 1280px) {
  7341. .u-items-flex-start-xl {
  7342. align-items: flex-start !important; } }
  7343. @media screen and (min-width: 1280px) {
  7344. .u-items-center-xl {
  7345. align-items: center !important; } }
  7346. @media screen and (min-width: 1280px) {
  7347. .u-items-flex-end-xl {
  7348. align-items: flex-end !important; } }
  7349. @media screen and (min-width: 1280px) {
  7350. .u-items-baseline-xl {
  7351. align-items: baseline !important; } }
  7352. /*
  7353. Functions
  7354. */
  7355. /*
  7356. Converts a given hex value to RGB.
  7357. */
  7358. /*
  7359. Generates delimited class name prefix.
  7360. */
  7361. /*
  7362. Fetch feature flag for different utility class types for generating viewport classes (e.g., u-flex-sm, u-flex-md, etc.).
  7363. */
  7364. /* Spacing */
  7365. /* Fonts */
  7366. /* Grid Count */
  7367. /* Grid Percents */
  7368. /* Tab Sizes */
  7369. /* Media Queries */
  7370. /* Smaller than the defined pixels are the dimensions for that range */
  7371. /* UTILS */
  7372. /* Utility classes to help solve some very annoying issues */
  7373. .u-pull-left {
  7374. float: left !important; }
  7375. .u-pull-right {
  7376. float: right !important; }
  7377. .u-text-justify {
  7378. text-align: justify !important; }
  7379. .u-text-left {
  7380. text-align: left !important; }
  7381. .u-text-right {
  7382. text-align: right !important; }
  7383. .u-text-center {
  7384. text-align: center !important; }
  7385. .u-text-ellipsis {
  7386. text-overflow: ellipsis;
  7387. overflow: hidden;
  7388. white-space: nowrap; }
  7389. .u-text-break {
  7390. hyphens: auto;
  7391. word-break: break-word;
  7392. word-wrap: break-word; }
  7393. /* Center element - best used for hero bodies or text */
  7394. .u-center {
  7395. display: -webkit-box;
  7396. display: -ms-flexbox;
  7397. display: flex;
  7398. -webkit-box-align: center;
  7399. -ms-flex-align: center;
  7400. align-items: center;
  7401. -webkit-box-pack: center;
  7402. -ms-flex-pack: center;
  7403. justify-content: center;
  7404. margin: 0 auto;
  7405. flex-wrap: wrap; }
  7406. .u-center-alt,
  7407. .u-center-alt:hover,
  7408. .u-center-alt:active {
  7409. /* If flexbox method fails, this works for elements with unknown dimensions */
  7410. position: absolute;
  7411. top: 50%;
  7412. left: 50%;
  7413. -webkit-transform: translate(-50%, -50%);
  7414. transform: translate(-50%, -50%); }
  7415. .u-overlay {
  7416. bottom: 0;
  7417. left: 0;
  7418. right: 0;
  7419. top: 0;
  7420. position: absolute; }
  7421. .u-disabled {
  7422. cursor: not-allowed !important;
  7423. pointer-events: none !important; }
  7424. .u-unselectable {
  7425. -webkit-touch-callout: none !important;
  7426. -webkit-user-select: none !important;
  7427. -moz-user-select: none !important;
  7428. user-select: none !important; }
  7429. /* Round the corners of the element */
  7430. .u-round {
  7431. border-radius: 0.25rem !important; }
  7432. /* Turns element into a circle */
  7433. .u-circle {
  7434. border-radius: 50% !important; }
  7435. .u-no-outline {
  7436. outline: 0px !important; }
  7437. .u-shadow {
  7438. box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.13), 0 1px 2px 0 rgba(0, 0, 0, 0.07) !important; }
  7439. /*
  7440. Functions
  7441. */
  7442. /*
  7443. Converts a given hex value to RGB.
  7444. */
  7445. /*
  7446. Generates delimited class name prefix.
  7447. */
  7448. /*
  7449. Fetch feature flag for different utility class types for generating viewport classes (e.g., u-flex-sm, u-flex-md, etc.).
  7450. */
  7451. /* Spacing */
  7452. /* Fonts */
  7453. /* Grid Count */
  7454. /* Grid Percents */
  7455. /* Tab Sizes */
  7456. /* Media Queries */
  7457. /* Smaller than the defined pixels are the dimensions for that range */
  7458. .u-overflow-auto {
  7459. overflow: auto !important; }
  7460. .u-overflow-hidden {
  7461. overflow: hidden !important; }
  7462. .u-overflow-visible {
  7463. overflow: visible !important; }
  7464. .u-overflow-scroll {
  7465. overflow: scroll !important; }
  7466. .u-overflow-x-auto {
  7467. overflow-x: auto !important; }
  7468. .u-overflow-x-hidden {
  7469. overflow-x: hidden !important; }
  7470. .u-overflow-x-visible {
  7471. overflow-x: visible !important; }
  7472. .u-overflow-x-scroll {
  7473. overflow-x: scroll !important; }
  7474. .u-overflow-y-auto {
  7475. overflow-y: auto !important; }
  7476. .u-overflow-y-hidden {
  7477. overflow-y: hidden !important; }
  7478. .u-overflow-y-visible {
  7479. overflow-y: visible !important; }
  7480. .u-overflow-y-scroll {
  7481. overflow-y: scroll !important; }
  7482. /*
  7483. Functions
  7484. */
  7485. /*
  7486. Converts a given hex value to RGB.
  7487. */
  7488. /*
  7489. Generates delimited class name prefix.
  7490. */
  7491. /*
  7492. Fetch feature flag for different utility class types for generating viewport classes (e.g., u-flex-sm, u-flex-md, etc.).
  7493. */
  7494. /* Spacing */
  7495. /* Fonts */
  7496. /* Grid Count */
  7497. /* Grid Percents */
  7498. /* Tab Sizes */
  7499. /* Media Queries */
  7500. /* Smaller than the defined pixels are the dimensions for that range */
  7501. .u-static {
  7502. position: static !important; }
  7503. .u-fixed {
  7504. position: fixed !important; }
  7505. .u-absolute {
  7506. position: absolute !important; }
  7507. .u-relative {
  7508. position: relative !important; }
  7509. .u-sticky {
  7510. position: sticky !important; }
  7511. @media screen and (min-width: 640px) {
  7512. .u-static-sm {
  7513. position: static !important; } }
  7514. @media screen and (min-width: 640px) {
  7515. .u-fixed-sm {
  7516. position: fixed !important; } }
  7517. @media screen and (min-width: 640px) {
  7518. .u-absolute-sm {
  7519. position: absolute !important; } }
  7520. @media screen and (min-width: 640px) {
  7521. .u-relative-sm {
  7522. position: relative !important; } }
  7523. @media screen and (min-width: 640px) {
  7524. .u-sticky-sm {
  7525. position: sticky !important; } }
  7526. @media screen and (min-width: 768px) {
  7527. .u-static-md {
  7528. position: static !important; } }
  7529. @media screen and (min-width: 768px) {
  7530. .u-fixed-md {
  7531. position: fixed !important; } }
  7532. @media screen and (min-width: 768px) {
  7533. .u-absolute-md {
  7534. position: absolute !important; } }
  7535. @media screen and (min-width: 768px) {
  7536. .u-relative-md {
  7537. position: relative !important; } }
  7538. @media screen and (min-width: 768px) {
  7539. .u-sticky-md {
  7540. position: sticky !important; } }
  7541. @media screen and (min-width: 1024px) {
  7542. .u-static-lg {
  7543. position: static !important; } }
  7544. @media screen and (min-width: 1024px) {
  7545. .u-fixed-lg {
  7546. position: fixed !important; } }
  7547. @media screen and (min-width: 1024px) {
  7548. .u-absolute-lg {
  7549. position: absolute !important; } }
  7550. @media screen and (min-width: 1024px) {
  7551. .u-relative-lg {
  7552. position: relative !important; } }
  7553. @media screen and (min-width: 1024px) {
  7554. .u-sticky-lg {
  7555. position: sticky !important; } }
  7556. @media screen and (min-width: 1280px) {
  7557. .u-static-xl {
  7558. position: static !important; } }
  7559. @media screen and (min-width: 1280px) {
  7560. .u-fixed-xl {
  7561. position: fixed !important; } }
  7562. @media screen and (min-width: 1280px) {
  7563. .u-absolute-xl {
  7564. position: absolute !important; } }
  7565. @media screen and (min-width: 1280px) {
  7566. .u-relative-xl {
  7567. position: relative !important; } }
  7568. @media screen and (min-width: 1280px) {
  7569. .u-sticky-xl {
  7570. position: sticky !important; } }