bulma-rtl.css 237 KB

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