25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

framework7.rtl.css 181 KiB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897
  1. /**
  2. * Framework7 5.7.14
  3. * Full featured mobile HTML framework for building iOS & Android apps
  4. * https://framework7.io/
  5. *
  6. * Copyright 2014-2020 Vladimir Kharlampidi
  7. *
  8. * Released under the MIT License
  9. *
  10. * Released on: November 9, 2020
  11. */
  12. /*====================
  13. Core
  14. ==================== */
  15. :root {
  16. --f7-theme-color: #007aff;
  17. --f7-theme-color-rgb: 0, 122, 255;
  18. --f7-theme-color-shade: #0066d6;
  19. --f7-theme-color-tint: #298fff;
  20. --f7-safe-area-left: 0px;
  21. --f7-safe-area-right: 0px;
  22. --f7-safe-area-top: 0px;
  23. --f7-safe-area-bottom: 0px;
  24. --f7-safe-area-outer-left: 0px;
  25. --f7-safe-area-outer-right: 0px;
  26. --f7-device-pixel-ratio: 1;
  27. }
  28. @supports (left: env(safe-area-inset-left)) {
  29. :root {
  30. --f7-safe-area-top: env(safe-area-inset-top);
  31. --f7-safe-area-bottom: env(safe-area-inset-bottom);
  32. }
  33. :root .ios-left-edge,
  34. :root .ios-edges,
  35. :root .safe-area-left,
  36. :root .safe-areas,
  37. :root .popup,
  38. :root .sheet-modal,
  39. :root .panel-left {
  40. --f7-safe-area-left: env(safe-area-inset-left);
  41. --f7-safe-area-outer-left: env(safe-area-inset-left);
  42. }
  43. :root .ios-right-edge,
  44. :root .ios-edges,
  45. :root .safe-area-right,
  46. :root .safe-areas,
  47. :root .popup,
  48. :root .sheet-modal,
  49. :root .panel-right {
  50. --f7-safe-area-right: env(safe-area-inset-right);
  51. --f7-safe-area-outer-right: env(safe-area-inset-right);
  52. }
  53. :root .no-safe-areas,
  54. :root .no-safe-area-left,
  55. :root .no-ios-edges,
  56. :root .no-ios-left-edge {
  57. --f7-safe-area-left: 0px;
  58. --f7-safe-area-outer-left: 0px;
  59. }
  60. :root .no-safe-areas,
  61. :root .no-safe-area-right,
  62. :root .no-ios-edges,
  63. :root .no-ios-right-edge {
  64. --f7-safe-area-right: 0px;
  65. --f7-safe-area-outer-right: 0px;
  66. }
  67. }
  68. @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  69. :root {
  70. --f7-device-pixel-ratio: 2;
  71. }
  72. }
  73. @media (-webkit-min-device-pixel-ratio: 3), (min-resolution: 3dppx) {
  74. :root {
  75. --f7-device-pixel-ratio: 3;
  76. }
  77. }
  78. /*====================
  79. Fonts & Bars
  80. ==================== */
  81. :root {
  82. --f7-font-size: 14px;
  83. /*
  84. --f7-bars-link-color: var(--f7-theme-color);
  85. */
  86. --f7-bars-bg-image: none;
  87. --f7-bars-translucent-opacity: 0.8;
  88. --f7-bars-translucent-blur: 20px;
  89. --f7-bars-shadow-bottom-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.08) 40%, rgba(0, 0, 0, 0.04) 50%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%);
  90. --f7-bars-shadow-top-image: linear-gradient(to top, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.08) 40%, rgba(0, 0, 0, 0.04) 50%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%);
  91. --f7-bars-text-color: #000;
  92. --f7-bars-bg-color: #f7f7f8;
  93. --f7-bars-bg-color-rgb: 247, 247, 248;
  94. }
  95. :root .theme-dark,
  96. :root.theme-dark {
  97. --f7-bars-text-color: #fff;
  98. }
  99. .ios {
  100. --f7-font-family: -apple-system, SF Pro Text, SF UI Text, system-ui, Helvetica Neue, Helvetica, Arial, sans-serif;
  101. --f7-line-height: 1.4;
  102. --f7-text-color: #000;
  103. --f7-bars-border-color: rgba(0, 0, 0, 0.25);
  104. }
  105. .ios .theme-dark,
  106. .ios.theme-dark {
  107. --f7-text-color: #fff;
  108. --f7-bars-bg-color: #121212;
  109. --f7-bars-bg-color-rgb: 22, 22, 22;
  110. --f7-bars-border-color: rgba(255, 255, 255, 0.16);
  111. }
  112. .md {
  113. --f7-font-family: Roboto, system-ui, Noto, Helvetica, Arial, sans-serif;
  114. --f7-line-height: 1.5;
  115. --f7-bars-border-color: transparent;
  116. --f7-text-color: #212121;
  117. }
  118. .md .theme-dark,
  119. .md.theme-dark {
  120. --f7-text-color: rgba(255, 255, 255, 0.87);
  121. --f7-bars-bg-color: #202020;
  122. }
  123. .aurora {
  124. --f7-font-family: -apple-system, system-ui, Helvetica, Arial, sans-serif;
  125. --f7-line-height: 1.5;
  126. --f7-text-color: #000;
  127. --f7-bars-border-color: rgba(0, 0, 0, 0.2);
  128. }
  129. .aurora .theme-dark,
  130. .aurora.theme-dark {
  131. --f7-text-color: #fff;
  132. --f7-bars-bg-color: #202020;
  133. --f7-bars-border-color: rgba(255, 255, 255, 0.1);
  134. }
  135. /*====================
  136. Color Themes
  137. ==================== */
  138. .text-color-primary {
  139. --f7-theme-color-text-color: var(--f7-theme-color);
  140. }
  141. .bg-color-primary {
  142. --f7-theme-color-bg-color: var(--f7-theme-color);
  143. }
  144. .border-color-primary {
  145. --f7-theme-color-border-color: var(--f7-theme-color);
  146. }
  147. .ripple-color-primary {
  148. --f7-theme-color-ripple-color: rgba(var(--f7-theme-color-rgb), 0.3);
  149. }
  150. :root {
  151. --f7-color-red: #ff3b30;
  152. --f7-color-red-rgb: 255, 59, 48;
  153. --f7-color-red-shade: #ff1407;
  154. --f7-color-red-tint: #ff6259;
  155. --f7-color-green: #4cd964;
  156. --f7-color-green-rgb: 76, 217, 100;
  157. --f7-color-green-shade: #2cd048;
  158. --f7-color-green-tint: #6ee081;
  159. --f7-color-blue: #2196f3;
  160. --f7-color-blue-rgb: 33, 150, 243;
  161. --f7-color-blue-shade: #0c82df;
  162. --f7-color-blue-tint: #48a8f5;
  163. --f7-color-pink: #ff2d55;
  164. --f7-color-pink-rgb: 255, 45, 85;
  165. --f7-color-pink-shade: #ff0434;
  166. --f7-color-pink-tint: #ff5676;
  167. --f7-color-yellow: #ffcc00;
  168. --f7-color-yellow-rgb: 255, 204, 0;
  169. --f7-color-yellow-shade: #d6ab00;
  170. --f7-color-yellow-tint: #ffd429;
  171. --f7-color-orange: #ff9500;
  172. --f7-color-orange-rgb: 255, 149, 0;
  173. --f7-color-orange-shade: #d67d00;
  174. --f7-color-orange-tint: #ffa629;
  175. --f7-color-purple: #9c27b0;
  176. --f7-color-purple-rgb: 156, 39, 176;
  177. --f7-color-purple-shade: #7e208f;
  178. --f7-color-purple-tint: #b92fd1;
  179. --f7-color-deeppurple: #673ab7;
  180. --f7-color-deeppurple-rgb: 103, 58, 183;
  181. --f7-color-deeppurple-shade: #563098;
  182. --f7-color-deeppurple-tint: #7c52c8;
  183. --f7-color-lightblue: #5ac8fa;
  184. --f7-color-lightblue-rgb: 90, 200, 250;
  185. --f7-color-lightblue-shade: #32bbf9;
  186. --f7-color-lightblue-tint: #82d5fb;
  187. --f7-color-teal: #009688;
  188. --f7-color-teal-rgb: 0, 150, 136;
  189. --f7-color-teal-shade: #006d63;
  190. --f7-color-teal-tint: #00bfad;
  191. --f7-color-lime: #cddc39;
  192. --f7-color-lime-rgb: 205, 220, 57;
  193. --f7-color-lime-shade: #bac923;
  194. --f7-color-lime-tint: #d6e25c;
  195. --f7-color-deeporange: #ff6b22;
  196. --f7-color-deeporange-rgb: 255, 107, 34;
  197. --f7-color-deeporange-shade: #f85200;
  198. --f7-color-deeporange-tint: #ff864b;
  199. --f7-color-gray: #8e8e93;
  200. --f7-color-gray-rgb: 142, 142, 147;
  201. --f7-color-gray-shade: #79797f;
  202. --f7-color-gray-tint: #a3a3a7;
  203. --f7-color-white: #ffffff;
  204. --f7-color-white-rgb: 255, 255, 255;
  205. --f7-color-white-shade: #ebebeb;
  206. --f7-color-white-tint: #ffffff;
  207. --f7-color-black: #000000;
  208. --f7-color-black-rgb: 0, 0, 0;
  209. --f7-color-black-shade: #000000;
  210. --f7-color-black-tint: #141414;
  211. }
  212. .color-theme-red {
  213. --f7-theme-color: #ff3b30;
  214. --f7-theme-color-rgb: 255, 59, 48;
  215. --f7-theme-color-shade: #ff1407;
  216. --f7-theme-color-tint: #ff6259;
  217. }
  218. .color-theme-green {
  219. --f7-theme-color: #4cd964;
  220. --f7-theme-color-rgb: 76, 217, 100;
  221. --f7-theme-color-shade: #2cd048;
  222. --f7-theme-color-tint: #6ee081;
  223. }
  224. .color-theme-blue {
  225. --f7-theme-color: #2196f3;
  226. --f7-theme-color-rgb: 33, 150, 243;
  227. --f7-theme-color-shade: #0c82df;
  228. --f7-theme-color-tint: #48a8f5;
  229. }
  230. .color-theme-pink {
  231. --f7-theme-color: #ff2d55;
  232. --f7-theme-color-rgb: 255, 45, 85;
  233. --f7-theme-color-shade: #ff0434;
  234. --f7-theme-color-tint: #ff5676;
  235. }
  236. .color-theme-yellow {
  237. --f7-theme-color: #ffcc00;
  238. --f7-theme-color-rgb: 255, 204, 0;
  239. --f7-theme-color-shade: #d6ab00;
  240. --f7-theme-color-tint: #ffd429;
  241. }
  242. .color-theme-orange {
  243. --f7-theme-color: #ff9500;
  244. --f7-theme-color-rgb: 255, 149, 0;
  245. --f7-theme-color-shade: #d67d00;
  246. --f7-theme-color-tint: #ffa629;
  247. }
  248. .color-theme-purple {
  249. --f7-theme-color: #9c27b0;
  250. --f7-theme-color-rgb: 156, 39, 176;
  251. --f7-theme-color-shade: #7e208f;
  252. --f7-theme-color-tint: #b92fd1;
  253. }
  254. .color-theme-deeppurple {
  255. --f7-theme-color: #673ab7;
  256. --f7-theme-color-rgb: 103, 58, 183;
  257. --f7-theme-color-shade: #563098;
  258. --f7-theme-color-tint: #7c52c8;
  259. }
  260. .color-theme-lightblue {
  261. --f7-theme-color: #5ac8fa;
  262. --f7-theme-color-rgb: 90, 200, 250;
  263. --f7-theme-color-shade: #32bbf9;
  264. --f7-theme-color-tint: #82d5fb;
  265. }
  266. .color-theme-teal {
  267. --f7-theme-color: #009688;
  268. --f7-theme-color-rgb: 0, 150, 136;
  269. --f7-theme-color-shade: #006d63;
  270. --f7-theme-color-tint: #00bfad;
  271. }
  272. .color-theme-lime {
  273. --f7-theme-color: #cddc39;
  274. --f7-theme-color-rgb: 205, 220, 57;
  275. --f7-theme-color-shade: #bac923;
  276. --f7-theme-color-tint: #d6e25c;
  277. }
  278. .color-theme-deeporange {
  279. --f7-theme-color: #ff6b22;
  280. --f7-theme-color-rgb: 255, 107, 34;
  281. --f7-theme-color-shade: #f85200;
  282. --f7-theme-color-tint: #ff864b;
  283. }
  284. .color-theme-gray {
  285. --f7-theme-color: #8e8e93;
  286. --f7-theme-color-rgb: 142, 142, 147;
  287. --f7-theme-color-shade: #79797f;
  288. --f7-theme-color-tint: #a3a3a7;
  289. }
  290. .color-theme-white {
  291. --f7-theme-color: #ffffff;
  292. --f7-theme-color-rgb: 255, 255, 255;
  293. --f7-theme-color-shade: #ebebeb;
  294. --f7-theme-color-tint: #ffffff;
  295. }
  296. .color-theme-black {
  297. --f7-theme-color: #000000;
  298. --f7-theme-color-rgb: 0, 0, 0;
  299. --f7-theme-color-shade: #000000;
  300. --f7-theme-color-tint: #141414;
  301. }
  302. .color-red {
  303. --f7-theme-color: #ff3b30;
  304. --f7-theme-color-rgb: 255, 59, 48;
  305. --f7-theme-color-shade: #ff1407;
  306. --f7-theme-color-tint: #ff6259;
  307. }
  308. .text-color-red {
  309. --f7-theme-color-text-color: #ff3b30;
  310. }
  311. .bg-color-red {
  312. --f7-theme-color-bg-color: #ff3b30;
  313. }
  314. .border-color-red {
  315. --f7-theme-color-border-color: #ff3b30;
  316. }
  317. .ripple-color-red,
  318. .ripple-red {
  319. --f7-theme-color-ripple-color: rgba(255, 59, 48, 0.3);
  320. }
  321. .color-green {
  322. --f7-theme-color: #4cd964;
  323. --f7-theme-color-rgb: 76, 217, 100;
  324. --f7-theme-color-shade: #2cd048;
  325. --f7-theme-color-tint: #6ee081;
  326. }
  327. .text-color-green {
  328. --f7-theme-color-text-color: #4cd964;
  329. }
  330. .bg-color-green {
  331. --f7-theme-color-bg-color: #4cd964;
  332. }
  333. .border-color-green {
  334. --f7-theme-color-border-color: #4cd964;
  335. }
  336. .ripple-color-green,
  337. .ripple-green {
  338. --f7-theme-color-ripple-color: rgba(76, 217, 100, 0.3);
  339. }
  340. .color-blue {
  341. --f7-theme-color: #2196f3;
  342. --f7-theme-color-rgb: 33, 150, 243;
  343. --f7-theme-color-shade: #0c82df;
  344. --f7-theme-color-tint: #48a8f5;
  345. }
  346. .text-color-blue {
  347. --f7-theme-color-text-color: #2196f3;
  348. }
  349. .bg-color-blue {
  350. --f7-theme-color-bg-color: #2196f3;
  351. }
  352. .border-color-blue {
  353. --f7-theme-color-border-color: #2196f3;
  354. }
  355. .ripple-color-blue,
  356. .ripple-blue {
  357. --f7-theme-color-ripple-color: rgba(33, 150, 243, 0.3);
  358. }
  359. .color-pink {
  360. --f7-theme-color: #ff2d55;
  361. --f7-theme-color-rgb: 255, 45, 85;
  362. --f7-theme-color-shade: #ff0434;
  363. --f7-theme-color-tint: #ff5676;
  364. }
  365. .text-color-pink {
  366. --f7-theme-color-text-color: #ff2d55;
  367. }
  368. .bg-color-pink {
  369. --f7-theme-color-bg-color: #ff2d55;
  370. }
  371. .border-color-pink {
  372. --f7-theme-color-border-color: #ff2d55;
  373. }
  374. .ripple-color-pink,
  375. .ripple-pink {
  376. --f7-theme-color-ripple-color: rgba(255, 45, 85, 0.3);
  377. }
  378. .color-yellow {
  379. --f7-theme-color: #ffcc00;
  380. --f7-theme-color-rgb: 255, 204, 0;
  381. --f7-theme-color-shade: #d6ab00;
  382. --f7-theme-color-tint: #ffd429;
  383. }
  384. .text-color-yellow {
  385. --f7-theme-color-text-color: #ffcc00;
  386. }
  387. .bg-color-yellow {
  388. --f7-theme-color-bg-color: #ffcc00;
  389. }
  390. .border-color-yellow {
  391. --f7-theme-color-border-color: #ffcc00;
  392. }
  393. .ripple-color-yellow,
  394. .ripple-yellow {
  395. --f7-theme-color-ripple-color: rgba(255, 204, 0, 0.3);
  396. }
  397. .color-orange {
  398. --f7-theme-color: #ff9500;
  399. --f7-theme-color-rgb: 255, 149, 0;
  400. --f7-theme-color-shade: #d67d00;
  401. --f7-theme-color-tint: #ffa629;
  402. }
  403. .text-color-orange {
  404. --f7-theme-color-text-color: #ff9500;
  405. }
  406. .bg-color-orange {
  407. --f7-theme-color-bg-color: #ff9500;
  408. }
  409. .border-color-orange {
  410. --f7-theme-color-border-color: #ff9500;
  411. }
  412. .ripple-color-orange,
  413. .ripple-orange {
  414. --f7-theme-color-ripple-color: rgba(255, 149, 0, 0.3);
  415. }
  416. .color-purple {
  417. --f7-theme-color: #9c27b0;
  418. --f7-theme-color-rgb: 156, 39, 176;
  419. --f7-theme-color-shade: #7e208f;
  420. --f7-theme-color-tint: #b92fd1;
  421. }
  422. .text-color-purple {
  423. --f7-theme-color-text-color: #9c27b0;
  424. }
  425. .bg-color-purple {
  426. --f7-theme-color-bg-color: #9c27b0;
  427. }
  428. .border-color-purple {
  429. --f7-theme-color-border-color: #9c27b0;
  430. }
  431. .ripple-color-purple,
  432. .ripple-purple {
  433. --f7-theme-color-ripple-color: rgba(156, 39, 176, 0.3);
  434. }
  435. .color-deeppurple {
  436. --f7-theme-color: #673ab7;
  437. --f7-theme-color-rgb: 103, 58, 183;
  438. --f7-theme-color-shade: #563098;
  439. --f7-theme-color-tint: #7c52c8;
  440. }
  441. .text-color-deeppurple {
  442. --f7-theme-color-text-color: #673ab7;
  443. }
  444. .bg-color-deeppurple {
  445. --f7-theme-color-bg-color: #673ab7;
  446. }
  447. .border-color-deeppurple {
  448. --f7-theme-color-border-color: #673ab7;
  449. }
  450. .ripple-color-deeppurple,
  451. .ripple-deeppurple {
  452. --f7-theme-color-ripple-color: rgba(103, 58, 183, 0.3);
  453. }
  454. .color-lightblue {
  455. --f7-theme-color: #5ac8fa;
  456. --f7-theme-color-rgb: 90, 200, 250;
  457. --f7-theme-color-shade: #32bbf9;
  458. --f7-theme-color-tint: #82d5fb;
  459. }
  460. .text-color-lightblue {
  461. --f7-theme-color-text-color: #5ac8fa;
  462. }
  463. .bg-color-lightblue {
  464. --f7-theme-color-bg-color: #5ac8fa;
  465. }
  466. .border-color-lightblue {
  467. --f7-theme-color-border-color: #5ac8fa;
  468. }
  469. .ripple-color-lightblue,
  470. .ripple-lightblue {
  471. --f7-theme-color-ripple-color: rgba(90, 200, 250, 0.3);
  472. }
  473. .color-teal {
  474. --f7-theme-color: #009688;
  475. --f7-theme-color-rgb: 0, 150, 136;
  476. --f7-theme-color-shade: #006d63;
  477. --f7-theme-color-tint: #00bfad;
  478. }
  479. .text-color-teal {
  480. --f7-theme-color-text-color: #009688;
  481. }
  482. .bg-color-teal {
  483. --f7-theme-color-bg-color: #009688;
  484. }
  485. .border-color-teal {
  486. --f7-theme-color-border-color: #009688;
  487. }
  488. .ripple-color-teal,
  489. .ripple-teal {
  490. --f7-theme-color-ripple-color: rgba(0, 150, 136, 0.3);
  491. }
  492. .color-lime {
  493. --f7-theme-color: #cddc39;
  494. --f7-theme-color-rgb: 205, 220, 57;
  495. --f7-theme-color-shade: #bac923;
  496. --f7-theme-color-tint: #d6e25c;
  497. }
  498. .text-color-lime {
  499. --f7-theme-color-text-color: #cddc39;
  500. }
  501. .bg-color-lime {
  502. --f7-theme-color-bg-color: #cddc39;
  503. }
  504. .border-color-lime {
  505. --f7-theme-color-border-color: #cddc39;
  506. }
  507. .ripple-color-lime,
  508. .ripple-lime {
  509. --f7-theme-color-ripple-color: rgba(205, 220, 57, 0.3);
  510. }
  511. .color-deeporange {
  512. --f7-theme-color: #ff6b22;
  513. --f7-theme-color-rgb: 255, 107, 34;
  514. --f7-theme-color-shade: #f85200;
  515. --f7-theme-color-tint: #ff864b;
  516. }
  517. .text-color-deeporange {
  518. --f7-theme-color-text-color: #ff6b22;
  519. }
  520. .bg-color-deeporange {
  521. --f7-theme-color-bg-color: #ff6b22;
  522. }
  523. .border-color-deeporange {
  524. --f7-theme-color-border-color: #ff6b22;
  525. }
  526. .ripple-color-deeporange,
  527. .ripple-deeporange {
  528. --f7-theme-color-ripple-color: rgba(255, 107, 34, 0.3);
  529. }
  530. .color-gray {
  531. --f7-theme-color: #8e8e93;
  532. --f7-theme-color-rgb: 142, 142, 147;
  533. --f7-theme-color-shade: #79797f;
  534. --f7-theme-color-tint: #a3a3a7;
  535. }
  536. .text-color-gray {
  537. --f7-theme-color-text-color: #8e8e93;
  538. }
  539. .bg-color-gray {
  540. --f7-theme-color-bg-color: #8e8e93;
  541. }
  542. .border-color-gray {
  543. --f7-theme-color-border-color: #8e8e93;
  544. }
  545. .ripple-color-gray,
  546. .ripple-gray {
  547. --f7-theme-color-ripple-color: rgba(142, 142, 147, 0.3);
  548. }
  549. .color-white {
  550. --f7-theme-color: #ffffff;
  551. --f7-theme-color-rgb: 255, 255, 255;
  552. --f7-theme-color-shade: #ebebeb;
  553. --f7-theme-color-tint: #ffffff;
  554. }
  555. .text-color-white {
  556. --f7-theme-color-text-color: #ffffff;
  557. }
  558. .bg-color-white {
  559. --f7-theme-color-bg-color: #ffffff;
  560. }
  561. .border-color-white {
  562. --f7-theme-color-border-color: #ffffff;
  563. }
  564. .ripple-color-white,
  565. .ripple-white {
  566. --f7-theme-color-ripple-color: rgba(255, 255, 255, 0.3);
  567. }
  568. .color-black {
  569. --f7-theme-color: #000000;
  570. --f7-theme-color-rgb: 0, 0, 0;
  571. --f7-theme-color-shade: #000000;
  572. --f7-theme-color-tint: #141414;
  573. }
  574. .text-color-black {
  575. --f7-theme-color-text-color: #000000;
  576. }
  577. .bg-color-black {
  578. --f7-theme-color-bg-color: #000000;
  579. }
  580. .border-color-black {
  581. --f7-theme-color-border-color: #000000;
  582. }
  583. .ripple-color-black,
  584. .ripple-black {
  585. --f7-theme-color-ripple-color: rgba(0, 0, 0, 0.3);
  586. }
  587. @font-face {
  588. font-family: 'framework7-core-icons';
  589. src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAA0sABAAAAAAGRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAANEAAAABoAAAAci1jrz0dERUYAAAsIAAAAIwAAACQAfQBXR1BPUwAADOAAAAAuAAAANuAY7+xHU1VCAAALLAAAAbMAAAQuAxQJ5U9TLzIAAAHcAAAASgAAAGBRKF+WY21hcAAAAowAAACIAAABYt6F0cBjdnQgAAADFAAAAAQAAAAEABEBRGdhc3AAAAsAAAAACAAAAAj//wADZ2x5ZgAAA6wAAASlAAAKBIq7ZiloZWFkAAABbAAAADAAAAA2FnYC32hoZWEAAAGcAAAAIAAAACQHgQM9aG10eAAAAigAAABhAAABJC+cAAFsb2NhAAADGAAAAJQAAACURlRI+G1heHAAAAG8AAAAHwAAACAAjwBMbmFtZQAACFQAAAFTAAAC2WC6Sihwb3N0AAAJqAAAAVYAAAJ2B5LxL3jaY2BkYGAA4iKuLVLx/DZfGbiZGEDgZk2iIYz+/+NfL0sa02cgl4MBLA0AJsoLsnjaY2BkYGD6/K+XQY8l7f8PBgaWNAagCArwBACRVQXFeNpjYGRgYPBkkGZgYQABJiBmZACJOTDogQQADdEA3AB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPabPjMUwNYwHwEoUGMQAQ7UMZAAAeNpj2M0gyAACqxgGNWAMAGIdID4A5OwD0rOA+BBI7P9PhuNAMSBmSYOK+wKxExCfBWIJoNzZ/z8Y3YBsF6g4kM2UBpFjBNJMb/7/Z9gNZBtDzGY6CzGHCcQHigMA2dAWtwAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIB3gIAAioCPAJSAmQChAKUAqQC1gLsAv4DHgMwA0IDYANyA5YDtAPEA+oD/AQWBEYEZgR4BIoEsgTIBOIFAnja7VXBTyNVGP++Ke106XamnbYztYeVlukMRmWl03ZwLdAIeCCKZgOKXBY2m15Es8S03lpuSzaSGsOGQPZGoomegI0mmwjVC5uNdZPGgzGc8MDG4ImLmyxTvzfTKmX/A7PJe/O995vXN7/3+37fK3AQBIB1nAYX8NC/hXA5t813wV+pLY/7ILft4mgIWy4Guxm8zXvwaW4bGW4EjaBuBHuDy58VCjhtfRtEg3ZDajW70yg4wMbPsefY/x7jzmAuQl/nbBi6qF/A93CWKkyECCgAUsITllPZtJaSw56ElnabuoiKqX8zlctN5e4uTEwsTOCo/6YgLAqLmM9NDQ1NvT/B4CfCTT8DHQ7NH9Ggj0gAyYTIsZ1GUNfS2dSLKKOOiH/4emTf3p5PjvsOxW2OO/TJPb7dPYYeig7n5hHW8Cu6B16gXRRez+ie3gTbQ46EeSXBWBJbzC9pS3z/yPj8/O3rffx3c2Njc6MrS1olwvfN356fHx/u50fnRkfnbF6gwS6d1w0Q4mlLc7dUUjc2MGsHaHE/wQ1cAS99NRJnixQeN6wHVbVeV6u/p53YWgt+/AlvsP1MVFA3qyiqVr2qTrciYPMJafEyaUH3mZkdQaIfJkmZvJdRcyOdnM68u8vOfyg+Qtch04TmjhLsG2HYdzibREY39zfVSkX9np7lZOf7DFFV+NbrZLmi2jpaK10F7gR8LL9JnRYoJmXU1LkelQtIak+XFOC4/H52v93esH6xTtfW0IUpdK2t/blvtl+ZTw/+ha1TtuxZzZhgdP+auMF0Mr6osYCDJGBbszy+g3nw0EThB2g1vqQeLKqEUeh921mzgG+iBgEaMblsrWz3mFlMC/wyL1MXZG+x6EVNYBOGCXyxyNtnhlms0+/ZfwcMYTzizsQjWLcMrJ8Yxrph2JxrGKW8kG5JZLpitAnRx4+jNScQj+bf8CH8iq+CAECZU2QRBSQmZlaZmOsOBLo/doc8V/yCePHzL8Vun/i1F/m8eNEvOGe4hm8RB+Y1chGvb9qJQc0O4HgcZByj3Pmp+oCSd8bhnpa/j2dCM+pr5uTkJ5NbM8PDM8NLH4RmLtFs0hy4MsKQTr2Yw6jIbHvxrPA6xJKFtbZUpRJhnTxJBPKGw/Paplouq3YdrnAFPCElQwDpAJELeBJI52k76Z51754FzVih0G55hJ2dJuzg+hkQOjXPIPMqQvToKFrDluLtmirgp+RXQN4WzqaFhWpVbTd898yE8tS09rhjrgYxAHfQ1i9oDrMi49GjJ3TsJ9+kFBxU08mfpXRIkqyHkVgsZD2UMCRlpI+441gyGTsN19k8zd5yIcxKBq1scboE9/E60zfrePG/Qr7fab/+gHfZG6YekB03Or8fp/tQsz1vW95E49EN6eoPGLbD+buJ3To63UhqsYizFEqlll+as1yd0+AC8wvlwmDJ6E2EzlR1Y/VOo3FndbWcLVOrsOcr2NdoWL818G7FLJfNiv08X7f2N+OZuF5n9Wo9wMEqrrBh2q5bF+PHGcSP1RTlJphxqop1zjitO52USS/Z7bxuAceWrJadPwMy5C2ev+V1rIhXn9HtH4d0614AAAB42q2QvU7DMBSFj9u0EgyIgewe26qJnA79G6nUpQtiyB5S01ht4sqNVFW8DBsbIxtPwcLEzltw7RqJoQNDI135y/G59rkGcIVXMBy/Du49M4R48dzAJT48N5GwW88BQvbsuYVr9um5jbARkpMFF/R357osM/Tw5LmBG7x7buIBX54D9FjtuQXO3jy3Sf/GDBpbHGCgsEKBGpwy5+jSOoBAggn6xCk2yLAkV0llSFmQOyOyeklnKLeLmd4ejFoVNe/kXT4QyaTP0022VKUyfFFkZpOVW7Uk5yM121aJPYUwWGOEiK62LImU4wo7spqslHtt1qMo10ZGKtcVySe9fw1zJ9ZuNTSfdFPFNBfHlOr/EY7+BENSx1S/b4O5ruq5NivJB7HgU34yKunJMBpH9jnOMXhKPkP7yvk4ZbFpYrfa2ZBKs1O64kIksRCCn+HSH1E3hiEAeNptkAlPwkAUhGfAAxAsyCV4/hbjfd+3aWq7SiN0yXY5/rzRhVKhiZs06b5v3rzZhxTG5+cbxH/nyHxECmkUUUYFVdRQxyoaaGIN69jBLvawjwMcGu0xTnCKM5zjApe4wjVucIs73OMBj3jCM17wijemmOYc57nARWaYZY5LzLPAZVosssQVlllhlTXWucoGm1zjOje4yS1u50LhKLdl+zIsuS3RVzKwlf/Z0qNKdgI7nhWztvjQ5l5wlJKD+LZkqPv1Lofmv5hQGpNCwjY/i2uB1P6H7zraNxW3LUMx6rAi83eptewYy6xyPF+OSDnu9uQgsJ2ekspZDKUahwgHflcoOxBDbf0FijS5uK/XLUzeFIHSFEwq+dkRlifaQgtbyV7gzczoKtHPTphZRlcrO8o8m3G8gKlplMcIisk9m5UlphjFcmQW88z4haZeSXZG3r8TK74rAAAAAAAB//8AAnjaY2BkYGDgAWIZIGYCQmYGTQZGBi0GDyCbBSzGAAANdgDVAHjadVJJTgJBFH1FdwKOIKB0lEEGwSDOs+KsaDyDGzYaE+LCEA/gwjMY4zlcegbjEYwLb4HvVwM9hXS6q/q9V/+/+v9DARhGFjWoVrP9gAhMIuh0IIxq3d81icH+I2fqNQJl/CKMJJ5C7dC3YRolow6D+Dwa2EAUeT5ZlLmb4Frkk0Waf2kkqBh38XlYmEKKCptdwpiLnWGOyT4XxSyu8Yg3fOJHmaqsGupWPat39aG+1B+uqE7xndPnM77oMZQ0nufulNG8SieTW7cV0CW0s4xPV+c9vboScj7NQkDjdmcRK2CFukG+bMV5QOGv4CLXQTGE3+3ycUzr7lR8PlfZgUEZzjAaOGv7WusywawHAaZXw2WMBKKJwz3OZLCaMl9V9v+CHpM6epFvVGtKVCX6Xg65G6SQ+McY8vCCyXSv85YyrRZ9W3QV03vbQZx6iZ3sZ5ETJ6xVkfGlgs7UOvwmM8UYXZAeHiZSYx9vOMkveMU+YyT1+Thv7e3FEStU5rkcFZIlx6/UZceHZ7hW6KTKyrlj2Rlr+r4OKve9ZDUlhzNZ23TWQ+yKiNM4dxmdt/APtJZExAB42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPpmTaIhjAYAPREFnQAA") format("woff");
  590. font-weight: 400;
  591. font-style: normal;
  592. }
  593. @font-face {
  594. font-family: 'framework7-skeleton';
  595. src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAYQAA0AAAAAEcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAF9AAAABkAAAAciVvoDU9TLzIAAAGcAAAASwAAAGBRtV1jY21hcAAAAfwAAAC8AAABamglddJjdnQgAAACuAAAAAQAAAAEABEBRGdhc3AAAAXsAAAACAAAAAj //wADZ2x5ZgAAA2wAAACUAAAJjHCzhiRoZWFkAAABMAAAAC4AAAA2ERr/HWhoZWEAAAFgAAAAGgAAACQC8ADFaG10eAAAAegAAAATAAAAtAMAABFsb2NhAAACvAAAAK4AAACuaNBmhG1heHAAAAF8AAAAHwAAACAAmgA5bmFtZQAABAAAAAFQAAACuLf6wytwb3N0AAAFUAAAAJkAAADOCKMIc3jaY2BkYGAA4lUx8ibx/DZfGbiZGEDgRu39AAT9/wAjA+MBIJeDASwNACBICpsAAHjaY2BkYGA88P8Agx6QAQSMYIQCWABQZgK3AAB42mNgZGBgCGPgYGBiAAEQycgAEnNg0AMJAAANJwDUAHjaY2BhZGCcwMDKwMDow5jGwMDgDqW/MkgytDAwMDGwcjLAACMDEghIc01haGBQYKhlPPD/AIMe4wEGB5gaxgNAHgNQjhEA6dgLvQB42mNkYBBkAAJGKB4KAAAOfQAVAHjaY2BgYGaAYBkGRgYQSAHyGMF8FgYPIM3HwMHAxMDGoMSgxWDNEMsQz1D7/z9QXIFBjUGHwRHIT/z////j/w/+3/9/6//N/zeg5iABRjYGuCAjE5BgQlcAdAILK5DBxs7BycXAzcPLxy8gKCQsIiomLiEpBVYjLSMrJ6+gqKSsoqqmrqGppa2jq6dvYGhkbGJqZs5gwWBpZW1ja2fv4Ojk7OLq5u7h6eXt4+vnHxAYFBwSyjDgAABJLiG7ABEBRAAAACoAKgAqADgARgBUAGIAcAB+AIwAmgCoALYAxADYAOYA9AECARABHgEsAToBSAFWAWQBcgGAAY4BnAGqAbgBxgHUAeIB8AH+AgwCGgIoAjYCRAJSAmACbgJ8AooCmAKmArQCwgLQAt4C8gMAAw4DHAMqAzgDRgNUA2IDcAN+A4wDmgOoA7YDxAPSA+AD7gP8BAoEGAQmBDQEQgRQBF4EbAR6BIgEnASqBLgExgAAeNpjYGIQZGBgmMkYysDMwM6gt5GRQd9mEzsLw1ujjWysd2w2MTMBmQwbmUHCrCDhTexsjH9sNjGCxI0FjQXVjQWVBTvK09IYQ/+tFmQ0BprGyMDw/wAjA+MBoJkMooKKgowMDkwM/xgYRuVwyjEhybFDZBXBKv4zQFVBVI6G36jcqNyo3GiZMSo3Kjes8hQAx51w5njapZC9agJBFIXP+EfSBMEXmEoU3GVcBNFWsLEJKbYKhEUnOrjryrggkgfIQ6RMnzZVHiBNijxM6pydHUiRFAEXLvebc8+duXcBXOEFAtXXw41ngQ6ePddwgXfPdYRCeW6gIx49N9EWb55b1L/oFI1Lnq5dV8kCXTx4rqGNV8913OLTcwNdcee5CSmePLeof2CGHHucYGGwxgYFJGdeos8cQWGICQbkGCkSrOjKGJbKgu6EVOoZ7zCuilm+P1mz3hSyt+zLSA0nAxmnycpkxsrFJrFpku3Nis57NpetGkcOYbHFGAEOzJqXao6SY0ebTTJ9zO12HBy2OtVFTvGX66c0d0LhsuVO2m0ScheJKeN/z1beESuRi+pPYJ7vinlu11pGoZJT+cdwVEdBFJSbn7djzLql1/iBlBsidLlcBrG2B8MHlRqGSil51nPfEi6AO3jaXc5ZM4IBAEbhp9RF1FhCRbmyVNYskSXG0CaEQvaf2j/LN112bt6Zc/HOETZiOJAJJmSc15ENmxARFTNpSlzCtBmz5iTNW7AoJR08LFmWlbNi1Zp1G/IKijZt2bZj156SfQcOHSk7dqLi1JlzF6ouXbl241ZNXUNTy522ew8edTx59qKrF3S9edf34dOXbz9+/f0DgycTFgAAAAAAAAH//wACeNpjYGBgZACCGwmaOWC69n4AjAYARC0G1wAAAA==") format("woff");
  596. font-weight: 300, 400, 500, 600, 700;
  597. font-style: normal, italic;
  598. }
  599. html {
  600. direction: rtl;
  601. }
  602. html,
  603. body,
  604. .framework7-root {
  605. position: relative;
  606. height: 100%;
  607. width: 100%;
  608. overflow-x: hidden;
  609. }
  610. body {
  611. margin: 0;
  612. padding: 0;
  613. width: 100%;
  614. background: #fff;
  615. overflow: hidden;
  616. -webkit-text-size-adjust: 100%;
  617. -webkit-font-smoothing: antialiased;
  618. font-family: var(--f7-font-family);
  619. font-size: var(--f7-font-size);
  620. line-height: var(--f7-line-height);
  621. color: var(--f7-text-color);
  622. }
  623. .theme-dark body,
  624. body.theme-dark {
  625. background: #000;
  626. }
  627. .theme-dark {
  628. color: var(--f7-text-color);
  629. }
  630. .framework7-root {
  631. overflow: hidden;
  632. box-sizing: border-box;
  633. }
  634. .framework7-initializing *,
  635. .framework7-initializing *:before,
  636. .framework7-initializing *:after {
  637. transition-duration: 0ms !important;
  638. }
  639. .device-ios,
  640. .device-android {
  641. cursor: pointer;
  642. }
  643. .device-ios {
  644. touch-action: manipulation;
  645. }
  646. @media (width: 1024px) and (height: 691px) and (orientation: landscape) {
  647. html,
  648. body,
  649. .framework7-root {
  650. height: 671px;
  651. }
  652. }
  653. @media (width: 1024px) and (height: 692px) and (orientation: landscape) {
  654. html,
  655. body,
  656. .framework7-root {
  657. height: 672px;
  658. }
  659. }
  660. * {
  661. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  662. -webkit-touch-callout: none;
  663. }
  664. a,
  665. input,
  666. textarea,
  667. select {
  668. outline: 0;
  669. }
  670. a {
  671. cursor: pointer;
  672. text-decoration: none;
  673. color: var(--f7-theme-color);
  674. }
  675. .link,
  676. .item-link {
  677. cursor: pointer;
  678. }
  679. p {
  680. margin: 1em 0;
  681. }
  682. .disabled {
  683. opacity: 0.55 !important;
  684. pointer-events: none !important;
  685. }
  686. html.device-full-viewport,
  687. html.device-full-viewport body {
  688. height: 100vh;
  689. }
  690. .ios .md-only,
  691. .ios .if-md,
  692. .ios .aurora-only,
  693. .ios .if-aurora,
  694. .ios .if-not-ios,
  695. .ios .not-ios {
  696. display: none !important;
  697. }
  698. @media (width: 1024px) and (height: 691px) and (orientation: landscape) {
  699. .ios,
  700. .ios body,
  701. .ios .framework7-root {
  702. height: 671px;
  703. }
  704. }
  705. @media (width: 1024px) and (height: 692px) and (orientation: landscape) {
  706. .ios,
  707. .ios body,
  708. .ios .framework7-root {
  709. height: 672px;
  710. }
  711. }
  712. .md .ios-only,
  713. .md .if-ios,
  714. .md .aurora-only,
  715. .md .if-aurora,
  716. .md .if-not-md,
  717. .md .not-md {
  718. display: none !important;
  719. }
  720. .aurora .ios-only,
  721. .aurora .if-ios,
  722. .aurora .md-only,
  723. .aurora .if-md,
  724. .aurora .if-not-aurora,
  725. .aurora .not-aurora {
  726. display: none !important;
  727. }
  728. /* === Statusbar === */
  729. /* === Views === */
  730. .views,
  731. .view {
  732. position: relative;
  733. height: 100%;
  734. z-index: 5000;
  735. overflow: hidden;
  736. box-sizing: border-box;
  737. }
  738. .framework7-root > .view,
  739. .framework7-root > .views {
  740. height: calc(100% - var(--f7-appbar-app-offset, 0px));
  741. }
  742. .view-resize-handler {
  743. width: 6px;
  744. height: 100%;
  745. position: absolute;
  746. left: var(--f7-page-master-width);
  747. margin-left: -3px;
  748. top: 0;
  749. cursor: col-resize;
  750. z-index: 1000;
  751. display: none;
  752. }
  753. .view-master-detail .view-resize-handler {
  754. display: block;
  755. }
  756. /* === Pages === */
  757. :root {
  758. --f7-page-master-width: 320px;
  759. --f7-page-master-border-color: rgba(0, 0, 0, 0.1);
  760. --f7-page-master-border-width: 1px;
  761. --f7-page-swipeback-transition-duration: 300ms;
  762. --f7-page-parallax-transition-duration: 500ms;
  763. --f7-page-cover-transition-duration: 450ms;
  764. --f7-page-dive-transition-duration: 500ms;
  765. --f7-page-fade-transition-duration: 500ms;
  766. --f7-page-flip-transition-duration: 700ms;
  767. --f7-page-push-transition-duration: 500ms;
  768. /*
  769. --f7-page-content-extra-padding-top: 0px;
  770. --f7-page-content-extra-padding-bottom: 0px;
  771. */
  772. }
  773. .ios {
  774. --f7-page-transition-duration: 400ms;
  775. --f7-page-bg-color: #efeff4;
  776. }
  777. .ios .theme-dark,
  778. .ios.theme-dark {
  779. --f7-page-bg-color: #000;
  780. }
  781. .md {
  782. --f7-page-transition-duration: 250ms;
  783. --f7-page-bg-color: #fff;
  784. }
  785. .md .theme-dark,
  786. .md.theme-dark {
  787. --f7-page-bg-color: #121212;
  788. }
  789. .aurora {
  790. --f7-page-transition-duration: 400ms;
  791. --f7-page-bg-color: #f3f3f3;
  792. }
  793. .aurora .theme-dark,
  794. .aurora.theme-dark {
  795. --f7-page-bg-color: #121212;
  796. }
  797. .theme-dark {
  798. --f7-page-master-border-color: rgba(255, 255, 255, 0.1);
  799. }
  800. .pages {
  801. position: relative;
  802. width: 100%;
  803. height: 100%;
  804. overflow: hidden;
  805. }
  806. .page {
  807. box-sizing: border-box;
  808. position: absolute;
  809. left: 0;
  810. top: 0;
  811. width: 100%;
  812. height: 100%;
  813. transform: none;
  814. background-color: var(--f7-page-bg-color);
  815. z-index: 1;
  816. }
  817. .page.stacked {
  818. display: none;
  819. }
  820. .page-with-navbar-large-collapsed {
  821. --f7-navbar-large-collapse-progress: 1;
  822. }
  823. .page-previous {
  824. pointer-events: none;
  825. }
  826. .page-content {
  827. overflow: auto;
  828. -webkit-overflow-scrolling: touch;
  829. box-sizing: border-box;
  830. height: 100%;
  831. position: relative;
  832. z-index: 1;
  833. padding-top: calc(var(--f7-page-navbar-offset, 0px) + var(--f7-page-toolbar-top-offset, 0px) + var(--f7-page-subnavbar-offset, 0px) + var(--f7-page-searchbar-offset, 0px) + var(--f7-page-content-extra-padding-top, 0px));
  834. padding-bottom: calc(var(--f7-page-toolbar-bottom-offset, 0px) + var(--f7-safe-area-bottom) + var(--f7-page-content-extra-padding-bottom, 0px));
  835. }
  836. .page-transitioning,
  837. .page-transitioning .page-shadow-effect,
  838. .page-transitioning .page-opacity-effect {
  839. transition-duration: var(--f7-page-transition-duration);
  840. }
  841. .page-transitioning-swipeback,
  842. .page-transitioning-swipeback .page-shadow-effect,
  843. .page-transitioning-swipeback .page-opacity-effect {
  844. transition-duration: var(--f7-page-swipeback-transition-duration);
  845. }
  846. .router-transition-forward .page-next,
  847. .router-transition-backward .page-next,
  848. .router-transition-forward .page-current,
  849. .router-transition-backward .page-current,
  850. .router-transition-forward .page-previous:not(.stacked),
  851. .router-transition-backward .page-previous:not(.stacked) {
  852. pointer-events: none;
  853. }
  854. .page-shadow-effect {
  855. position: absolute;
  856. top: 0;
  857. width: 16px;
  858. bottom: 0;
  859. z-index: -1;
  860. content: '';
  861. opacity: 0;
  862. left: 100%;
  863. background: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0.01) 50%, rgba(0, 0, 0, 0.2) 100%);
  864. }
  865. .page-opacity-effect {
  866. position: absolute;
  867. left: 0;
  868. top: 0;
  869. background: rgba(0, 0, 0, 0.1);
  870. width: 100%;
  871. bottom: 0;
  872. content: '';
  873. opacity: 0;
  874. z-index: 10000;
  875. }
  876. .ios .page-previous {
  877. transform: translate3d(20%, 0, 0);
  878. }
  879. .ios .page-next {
  880. transform: translate3d(-100%, 0, 0);
  881. }
  882. .ios .page-previous .page-opacity-effect {
  883. opacity: 1;
  884. }
  885. .ios .page-previous:after {
  886. opacity: 1;
  887. }
  888. .ios .page-current .page-shadow-effect {
  889. opacity: 1;
  890. }
  891. .ios .router-transition-forward .page-next {
  892. animation: ios-page-next-to-current var(--f7-page-transition-duration) forwards;
  893. }
  894. .ios .router-transition-forward .page-next:before {
  895. position: absolute;
  896. top: 0;
  897. width: 16px;
  898. bottom: 0;
  899. z-index: -1;
  900. content: '';
  901. opacity: 0;
  902. left: 100%;
  903. background: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0.01) 50%, rgba(0, 0, 0, 0.2) 100%);
  904. animation: ios-page-element-fade-in var(--f7-page-transition-duration) forwards;
  905. }
  906. .ios .router-transition-forward .page-current {
  907. animation: ios-page-current-to-previous var(--f7-page-transition-duration) forwards;
  908. }
  909. .ios .router-transition-forward .page-current:after {
  910. position: absolute;
  911. left: 0;
  912. top: 0;
  913. background: rgba(0, 0, 0, 0.1);
  914. width: 100%;
  915. bottom: 0;
  916. content: '';
  917. opacity: 0;
  918. z-index: 10000;
  919. animation: ios-page-element-fade-in var(--f7-page-transition-duration) forwards;
  920. }
  921. .ios .router-transition-backward .page-previous {
  922. animation: ios-page-previous-to-current var(--f7-page-transition-duration) forwards;
  923. }
  924. .ios .router-transition-backward .page-previous:after {
  925. position: absolute;
  926. left: 0;
  927. top: 0;
  928. background: rgba(0, 0, 0, 0.1);
  929. width: 100%;
  930. bottom: 0;
  931. content: '';
  932. opacity: 0;
  933. z-index: 10000;
  934. animation: ios-page-element-fade-out var(--f7-page-transition-duration) forwards;
  935. }
  936. .ios .router-transition-backward .page-current {
  937. animation: ios-page-current-to-next var(--f7-page-transition-duration) forwards;
  938. }
  939. .ios .router-transition-backward .page-current:before {
  940. position: absolute;
  941. top: 0;
  942. width: 16px;
  943. bottom: 0;
  944. z-index: -1;
  945. content: '';
  946. opacity: 0;
  947. left: 100%;
  948. background: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0.01) 50%, rgba(0, 0, 0, 0.2) 100%);
  949. animation: ios-page-element-fade-out var(--f7-page-transition-duration) forwards;
  950. }
  951. @keyframes ios-page-next-to-current {
  952. from {
  953. transform: translate3d(-100%, 0, 0);
  954. }
  955. to {
  956. transform: translate3d(0%, 0, 0);
  957. }
  958. }
  959. @keyframes ios-page-previous-to-current {
  960. from {
  961. transform: translate3d(20%, 0, 0);
  962. }
  963. to {
  964. transform: translate3d(0%, 0, 0);
  965. }
  966. }
  967. @keyframes ios-page-current-to-previous {
  968. from {
  969. transform: translate3d(0, 0, 0);
  970. }
  971. to {
  972. transform: translate3d(20%, 0, 0);
  973. }
  974. }
  975. @keyframes ios-page-current-to-next {
  976. from {
  977. transform: translate3d(0, 0, 0);
  978. }
  979. to {
  980. transform: translate3d(-100%, 0, 0);
  981. }
  982. }
  983. @keyframes ios-page-element-fade-in {
  984. from {
  985. opacity: 0;
  986. }
  987. to {
  988. opacity: 1;
  989. }
  990. }
  991. @keyframes ios-page-element-fade-out {
  992. from {
  993. opacity: 1;
  994. }
  995. to {
  996. opacity: 0;
  997. }
  998. }
  999. .md .page-next {
  1000. transform: translate3d(0, 56px, 0);
  1001. opacity: 0;
  1002. pointer-events: none;
  1003. }
  1004. .md .page-next.page-next-on-right {
  1005. transform: translate3d(-100%, 0, 0);
  1006. }
  1007. .md .router-transition-forward .page-next {
  1008. animation: md-page-next-to-current var(--f7-page-transition-duration) forwards;
  1009. }
  1010. .md .router-transition-forward .page-current {
  1011. animation: none;
  1012. }
  1013. .md .router-transition-backward .page-current {
  1014. animation: md-page-current-to-next var(--f7-page-transition-duration) forwards;
  1015. }
  1016. .md .router-transition-backward .page-previous {
  1017. animation: none;
  1018. }
  1019. @keyframes md-page-next-to-current {
  1020. from {
  1021. transform: translate3d(0, 56px, 0);
  1022. opacity: 0;
  1023. }
  1024. to {
  1025. transform: translate3d(0, 0px, 0);
  1026. opacity: 1;
  1027. }
  1028. }
  1029. @keyframes md-page-current-to-next {
  1030. from {
  1031. transform: translate3d(0, 0, 0);
  1032. opacity: 1;
  1033. }
  1034. to {
  1035. transform: translate3d(0, 56px, 0);
  1036. opacity: 0;
  1037. }
  1038. }
  1039. .aurora .page-next {
  1040. pointer-events: none;
  1041. transform: translate3d(-100%, 0px, 0);
  1042. }
  1043. .aurora .page-next.page-next-on-right {
  1044. transform: translate3d(-100%, 0, 0);
  1045. }
  1046. .aurora .page-previous .page-opacity-effect {
  1047. opacity: 1;
  1048. }
  1049. .aurora .page-previous:after {
  1050. opacity: 1;
  1051. }
  1052. .aurora .router-transition-forward .page-next {
  1053. animation: aurora-page-next-to-current var(--f7-page-transition-duration) forwards;
  1054. }
  1055. .aurora .router-transition-forward .page-current {
  1056. animation: none;
  1057. }
  1058. .aurora .router-transition-forward .page-current:after {
  1059. position: absolute;
  1060. left: 0;
  1061. top: 0;
  1062. background: rgba(0, 0, 0, 0.1);
  1063. width: 100%;
  1064. bottom: 0;
  1065. content: '';
  1066. opacity: 0;
  1067. z-index: 10000;
  1068. animation: aurora-page-element-fade-in var(--f7-page-transition-duration) forwards;
  1069. }
  1070. .aurora .router-transition-backward .page-current {
  1071. animation: aurora-page-current-to-next var(--f7-page-transition-duration) forwards;
  1072. }
  1073. .aurora .router-transition-backward .page-previous {
  1074. animation: none;
  1075. }
  1076. .aurora .router-transition-backward .page-previous:after {
  1077. position: absolute;
  1078. left: 0;
  1079. top: 0;
  1080. background: rgba(0, 0, 0, 0.1);
  1081. width: 100%;
  1082. bottom: 0;
  1083. content: '';
  1084. opacity: 0;
  1085. z-index: 10000;
  1086. animation: aurora-page-element-fade-out var(--f7-page-transition-duration) forwards;
  1087. }
  1088. @keyframes aurora-page-next-to-current {
  1089. from {
  1090. transform: translate3d(-100%, 0, 0);
  1091. }
  1092. to {
  1093. transform: translate3d(0, 0px, 0);
  1094. }
  1095. }
  1096. @keyframes aurora-page-current-to-next {
  1097. from {
  1098. transform: translate3d(0, 0, 0);
  1099. }
  1100. to {
  1101. transform: translate3d(-100%, 0, 0);
  1102. }
  1103. }
  1104. @keyframes aurora-page-element-fade-in {
  1105. from {
  1106. opacity: 0;
  1107. }
  1108. to {
  1109. opacity: 1;
  1110. }
  1111. }
  1112. @keyframes aurora-page-element-fade-out {
  1113. from {
  1114. opacity: 1;
  1115. }
  1116. to {
  1117. opacity: 0;
  1118. }
  1119. }
  1120. .view:not(.view-master-detail) .page-master-stacked {
  1121. display: none;
  1122. }
  1123. .view:not(.view-master-detail) .navbar-master-stacked {
  1124. display: none;
  1125. }
  1126. .view-master-detail .page-master,
  1127. .view-master-detail .navbar-master {
  1128. width: var(--f7-page-master-width);
  1129. left: auto;
  1130. right: 0;
  1131. --f7-safe-area-left: 0px;
  1132. --f7-safe-area-outer-left: 0px;
  1133. border-left: var(--f7-page-master-border-width) solid var(--f7-page-master-border-color);
  1134. }
  1135. .view-master-detail .page-master-detail,
  1136. .view-master-detail .navbar-master-detail {
  1137. width: calc(100% - var(--f7-page-master-width));
  1138. --f7-safe-area-right: 0px;
  1139. --f7-safe-area-outer-right: 0px;
  1140. right: var(--f7-page-master-width);
  1141. }
  1142. .view-master-detail .page-master {
  1143. z-index: 2;
  1144. transform: none;
  1145. pointer-events: auto;
  1146. }
  1147. .view-master-detail .page-master:before,
  1148. .view-master-detail .page-master:after {
  1149. display: none;
  1150. }
  1151. .view-master-detail.router-transition .page-master {
  1152. animation: none;
  1153. }
  1154. .md .router-transition-custom .page-previous,
  1155. .ios .router-transition-custom .page-previous,
  1156. .aurora .router-transition-custom .page-previous,
  1157. .md .router-transition-custom .page-next,
  1158. .ios .router-transition-custom .page-next,
  1159. .aurora .router-transition-custom .page-next {
  1160. opacity: 1;
  1161. transform: none;
  1162. }
  1163. .router-transition-f7-circle-forward:after,
  1164. .router-transition-f7-circle-backward:after {
  1165. content: '';
  1166. position: absolute;
  1167. left: 50%;
  1168. top: 50%;
  1169. width: 100vmax;
  1170. height: 100vmax;
  1171. margin-left: -50vmax;
  1172. margin-top: -50vmax;
  1173. background: var(--f7-page-bg-color);
  1174. z-index: 100;
  1175. }
  1176. .router-transition-f7-circle-forward:after {
  1177. transform: scale(0);
  1178. border-radius: 50%;
  1179. animation: f7-circle-circle-in 400ms forwards;
  1180. }
  1181. .router-transition-f7-circle-forward .page-next {
  1182. opacity: 0 !important;
  1183. transform: scale(0.9) !important;
  1184. animation: f7-circle-next-to-current 300ms forwards;
  1185. animation-delay: 300ms;
  1186. z-index: 150;
  1187. }
  1188. .router-transition-f7-circle-backward:after {
  1189. animation: f7-circle-circle-out 300ms forwards;
  1190. animation-delay: 350ms;
  1191. }
  1192. .router-transition-f7-circle-backward .page-current {
  1193. animation: f7-circle-current-to-next 700ms forwards;
  1194. z-index: 150;
  1195. }
  1196. @keyframes f7-circle-circle-in {
  1197. from {
  1198. transform: scale(0);
  1199. border-radius: 50%;
  1200. }
  1201. 50% {
  1202. border-radius: 50%;
  1203. }
  1204. to {
  1205. transform: scale(1);
  1206. border-radius: 0%;
  1207. }
  1208. }
  1209. @keyframes f7-circle-circle-out {
  1210. from {
  1211. transform: scale(1);
  1212. border-radius: 0%;
  1213. }
  1214. 50% {
  1215. border-radius: 50%;
  1216. }
  1217. to {
  1218. transform: scale(0);
  1219. border-radius: 50%;
  1220. }
  1221. }
  1222. @keyframes f7-circle-next-to-current {
  1223. from {
  1224. transform: scale(0.9);
  1225. opacity: 0;
  1226. }
  1227. 40% {
  1228. transform: scale(1.035);
  1229. opacity: 1;
  1230. }
  1231. to {
  1232. transform: scale(1);
  1233. opacity: 1;
  1234. }
  1235. }
  1236. @keyframes f7-circle-current-to-next {
  1237. from {
  1238. transform: scale(1);
  1239. opacity: 1;
  1240. }
  1241. 34% {
  1242. transform: scale(1.035);
  1243. opacity: 1;
  1244. }
  1245. 57% {
  1246. transform: scale(0.9);
  1247. opacity: 0;
  1248. }
  1249. to {
  1250. transform: scale(0.9);
  1251. opacity: 0;
  1252. }
  1253. }
  1254. .router-transition-f7-cover-v-forward,
  1255. .router-transition-f7-cover-v-backward {
  1256. background: #000;
  1257. perspective: 1200px;
  1258. }
  1259. .router-transition-f7-cover-v-forward .page-next {
  1260. animation: f7-cover-v-next-to-current var(--f7-page-cover-transition-duration) forwards;
  1261. }
  1262. .router-transition-f7-cover-v-forward .page-current {
  1263. animation: f7-cover-v-current-to-prev var(--f7-page-cover-transition-duration) forwards;
  1264. }
  1265. .router-transition-f7-cover-v-backward .page-current {
  1266. animation: f7-cover-v-current-to-next var(--f7-page-cover-transition-duration) forwards;
  1267. }
  1268. .router-transition-f7-cover-v-backward .page-previous {
  1269. animation: f7-cover-v-prev-to-current var(--f7-page-cover-transition-duration) forwards;
  1270. }
  1271. @keyframes f7-cover-v-next-to-current {
  1272. from {
  1273. transform: translateY(100%);
  1274. }
  1275. to {
  1276. transform: translateY(0%);
  1277. }
  1278. }
  1279. @keyframes f7-cover-v-current-to-next {
  1280. from {
  1281. transform: translateY(0%);
  1282. }
  1283. to {
  1284. transform: translateY(100%);
  1285. }
  1286. }
  1287. @keyframes f7-cover-v-current-to-prev {
  1288. from {
  1289. transform: translateZ(0);
  1290. opacity: 1;
  1291. }
  1292. to {
  1293. transform: translateZ(-300px);
  1294. opacity: 0.5;
  1295. }
  1296. }
  1297. @keyframes f7-cover-v-prev-to-current {
  1298. from {
  1299. transform: translateZ(-300px);
  1300. opacity: 0.5;
  1301. }
  1302. to {
  1303. transform: translateZ(0);
  1304. opacity: 1;
  1305. }
  1306. }
  1307. .router-transition-f7-cover-forward,
  1308. .router-transition-f7-cover-backward {
  1309. background: #000;
  1310. perspective: 1200px;
  1311. }
  1312. .router-transition-f7-cover-forward .page-next {
  1313. animation: f7-cover-next-to-current var(--f7-page-cover-transition-duration) forwards;
  1314. }
  1315. .router-transition-f7-cover-forward .page-current {
  1316. animation: f7-cover-current-to-prev var(--f7-page-cover-transition-duration) forwards;
  1317. }
  1318. .router-transition-f7-cover-backward .page-current {
  1319. animation: f7-cover-current-to-next var(--f7-page-cover-transition-duration) forwards;
  1320. }
  1321. .router-transition-f7-cover-backward .page-previous {
  1322. animation: f7-cover-prev-to-current var(--f7-page-cover-transition-duration) forwards;
  1323. }
  1324. @keyframes f7-cover-next-to-current {
  1325. from {
  1326. transform: translateX(-100%);
  1327. }
  1328. to {
  1329. transform: translateX(0%);
  1330. }
  1331. }
  1332. @keyframes f7-cover-current-to-next {
  1333. from {
  1334. transform: translateX(0%);
  1335. }
  1336. to {
  1337. transform: translateX(-100%);
  1338. }
  1339. }
  1340. @keyframes f7-cover-current-to-prev {
  1341. from {
  1342. transform: translateZ(0);
  1343. opacity: 1;
  1344. }
  1345. to {
  1346. transform: translateZ(-300px);
  1347. opacity: 0.5;
  1348. }
  1349. }
  1350. @keyframes f7-cover-prev-to-current {
  1351. from {
  1352. transform: translateZ(-300px);
  1353. opacity: 0.5;
  1354. }
  1355. to {
  1356. transform: translateZ(0);
  1357. opacity: 1;
  1358. }
  1359. }
  1360. .router-transition-f7-dive-forward,
  1361. .router-transition-f7-dive-backward {
  1362. background: var(--f7-page-bg-color);
  1363. perspective: 1200px;
  1364. }
  1365. .router-transition-f7-dive-forward .page-next {
  1366. animation: f7-dive-next-to-current var(--f7-page-dive-transition-duration) forwards;
  1367. }
  1368. .router-transition-f7-dive-forward .page-current {
  1369. animation: f7-dive-current-to-prev var(--f7-page-dive-transition-duration) forwards;
  1370. }
  1371. .router-transition-f7-dive-backward .page-current {
  1372. animation: f7-dive-current-to-next var(--f7-page-dive-transition-duration) forwards;
  1373. }
  1374. .router-transition-f7-dive-backward .page-previous {
  1375. animation: f7-dive-prev-to-current var(--f7-page-dive-transition-duration) forwards;
  1376. }
  1377. @keyframes f7-dive-next-to-current {
  1378. from {
  1379. opacity: 0;
  1380. transform: translateZ(-150px);
  1381. }
  1382. 50% {
  1383. opacity: 0;
  1384. }
  1385. to {
  1386. opacity: 1;
  1387. transform: translateZ(0px);
  1388. }
  1389. }
  1390. @keyframes f7-dive-current-to-next {
  1391. from {
  1392. opacity: 1;
  1393. transform: translateZ(0px);
  1394. }
  1395. 50% {
  1396. opacity: 0;
  1397. }
  1398. to {
  1399. opacity: 0;
  1400. transform: translateZ(-150px);
  1401. }
  1402. }
  1403. @keyframes f7-dive-current-to-prev {
  1404. from {
  1405. transform: translateZ(0px);
  1406. opacity: 1;
  1407. }
  1408. 50% {
  1409. opacity: 0;
  1410. }
  1411. to {
  1412. opacity: 0;
  1413. transform: translateZ(150px);
  1414. }
  1415. }
  1416. @keyframes f7-dive-prev-to-current {
  1417. from {
  1418. opacity: 0;
  1419. transform: translateZ(150px);
  1420. }
  1421. 50% {
  1422. opacity: 0;
  1423. }
  1424. to {
  1425. opacity: 1;
  1426. transform: translateZ(0px);
  1427. }
  1428. }
  1429. .router-transition-f7-fade-forward,
  1430. .router-transition-f7-fade-backward {
  1431. background: var(--f7-page-bg-color);
  1432. }
  1433. .router-transition-f7-fade-forward .page-next {
  1434. opacity: 0 !important;
  1435. animation: f7-fade-in var(--f7-page-fade-transition-duration) forwards;
  1436. }
  1437. .router-transition-f7-fade-forward .page-current {
  1438. animation: f7-fade-out var(--f7-page-fade-transition-duration) forwards;
  1439. }
  1440. .router-transition-f7-fade-backward .page-current {
  1441. animation: f7-fade-out var(--f7-page-fade-transition-duration) forwards;
  1442. }
  1443. .router-transition-f7-fade-backward .page-previous {
  1444. animation: f7-fade-in var(--f7-page-fade-transition-duration) forwards;
  1445. }
  1446. @keyframes f7-fade-in {
  1447. from {
  1448. opacity: 0;
  1449. }
  1450. 50% {
  1451. opacity: 0;
  1452. }
  1453. to {
  1454. opacity: 1;
  1455. }
  1456. }
  1457. @keyframes f7-fade-out {
  1458. from {
  1459. opacity: 1;
  1460. }
  1461. 50% {
  1462. opacity: 0;
  1463. }
  1464. to {
  1465. opacity: 0;
  1466. }
  1467. }
  1468. .router-transition-f7-flip-forward,
  1469. .router-transition-f7-flip-backward {
  1470. background: #000;
  1471. perspective: 1200px;
  1472. }
  1473. .router-transition-f7-flip-forward .page,
  1474. .router-transition-f7-flip-backward .page {
  1475. -webkit-backface-visibility: hidden;
  1476. backface-visibility: hidden;
  1477. }
  1478. .router-transition-f7-flip-forward .page-next {
  1479. animation: f7-flip-next-to-current var(--f7-page-flip-transition-duration) forwards;
  1480. }
  1481. .router-transition-f7-flip-forward .page-current {
  1482. animation: f7-flip-current-to-prev var(--f7-page-flip-transition-duration) forwards;
  1483. }
  1484. .router-transition-f7-flip-backward .page-current {
  1485. animation: f7-flip-current-to-next var(--f7-page-flip-transition-duration) forwards;
  1486. }
  1487. .router-transition-f7-flip-backward .page-previous {
  1488. animation: f7-flip-prev-to-current var(--f7-page-flip-transition-duration) forwards;
  1489. }
  1490. @keyframes f7-flip-next-to-current {
  1491. from {
  1492. border-radius: 30px;
  1493. transform: translateZ(-100vmax) rotateY(-180deg);
  1494. }
  1495. to {
  1496. border-radius: 0;
  1497. transform: translateZ(0px) rotateY(0deg);
  1498. }
  1499. }
  1500. @keyframes f7-flip-current-to-next {
  1501. from {
  1502. border-radius: 0px;
  1503. transform: translateZ(0px) rotateY(0deg);
  1504. }
  1505. to {
  1506. border-radius: 30px;
  1507. transform: translateZ(-100vmax) rotateY(-180deg);
  1508. }
  1509. }
  1510. @keyframes f7-flip-current-to-prev {
  1511. from {
  1512. border-radius: 0px;
  1513. transform: translateZ(0px) rotateY(0deg);
  1514. }
  1515. to {
  1516. border-radius: 30px;
  1517. transform: translateZ(-100vmax) rotateY(180deg);
  1518. }
  1519. }
  1520. @keyframes f7-flip-prev-to-current {
  1521. from {
  1522. border-radius: 30px;
  1523. transform: translateZ(-100vmax) rotateY(180deg);
  1524. }
  1525. to {
  1526. border-radius: 0px;
  1527. transform: translateZ(0px) rotateY(0deg);
  1528. }
  1529. }
  1530. .router-transition-f7-parallax-forward .page-next {
  1531. animation: f7-parallax-next-to-current var(--f7-page-parallax-transition-duration) forwards;
  1532. }
  1533. .router-transition-f7-parallax-forward .page-current {
  1534. animation: f7-parallax-current-to-prev var(--f7-page-parallax-transition-duration) forwards;
  1535. }
  1536. .router-transition-f7-parallax-backward .page-current {
  1537. animation: f7-parallax-current-to-next var(--f7-page-parallax-transition-duration) forwards;
  1538. }
  1539. .router-transition-f7-parallax-backward .page-previous {
  1540. animation: f7-parallax-prev-to-current var(--f7-page-parallax-transition-duration) forwards;
  1541. }
  1542. @keyframes f7-parallax-next-to-current {
  1543. from {
  1544. transform: translateX(-100%);
  1545. }
  1546. to {
  1547. transform: translateX(0%);
  1548. }
  1549. }
  1550. @keyframes f7-parallax-current-to-next {
  1551. from {
  1552. transform: translateX(0%);
  1553. }
  1554. to {
  1555. transform: translateX(-100%);
  1556. }
  1557. }
  1558. @keyframes f7-parallax-current-to-prev {
  1559. from {
  1560. transform: translateX(0%);
  1561. }
  1562. to {
  1563. transform: translateX(20%);
  1564. }
  1565. }
  1566. @keyframes f7-parallax-prev-to-current {
  1567. from {
  1568. transform: translateX(20%);
  1569. }
  1570. to {
  1571. transform: translateX(0%);
  1572. }
  1573. }
  1574. .router-transition-f7-push-forward .page-next {
  1575. animation: f7-push-next-to-current var(--f7-page-push-transition-duration) forwards;
  1576. }
  1577. .router-transition-f7-push-forward .page-current {
  1578. animation: f7-push-current-to-prev var(--f7-page-push-transition-duration) forwards;
  1579. }
  1580. .router-transition-f7-push-backward .page-current {
  1581. animation: f7-push-current-to-next var(--f7-page-push-transition-duration) forwards;
  1582. }
  1583. .router-transition-f7-push-backward .page-previous {
  1584. animation: f7-push-prev-to-current var(--f7-page-push-transition-duration) forwards;
  1585. }
  1586. @keyframes f7-push-next-to-current {
  1587. from {
  1588. transform: translateX(-100%);
  1589. }
  1590. to {
  1591. transform: translateX(0%);
  1592. }
  1593. }
  1594. @keyframes f7-push-current-to-next {
  1595. from {
  1596. transform: translateX(0%);
  1597. }
  1598. to {
  1599. transform: translateX(-100%);
  1600. }
  1601. }
  1602. @keyframes f7-push-current-to-prev {
  1603. from {
  1604. transform: translateX(0%);
  1605. }
  1606. to {
  1607. transform: translateX(100%);
  1608. }
  1609. }
  1610. @keyframes f7-push-prev-to-current {
  1611. from {
  1612. transform: translateX(100%);
  1613. }
  1614. to {
  1615. transform: translateX(0%);
  1616. }
  1617. }
  1618. /* === Link === */
  1619. :root {
  1620. --f7-link-highlight-black: rgba(0, 0, 0, 0.1);
  1621. --f7-link-highlight-white: rgba(255, 255, 255, 0.15);
  1622. --f7-link-highlight-color: var(--f7-link-highlight-black);
  1623. }
  1624. .theme-dark {
  1625. --f7-link-highlight-color: var(--f7-link-highlight-white);
  1626. }
  1627. .link,
  1628. .tab-link {
  1629. display: inline-flex;
  1630. align-items: center;
  1631. align-content: center;
  1632. justify-content: center;
  1633. position: relative;
  1634. box-sizing: border-box;
  1635. z-index: 1;
  1636. }
  1637. .link i + span,
  1638. .link i + i,
  1639. .link span + i,
  1640. .link span + span {
  1641. margin-right: 4px;
  1642. }
  1643. .ios .link {
  1644. transition: opacity 300ms;
  1645. }
  1646. .ios .link.active-state {
  1647. opacity: 0.3;
  1648. transition-duration: 0ms;
  1649. }
  1650. .aurora .link {
  1651. transition: opacity 300ms;
  1652. }
  1653. .aurora .link.active-state {
  1654. opacity: 0.3;
  1655. transition-duration: 0ms;
  1656. }
  1657. /* === Navbar === */
  1658. :root {
  1659. /*
  1660. --f7-navbar-bg-color: var(--f7-bars-bg-color);
  1661. --f7-navbar-bg-color-rgb: var(--f7-bars-bg-color-rgb);
  1662. --f7-navbar-bg-image: var(--f7-bars-bg-image);
  1663. --f7-navbar-border-color: var(--f7-bars-border-color);
  1664. --f7-navbar-link-color: var(--f7-bars-link-color);
  1665. --f7-navbar-text-color: var(--f7-bars-text-color);
  1666. */
  1667. --f7-navbar-hide-show-transition-duration: 400ms;
  1668. --f7-navbar-title-line-height: 1.2;
  1669. --f7-navbar-title-font-size: inherit;
  1670. --f7-navbar-subtitle-text-align: inherit;
  1671. --f7-navbar-large-title-line-height: 1.2;
  1672. --f7-navbar-large-title-text-color: inherit;
  1673. --f7-navbar-large-title-padding-left: 16px;
  1674. --f7-navbar-large-title-padding-right: 16px;
  1675. }
  1676. .ios {
  1677. --f7-navbar-height: 44px;
  1678. --f7-navbar-tablet-height: 44px;
  1679. --f7-navbar-font-size: 17px;
  1680. --f7-navbar-inner-padding-left: 8px;
  1681. --f7-navbar-inner-padding-right: 8px;
  1682. --f7-navbar-title-font-weight: 600;
  1683. --f7-navbar-title-margin-left: 0;
  1684. --f7-navbar-title-margin-right: 0;
  1685. --f7-navbar-title-text-align: center;
  1686. --f7-navbar-subtitle-font-size: 10px;
  1687. --f7-navbar-subtitle-line-height: 1;
  1688. --f7-navbar-shadow-image: none;
  1689. --f7-navbar-large-title-height: 52px;
  1690. --f7-navbar-large-title-font-size: 34px;
  1691. --f7-navbar-large-title-font-weight: 700;
  1692. --f7-navbar-large-title-letter-spacing: -0.03em;
  1693. --f7-navbar-large-title-padding-vertical: 6px;
  1694. /*
  1695. --f7-navbar-link-height: var(--f7-navbar-height);
  1696. --f7-navbar-link-line-height: var(--f7-navbar-height);
  1697. */
  1698. --f7-navbar-subtitle-text-color: rgba(0, 0, 0, 0.55);
  1699. }
  1700. .ios .theme-dark,
  1701. .ios.theme-dark {
  1702. --f7-navbar-subtitle-text-color: rgba(255, 255, 255, 0.55);
  1703. }
  1704. .md {
  1705. --f7-navbar-height: 56px;
  1706. --f7-navbar-tablet-height: 64px;
  1707. --f7-navbar-font-size: 20px;
  1708. --f7-navbar-inner-padding-left: 0px;
  1709. --f7-navbar-inner-padding-right: 0px;
  1710. --f7-navbar-title-font-weight: 500;
  1711. --f7-navbar-title-margin-left: 16px;
  1712. --f7-navbar-title-margin-right: 16px;
  1713. --f7-navbar-title-text-align: left;
  1714. --f7-navbar-subtitle-font-size: 14px;
  1715. --f7-navbar-subtitle-line-height: 1.2;
  1716. --f7-navbar-shadow-image: var(--f7-bars-shadow-bottom-image);
  1717. --f7-navbar-large-title-font-size: 34px;
  1718. --f7-navbar-large-title-height: 56px;
  1719. --f7-navbar-large-title-font-weight: 500;
  1720. --f7-navbar-large-title-letter-spacing: 0;
  1721. --f7-navbar-large-title-padding-vertical: 8px;
  1722. /*
  1723. --f7-navbar-link-height: var(--f7-navbar-height);
  1724. --f7-navbar-link-line-height: var(--f7-navbar-height);
  1725. */
  1726. --f7-navbar-subtitle-text-color: rgba(0, 0, 0, 0.85);
  1727. }
  1728. .md .theme-dark,
  1729. .md.theme-dark {
  1730. --f7-navbar-subtitle-text-color: rgba(255, 255, 255, 0.85);
  1731. }
  1732. .aurora {
  1733. --f7-navbar-height: 38px;
  1734. --f7-navbar-tablet-height: 38px;
  1735. --f7-navbar-font-size: 14px;
  1736. --f7-navbar-inner-padding-left: 16px;
  1737. --f7-navbar-inner-padding-right: 16px;
  1738. --f7-navbar-title-font-weight: 600;
  1739. --f7-navbar-title-margin-left: 0;
  1740. --f7-navbar-title-margin-right: 0;
  1741. --f7-navbar-title-text-align: center;
  1742. --f7-navbar-subtitle-font-size: 12px;
  1743. --f7-navbar-subtitle-line-height: 1;
  1744. --f7-navbar-shadow-image: none;
  1745. --f7-navbar-large-title-height: 38px;
  1746. --f7-navbar-large-title-font-size: 26px;
  1747. --f7-navbar-large-title-font-weight: bold;
  1748. --f7-navbar-large-title-letter-spacing: -0.03em;
  1749. --f7-navbar-large-title-padding-vertical: 4px;
  1750. --f7-navbar-link-height: auto;
  1751. --f7-navbar-link-line-height: inherit;
  1752. --f7-navbar-subtitle-text-color: rgba(0, 0, 0, 0.6);
  1753. }
  1754. .aurora .theme-dark,
  1755. .aurora.theme-dark {
  1756. --f7-navbar-subtitle-text-color: rgba(255, 255, 255, 0.5);
  1757. }
  1758. .navbars,
  1759. .navbar {
  1760. z-index: 500;
  1761. left: 0;
  1762. top: 0;
  1763. width: 100%;
  1764. }
  1765. .navbars {
  1766. position: absolute;
  1767. }
  1768. .navbars .navbar {
  1769. z-index: auto;
  1770. }
  1771. .navbar {
  1772. --f7-navbar-large-collapse-progress: 0;
  1773. position: relative;
  1774. -webkit-backface-visibility: hidden;
  1775. backface-visibility: hidden;
  1776. box-sizing: border-box;
  1777. margin: 0;
  1778. height: calc(var(--f7-navbar-height) + var(--f7-safe-area-top));
  1779. color: var(--f7-navbar-text-color, var(--f7-bars-text-color));
  1780. font-size: var(--f7-navbar-font-size);
  1781. }
  1782. .navbar.stacked {
  1783. display: none;
  1784. }
  1785. .navbar b {
  1786. font-weight: 500;
  1787. }
  1788. .navbar a {
  1789. color: var(--f7-navbar-link-color, var(--f7-bars-link-color, var(--f7-theme-color)));
  1790. }
  1791. .navbar a.link {
  1792. display: flex;
  1793. justify-content: flex-start;
  1794. line-height: var(--f7-navbar-link-line-height, var(--f7-navbar-height));
  1795. height: var(--f7-navbar-link-height, var(--f7-navbar-height));
  1796. }
  1797. .navbar .title,
  1798. .navbar .left,
  1799. .navbar .right {
  1800. position: relative;
  1801. z-index: 10;
  1802. }
  1803. .navbar .title {
  1804. position: relative;
  1805. overflow: hidden;
  1806. text-overflow: ellipsis;
  1807. white-space: nowrap;
  1808. flex-shrink: 10;
  1809. font-weight: var(--f7-navbar-title-font-weight);
  1810. display: inline-block;
  1811. line-height: var(--f7-navbar-title-line-height);
  1812. text-align: var(--f7-navbar-title-text-align);
  1813. font-size: var(--f7-navbar-title-font-size);
  1814. margin-right: var(--f7-navbar-title-margin-left);
  1815. margin-left: var(--f7-navbar-title-margin-left);
  1816. }
  1817. .navbar .subtitle {
  1818. display: block;
  1819. color: var(--f7-navbar-subtitle-text-color);
  1820. font-weight: normal;
  1821. font-size: var(--f7-navbar-subtitle-font-size);
  1822. line-height: var(--f7-navbar-subtitle-line-height);
  1823. text-align: var(--f7-navbar-subtitle-text-align);
  1824. }
  1825. .navbar .left,
  1826. .navbar .right {
  1827. flex-shrink: 0;
  1828. display: flex;
  1829. justify-content: flex-start;
  1830. align-items: center;
  1831. }
  1832. .navbar .right:first-child {
  1833. position: absolute;
  1834. height: 100%;
  1835. }
  1836. .navbar.no-hairline .navbar-bg:after,
  1837. .navbar.no-border .navbar-bg:after,
  1838. .navbar .no-hairline .navbar-bg:after,
  1839. .navbar .no-border .navbar-bg:after {
  1840. display: none !important;
  1841. }
  1842. .navbar.no-hairline .title-large:after,
  1843. .navbar.no-border .title-large:after,
  1844. .navbar .no-hairline .title-large:after,
  1845. .navbar .no-border .title-large:after {
  1846. display: none !important;
  1847. }
  1848. .navbar.no-shadow .navbar-bg:before,
  1849. .navbar .no-shadow .navbar-bg:before {
  1850. display: none !important;
  1851. }
  1852. .navbar.navbar-hidden .navbar-bg:before,
  1853. .navbar-hidden .navbar .navbar-bg:before {
  1854. opacity: 0 !important;
  1855. }
  1856. .navbar-bg {
  1857. position: absolute;
  1858. left: 0;
  1859. top: 0;
  1860. width: 100%;
  1861. height: 100%;
  1862. pointer-events: none;
  1863. z-index: 0;
  1864. background: var(--f7-navbar-bg-color);
  1865. background-image: var(--f7-navbar-bg-image, var(--f7-bars-bg-image));
  1866. background-color: var(--f7-navbar-bg-color, var(--f7-bars-bg-color));
  1867. transition-property: transform;
  1868. }
  1869. @supports ((-webkit-backdrop-filter: blur(20px)) or (backdrop-filter: blur(20px))) {
  1870. .ios-translucent-bars .navbar-bg {
  1871. background-color: rgba(var(--f7-navbar-bg-color-rgb, var(--f7-bars-bg-color-rgb)), var(--f7-bars-translucent-opacity));
  1872. -webkit-backdrop-filter: saturate(180%) blur(var(--f7-bars-translucent-blur));
  1873. backdrop-filter: saturate(180%) blur(var(--f7-bars-translucent-blur));
  1874. }
  1875. }
  1876. .navbar-bg:after,
  1877. .navbar-bg:before {
  1878. -webkit-backface-visibility: hidden;
  1879. backface-visibility: hidden;
  1880. }
  1881. .navbar-bg:after {
  1882. content: '';
  1883. position: absolute;
  1884. background-color: var(--f7-navbar-border-color, var(--f7-bars-border-color));
  1885. display: block;
  1886. z-index: 15;
  1887. top: auto;
  1888. right: auto;
  1889. bottom: 0;
  1890. left: 0;
  1891. height: 1px;
  1892. width: 100%;
  1893. transform-origin: 50% 100%;
  1894. transform: scaleY(calc(1 / var(--f7-device-pixel-ratio)));
  1895. }
  1896. .navbar-bg:before {
  1897. content: '';
  1898. position: absolute;
  1899. right: 0;
  1900. width: 100%;
  1901. top: 100%;
  1902. bottom: auto;
  1903. height: 8px;
  1904. pointer-events: none;
  1905. background: var(--f7-navbar-shadow-image);
  1906. }
  1907. .navbar-bg:after {
  1908. z-index: 1;
  1909. }
  1910. @media (min-width: 768px) and (min-height: 600px) {
  1911. :root {
  1912. --f7-navbar-height: var(--f7-navbar-tablet-height);
  1913. }
  1914. }
  1915. .navbar-transitioning,
  1916. .navbar-transitioning .left,
  1917. .navbar-transitioning .title,
  1918. .navbar-transitioning .right,
  1919. .navbar-transitioning .title-large-text,
  1920. .navbar-transitioning .navbar-bg,
  1921. .navbar-transitioning .subnavbar,
  1922. .navbar-transitioning .navbar-bg:before {
  1923. transition-duration: var(--f7-navbar-hide-show-transition-duration);
  1924. }
  1925. .navbar-page-transitioning {
  1926. transition-duration: var(--f7-page-swipeback-transition-duration) !important;
  1927. }
  1928. .navbar-page-transitioning .title-large-text,
  1929. .navbar-page-transitioning .navbar-bg {
  1930. transition-duration: var(--f7-page-swipeback-transition-duration) !important;
  1931. }
  1932. .navbar-hidden {
  1933. transform: translate3d(0, calc(-1 * var(--f7-navbar-height)), 0);
  1934. }
  1935. .navbar-hidden .navbar-inner {
  1936. pointer-events: none;
  1937. }
  1938. .navbar-hidden .navbar-inner > .left,
  1939. .navbar-hidden .navbar-inner > .title,
  1940. .navbar-hidden .navbar-inner > .right {
  1941. opacity: 0 !important;
  1942. }
  1943. .navbar-hidden .subnavbar {
  1944. pointer-events: auto;
  1945. }
  1946. .navbar-hidden-statusbar {
  1947. transform: translate3d(0, calc(-1 * var(--f7-navbar-height) - var(--f7-safe-area-top)), 0);
  1948. }
  1949. .navbar-large-hidden .navbar-large {
  1950. --f7-navbar-large-collapse-progress: 1;
  1951. }
  1952. .navbar-inner {
  1953. position: absolute;
  1954. left: 0;
  1955. bottom: 0;
  1956. width: 100%;
  1957. height: 100%;
  1958. display: flex;
  1959. align-items: center;
  1960. box-sizing: border-box;
  1961. padding: var(--f7-safe-area-top) calc(var(--f7-navbar-inner-padding-right) + var(--f7-safe-area-right)) 0 calc(var(--f7-navbar-inner-padding-left) + var(--f7-safe-area-left));
  1962. transform: translate3d(0, 0, 0);
  1963. z-index: 10;
  1964. }
  1965. .views > .navbar,
  1966. .view > .navbar,
  1967. .page > .navbar,
  1968. .navbars > .navbar {
  1969. position: absolute;
  1970. }
  1971. .navbar-transparent:not(.navbar-large):not(.navbar-transparent-visible):not(.with-searchbar-expandable-enabled) .navbar-bg,
  1972. .navbar-transparent:not(.navbar-large):not(.navbar-transparent-visible):not(.with-searchbar-expandable-enabled) .title {
  1973. opacity: 0;
  1974. }
  1975. .navbar-large .navbar-bg {
  1976. height: calc(100% + var(--f7-navbar-large-title-height));
  1977. transform: translate3d(0px, calc(-1 * var(--f7-navbar-large-collapse-progress) * var(--f7-navbar-large-title-height)), 0);
  1978. }
  1979. .navbar-large-transparent .navbar-bg,
  1980. .navbar-large.navbar-transparent .navbar-bg {
  1981. opacity: var(--f7-navbar-large-collapse-progress);
  1982. height: 100%;
  1983. transform: none;
  1984. }
  1985. .ios .router-navbar-transition-to-large .navbar-bg,
  1986. .ios .router-navbar-transition-from-large .navbar-bg,
  1987. .navbar-bg.ios-swipeback-navbar-bg-large,
  1988. .navbar-large-transparent .navbar-bg.ios-swipeback-navbar-bg-large,
  1989. .navbar-large.navbar-transparent .navbar-bg.ios-swipeback-navbar-bg-large {
  1990. height: calc(100% + var(--f7-navbar-large-title-height));
  1991. transform: translate3d(0px, calc(-1 * var(--f7-navbar-large-collapse-progress) * var(--f7-navbar-large-title-height)), 0);
  1992. }
  1993. .ios .navbar:not(.navbar-large) .navbar-bg {
  1994. --f7-navbar-large-collapse-progress: 1;
  1995. }
  1996. .navbar-large .title {
  1997. opacity: var(--f7-navbar-large-collapse-progress);
  1998. }
  1999. .navbar-large-collapsed {
  2000. --f7-navbar-large-collapse-progress: 1;
  2001. }
  2002. .navbar-large-collapsed .title-large {
  2003. pointer-events: none;
  2004. }
  2005. .navbar .title-large {
  2006. box-sizing: border-box;
  2007. position: absolute;
  2008. left: 0;
  2009. right: 0;
  2010. top: 100%;
  2011. display: flex;
  2012. align-items: flex-end;
  2013. white-space: nowrap;
  2014. overflow: hidden;
  2015. height: var(--f7-navbar-large-title-height);
  2016. z-index: 5;
  2017. }
  2018. .navbar .title-large-text {
  2019. text-overflow: ellipsis;
  2020. white-space: nowrap;
  2021. color: var(--f7-navbar-large-title-text-color);
  2022. letter-spacing: var(--f7-navbar-large-title-letter-spacing);
  2023. font-size: var(--f7-navbar-large-title-font-size);
  2024. font-weight: var(--f7-navbar-large-title-font-weight);
  2025. line-height: var(--f7-navbar-large-title-line-height);
  2026. padding-left: calc(var(--f7-navbar-large-title-padding-left) + var(--f7-safe-area-left));
  2027. padding-right: calc(var(--f7-navbar-large-title-padding-right) + var(--f7-safe-area-right));
  2028. padding-top: var(--f7-navbar-large-title-padding-vertical);
  2029. padding-bottom: var(--f7-navbar-large-title-padding-vertical);
  2030. box-sizing: border-box;
  2031. overflow: hidden;
  2032. width: 100%;
  2033. transform: translate3d(0px, calc(-1 * var(--f7-navbar-large-collapse-progress) * var(--f7-navbar-large-title-height)), 0);
  2034. transform-origin: calc(100% - var(--f7-navbar-large-title-padding-left) - var(--f7-safe-area-left)) center;
  2035. }
  2036. .navbar-no-title-large-transition .title-large-text {
  2037. transition-duration: 0ms;
  2038. }
  2039. .navbar ~ *,
  2040. .navbars ~ * {
  2041. --f7-page-navbar-offset: calc(var(--f7-navbar-height) + var(--f7-safe-area-top));
  2042. }
  2043. .navbar ~ * .page-with-navbar-large,
  2044. .navbar ~ .page-with-navbar-large,
  2045. .navbars ~ * .page-with-navbar-large,
  2046. .navbars ~ .page-with-navbar-large,
  2047. .page-with-navbar-large .navbar ~ * {
  2048. --f7-page-navbar-offset: calc(var(--f7-navbar-height) + var(--f7-navbar-large-title-height) + var(--f7-safe-area-top));
  2049. }
  2050. .page.no-navbar,
  2051. .page.no-navbar .navbar ~ * {
  2052. --f7-page-navbar-offset: var(--f7-safe-area-top);
  2053. }
  2054. .ios {
  2055. --f7-navbarLeftTextOffset: calc(4px + 12px + var(--f7-navbar-inner-padding-left));
  2056. --f7-navbarTitleLargeOffset: var(--f7-navbar-large-title-padding-left);
  2057. --f7-navbar-large-transparent-bg-center: translateX(0);
  2058. --f7-navbar-large-bg-center-top: translateX(0) translateY(calc(-1 * var(--f7-navbar-large-title-height)));
  2059. --f7-navbar-large-bg-center-bottom: translateX(0) translateY(0);
  2060. --f7-navbar-large-transparent-bg-left: translateX(100%);
  2061. --f7-navbar-large-bg-left-top: translateX(100%) translateY(calc(-1 * var(--f7-navbar-large-title-height)));
  2062. --f7-navbar-large-bg-left-bottom: translateX(100%) translateY(0);
  2063. --f7-navbar-large-bg-right-top: translateX(-100%) translateY(calc(-1 * var(--f7-navbar-large-title-height)));
  2064. --f7-navbar-large-bg-right-bottom: translateX(-100%) translateY(0);
  2065. }
  2066. .ios .navbar a.icon-only {
  2067. width: 44px;
  2068. margin: 0;
  2069. justify-content: center;
  2070. }
  2071. .ios .navbar .left a + a,
  2072. .ios .navbar .right a + a {
  2073. margin-right: 16px;
  2074. }
  2075. .ios .navbar b {
  2076. font-weight: 600;
  2077. }
  2078. .ios .navbar .left {
  2079. margin-left: 10px;
  2080. }
  2081. .ios .navbar .right {
  2082. margin-right: 10px;
  2083. }
  2084. .ios .navbar .right:first-child {
  2085. left: calc(8px + var(--f7-safe-area-left));
  2086. }
  2087. .ios .navbar-inner {
  2088. justify-content: space-between;
  2089. }
  2090. .ios .navbar-inner-left-title {
  2091. justify-content: flex-start;
  2092. }
  2093. .ios .navbar-inner-left-title .right {
  2094. margin-right: auto;
  2095. }
  2096. .ios .navbar-inner-left-title .title {
  2097. text-align: left;
  2098. margin-left: 10px;
  2099. }
  2100. .ios .view-master-detail .navbar-previous:not(.navbar-master) .left,
  2101. .ios .view:not(.view-master-detail) .navbar-previous .left,
  2102. .ios .navbar-next .left,
  2103. .ios .view-master-detail .navbar-previous:not(.navbar-master) .title,
  2104. .ios .view:not(.view-master-detail) .navbar-previous .title,
  2105. .ios .navbar-next .title,
  2106. .ios .view-master-detail .navbar-previous:not(.navbar-master) .right,
  2107. .ios .view:not(.view-master-detail) .navbar-previous .right,
  2108. .ios .navbar-next .right,
  2109. .ios .view-master-detail .navbar-previous:not(.navbar-master) .subnavbar,
  2110. .ios .view:not(.view-master-detail) .navbar-previous .subnavbar,
  2111. .ios .navbar-next .subnavbar,
  2112. .ios .view-master-detail .navbar-previous:not(.navbar-master) .fading,
  2113. .ios .view:not(.view-master-detail) .navbar-previous .fading,
  2114. .ios .navbar-next .fading {
  2115. opacity: 0;
  2116. }
  2117. .ios .view-master-detail .navbar-previous:not(.navbar-master),
  2118. .ios .view:not(.view-master-detail) .navbar-previous {
  2119. pointer-events: none;
  2120. }
  2121. .ios .view-master-detail .navbar-previous:not(.navbar-master) .title-large,
  2122. .ios .view:not(.view-master-detail) .navbar-previous .title-large {
  2123. opacity: 0;
  2124. transition-duration: 0ms;
  2125. }
  2126. .ios .view-master-detail .navbar-previous:not(.navbar-master) .title-large .title-large-text,
  2127. .ios .view:not(.view-master-detail) .navbar-previous .title-large .title-large-text {
  2128. transform: scale(0.5);
  2129. transition-duration: 0ms;
  2130. }
  2131. .ios .view-master-detail .navbar-previous:not(.navbar-master) .subnavbar.sliding,
  2132. .ios .view:not(.view-master-detail) .navbar-previous .subnavbar.sliding,
  2133. .ios .view-master-detail .navbar-previous:not(.navbar-master) .sliding .subnavbar,
  2134. .ios .view:not(.view-master-detail) .navbar-previous .sliding .subnavbar {
  2135. opacity: 1;
  2136. transform: translate3d(100%, 0, 0);
  2137. }
  2138. .ios .view:not(.view-master-detail) .navbar-previous .navbar-bg,
  2139. .ios .view-master-detail .navbar-previous:not(.navbar-master) .navbar-bg {
  2140. transform: translateX(-100%);
  2141. }
  2142. .ios .navbar-next {
  2143. pointer-events: none;
  2144. }
  2145. .ios .navbar-next .navbar-bg {
  2146. transform: translateX(-100%);
  2147. }
  2148. .ios .navbar-next .title-large .title-large-text {
  2149. transition-duration: 0ms;
  2150. transform: translateX(-100%) translateY(calc(-1 * var(--f7-navbar-large-title-height)));
  2151. }
  2152. .ios .navbar-next .subnavbar.sliding,
  2153. .ios .navbar-next .sliding .subnavbar {
  2154. opacity: 1;
  2155. transform: translate3d(-100%, 0, 0);
  2156. }
  2157. .ios .router-transition .navbar,
  2158. .ios .router-transition .navbar-bg {
  2159. transition-duration: var(--f7-page-transition-duration);
  2160. }
  2161. .ios .router-transition .navbar-bg {
  2162. animation-duration: var(--f7-page-transition-duration);
  2163. animation-fill-mode: forwards;
  2164. }
  2165. .ios .router-transition .title-large,
  2166. .ios .router-transition .title-large-text {
  2167. transition-duration: 0ms;
  2168. }
  2169. .ios .router-transition .navbar-current .left,
  2170. .ios .router-transition .navbar-current .title,
  2171. .ios .router-transition .navbar-current .right,
  2172. .ios .router-transition .navbar-current .subnavbar {
  2173. animation: ios-navbar-element-fade-out var(--f7-page-transition-duration) forwards;
  2174. }
  2175. .ios .router-transition .navbar-current .sliding.left,
  2176. .ios .router-transition .navbar-current .sliding.left .icon + span,
  2177. .ios .router-transition .navbar-current .sliding.title,
  2178. .ios .router-transition .navbar-current .sliding.right,
  2179. .ios .router-transition .navbar-current .sliding .left,
  2180. .ios .router-transition .navbar-current .sliding .left .icon + span,
  2181. .ios .router-transition .navbar-current .sliding .title,
  2182. .ios .router-transition .navbar-current .sliding .right {
  2183. transition-duration: var(--f7-page-transition-duration);
  2184. opacity: 0 !important;
  2185. animation: none;
  2186. }
  2187. .ios .router-transition .navbar-current .sliding .subnavbar,
  2188. .ios .router-transition .navbar-current .sliding.subnavbar {
  2189. transition-duration: var(--f7-page-transition-duration);
  2190. animation: none;
  2191. opacity: 1;
  2192. }
  2193. .ios .router-transition-forward .navbar-next .left,
  2194. .ios .router-transition-backward .navbar-previous .left,
  2195. .ios .router-transition-forward .navbar-next .title,
  2196. .ios .router-transition-backward .navbar-previous .title,
  2197. .ios .router-transition-forward .navbar-next .right,
  2198. .ios .router-transition-backward .navbar-previous .right,
  2199. .ios .router-transition-forward .navbar-next .subnavbar,
  2200. .ios .router-transition-backward .navbar-previous .subnavbar {
  2201. animation: ios-navbar-element-fade-in var(--f7-page-transition-duration) forwards;
  2202. }
  2203. .ios .router-transition-forward .navbar-next .sliding.left,
  2204. .ios .router-transition-backward .navbar-previous .sliding.left,
  2205. .ios .router-transition-forward .navbar-next .sliding.left .icon + span,
  2206. .ios .router-transition-backward .navbar-previous .sliding.left .icon + span,
  2207. .ios .router-transition-forward .navbar-next .sliding.title,
  2208. .ios .router-transition-backward .navbar-previous .sliding.title,
  2209. .ios .router-transition-forward .navbar-next .sliding.right,
  2210. .ios .router-transition-backward .navbar-previous .sliding.right,
  2211. .ios .router-transition-forward .navbar-next .sliding .left,
  2212. .ios .router-transition-backward .navbar-previous .sliding .left,
  2213. .ios .router-transition-forward .navbar-next .sliding .left .icon + span,
  2214. .ios .router-transition-backward .navbar-previous .sliding .left .icon + span,
  2215. .ios .router-transition-forward .navbar-next .sliding .title,
  2216. .ios .router-transition-backward .navbar-previous .sliding .title,
  2217. .ios .router-transition-forward .navbar-next .sliding .right,
  2218. .ios .router-transition-backward .navbar-previous .sliding .right,
  2219. .ios .router-transition-forward .navbar-next .sliding .subnavbar,
  2220. .ios .router-transition-backward .navbar-previous .sliding .subnavbar {
  2221. transition-duration: var(--f7-page-transition-duration);
  2222. animation: none;
  2223. transform: translate3d(0, 0, 0) !important;
  2224. opacity: 1 !important;
  2225. }
  2226. .ios .router-transition-forward .navbar-next.navbar-transparent:not(.navbar-large):not(.navbar-transparent-visible) .title,
  2227. .ios .router-transition-backward .navbar-previous.navbar-transparent:not(.navbar-large):not(.navbar-transparent-visible) .title {
  2228. animation: none;
  2229. }
  2230. .ios .router-transition-forward .navbar-next.navbar-transparent:not(.navbar-large):not(.navbar-transparent-visible) .sliding.title,
  2231. .ios .router-transition-backward .navbar-previous.navbar-transparent:not(.navbar-large):not(.navbar-transparent-visible) .sliding.title,
  2232. .ios .router-transition-forward .navbar-next.navbar-transparent:not(.navbar-large):not(.navbar-transparent-visible) .sliding .title,
  2233. .ios .router-transition-backward .navbar-previous.navbar-transparent:not(.navbar-large):not(.navbar-transparent-visible) .sliding .title {
  2234. opacity: 0 !important;
  2235. }
  2236. .ios .router-transition-backward .navbar-previous.with-searchbar-expandable-enabled-no-transition .left,
  2237. .ios .router-transition-backward .navbar-previous.with-searchbar-expandable-enabled .left,
  2238. .ios .router-transition-backward .navbar-previous.with-searchbar-expandable-enabled-no-transition .title,
  2239. .ios .router-transition-backward .navbar-previous.with-searchbar-expandable-enabled .title,
  2240. .ios .router-transition-backward .navbar-previous.with-searchbar-expandable-enabled-no-transition .right,
  2241. .ios .router-transition-backward .navbar-previous.with-searchbar-expandable-enabled .right,
  2242. .ios .router-transition-backward .navbar-previous.with-searchbar-expandable-enabled-no-transition .subnavbar,
  2243. .ios .router-transition-backward .navbar-previous.with-searchbar-expandable-enabled .subnavbar {
  2244. animation: none;
  2245. }
  2246. .ios .router-transition-forward .navbar-current.router-navbar-transition-from-large.router-navbar-transition-to-large .title-large,
  2247. .ios .router-transition-forward .navbar-current.router-navbar-transition-from-large:not(.router-navbar-transition-to-large) .title-large {
  2248. overflow: visible;
  2249. }
  2250. .ios .router-transition-forward .navbar-current.router-navbar-transition-from-large.router-navbar-transition-to-large .title-large .title-large-text,
  2251. .ios .router-transition-forward .navbar-current.router-navbar-transition-from-large:not(.router-navbar-transition-to-large) .title-large .title-large-text {
  2252. animation: ios-navbar-large-title-text-slide-up var(--f7-page-transition-duration) forwards, ios-navbar-large-title-text-fade-out var(--f7-page-transition-duration) forwards;
  2253. }
  2254. .ios .router-transition-forward .navbar-next.router-navbar-transition-from-large .left .back span {
  2255. animation: ios-navbar-back-text-next-to-current var(--f7-page-transition-duration) forwards;
  2256. transition: none;
  2257. transform-origin: right center;
  2258. }
  2259. .ios .router-transition-forward .navbar-next.router-navbar-transition-from-large.router-navbar-transition-to-large .title-large {
  2260. overflow: visible;
  2261. }
  2262. .ios .router-transition-forward .navbar-next.router-navbar-transition-from-large.router-navbar-transition-to-large .title-large .title-large-text {
  2263. animation: ios-navbar-large-title-text-slide-left var(--f7-page-transition-duration) forwards;
  2264. }
  2265. .ios .router-transition-forward .navbar-next.router-navbar-transition-to-large:not(.router-navbar-transition-from-large) .title-large .title-large-text {
  2266. animation: ios-navbar-large-title-text-slide-left var(--f7-page-transition-duration) forwards;
  2267. }
  2268. .ios .router-transition-forward .navbar-next.navbar-large:not(.navbar-large-collapsed) .title,
  2269. .ios .router-transition-forward .navbar-current.navbar-large:not(.navbar-large-collapsed) .title {
  2270. animation: none;
  2271. opacity: 0 !important;
  2272. transition-duration: 0;
  2273. }
  2274. .ios .router-transition-backward .navbar-current.router-navbar-transition-to-large .left .back span {
  2275. animation: ios-navbar-back-text-current-to-previous var(--f7-page-transition-duration) forwards;
  2276. transition: none;
  2277. transform-origin: right center;
  2278. }
  2279. .ios .router-transition-backward .navbar-current.router-navbar-transition-from-large.router-navbar-transition-to-large .title-large {
  2280. overflow: visible;
  2281. }
  2282. .ios .router-transition-backward .navbar-current.router-navbar-transition-from-large.router-navbar-transition-to-large .title-large .title-large-text {
  2283. animation: ios-navbar-large-title-text-slide-right var(--f7-page-transition-duration) forwards;
  2284. }
  2285. .ios .router-transition-backward .navbar-current.router-navbar-transition-from-large:not(.router-navbar-transition-to-large) .title-large .title-large-text {
  2286. animation: ios-navbar-large-title-text-slide-right var(--f7-page-transition-duration) forwards;
  2287. }
  2288. .ios .router-transition-backward .navbar-current.router-navbar-transition-to-large:not(.router-navbar-transition-from-large) .title-large {
  2289. opacity: 0;
  2290. }
  2291. .ios .router-transition-backward .navbar-previous.router-navbar-transition-from-large.router-navbar-transition-to-large .title-large,
  2292. .ios .router-transition-backward .navbar-previous.router-navbar-transition-to-large:not(.router-navbar-transition-from-large) .title-large {
  2293. overflow: visible;
  2294. opacity: 1;
  2295. }
  2296. .ios .router-transition-backward .navbar-previous.router-navbar-transition-from-large.router-navbar-transition-to-large .title-large .title-large-text,
  2297. .ios .router-transition-backward .navbar-previous.router-navbar-transition-to-large:not(.router-navbar-transition-from-large) .title-large .title-large-text {
  2298. animation: ios-navbar-large-title-text-slide-down var(--f7-page-transition-duration) forwards, ios-navbar-large-title-text-fade-in var(--f7-page-transition-duration) forwards;
  2299. }
  2300. .ios .router-transition-backward .navbar-current.navbar-large:not(.navbar-large-collapsed) .title,
  2301. .ios .router-transition-backward .navbar-previous.navbar-large:not(.navbar-large-collapsed) .title {
  2302. animation: none;
  2303. opacity: 0 !important;
  2304. transition-duration: 0;
  2305. }
  2306. .ios .router-transition-forward .navbar-current .navbar-bg {
  2307. animation-name: ios-navbar-bg-from-cb-to-lb;
  2308. }
  2309. .ios .router-transition-forward .navbar-current.router-navbar-transition-from-large.router-navbar-transition-to-large .navbar-bg {
  2310. animation-name: ios-navbar-bg-from-cb-to-lb;
  2311. }
  2312. .ios .router-transition-forward .navbar-current.router-navbar-transition-from-large:not(.router-navbar-transition-to-large) .navbar-bg {
  2313. animation-name: ios-navbar-bg-from-cb-to-lt;
  2314. }
  2315. .ios .router-transition-forward .navbar-current:not(.router-navbar-transition-from-large).router-navbar-transition-to-large .navbar-bg {
  2316. animation-name: ios-navbar-bg-from-ct-to-lb;
  2317. }
  2318. .ios .router-transition-forward .navbar-current.navbar-large-collapsed:not(.router-navbar-transition-to-large) .navbar-bg {
  2319. animation-name: ios-navbar-bg-from-ct-to-lt;
  2320. }
  2321. .ios .router-transition-forward .navbar-current.navbar-large-collapsed.navbar-large-transparent:not(.router-navbar-transition-to-large) .navbar-bg,
  2322. .ios .router-transition-forward .navbar-current.navbar-large-collapsed.navbar-large.navbar-transparent:not(.router-navbar-transition-to-large) .navbar-bg {
  2323. animation-name: ios-navbar-transparent-bg-from-c-to-l;
  2324. }
  2325. .ios .router-transition-forward .navbar-next .navbar-bg {
  2326. animation-name: ios-navbar-bg-from-rb-to-cb;
  2327. }
  2328. .ios .router-transition-forward .navbar-next.router-navbar-transition-from-large.router-navbar-transition-to-large .navbar-bg {
  2329. animation-name: ios-navbar-bg-from-rb-to-cb;
  2330. }
  2331. .ios .router-transition-forward .navbar-next.router-navbar-transition-from-large:not(.router-navbar-transition-to-large) .navbar-bg {
  2332. animation-name: ios-navbar-bg-from-rb-to-ct;
  2333. }
  2334. .ios .router-transition-forward .navbar-next:not(.router-navbar-transition-from-large).router-navbar-transition-to-large .navbar-bg {
  2335. animation-name: ios-navbar-bg-from-rt-to-cb;
  2336. }
  2337. .ios .router-transition-backward .navbar-current .navbar-bg {
  2338. animation-name: ios-navbar-bg-from-cb-to-rb;
  2339. }
  2340. .ios .router-transition-backward .navbar-current:not(.router-navbar-transition-from-large).router-navbar-transition-to-large .navbar-bg {
  2341. animation-name: ios-navbar-bg-from-ct-to-rb;
  2342. }
  2343. .ios .router-transition-backward .navbar-current.router-navbar-transition-from-large:not(.router-navbar-transition-to-large) .navbar-bg {
  2344. animation-name: ios-navbar-bg-from-cb-to-rt;
  2345. }
  2346. .ios .router-transition-backward .navbar-current.navbar-large-collapsed .navbar-bg {
  2347. animation-name: ios-navbar-bg-from-ct-to-rt;
  2348. }
  2349. .ios .router-transition-backward .navbar-current.navbar-large-collapsed.navbar-large-transparent .navbar-bg,
  2350. .ios .router-transition-backward .navbar-current.navbar-large-collapsed.navbar-large.navbar-transparent .navbar-bg {
  2351. animation-name: ios-navbar-bg-from-cb-to-rb;
  2352. }
  2353. .ios .router-transition-backward .navbar-current.navbar-large-collapsed.router-navbar-transition-to-large .navbar-bg {
  2354. animation-name: ios-navbar-bg-from-ct-to-rb;
  2355. }
  2356. .ios .router-transition-backward .navbar-previous .navbar-bg {
  2357. animation-name: ios-navbar-bg-from-lb-to-cb;
  2358. }
  2359. .ios .router-transition-backward .navbar-previous:not(.router-navbar-transition-from-large).router-navbar-transition-to-large .navbar-bg {
  2360. animation-name: ios-navbar-bg-from-lt-to-cb;
  2361. }
  2362. .ios .router-transition-backward .navbar-previous.router-navbar-transition-from-large:not(.router-navbar-transition-to-large) .navbar-bg {
  2363. animation-name: ios-navbar-bg-from-lb-to-ct;
  2364. }
  2365. .ios .router-transition-backward .navbar-previous.navbar-large-collapsed .navbar-bg {
  2366. animation-name: ios-navbar-bg-from-lt-to-ct;
  2367. }
  2368. .ios .router-transition-backward .navbar-previous.navbar-large-collapsed.navbar-large-transparent .navbar-bg,
  2369. .ios .router-transition-backward .navbar-previous.navbar-large-collapsed.navbar-large.navbar-transparent .navbar-bg {
  2370. animation-name: ios-navbar-transparent-bg-from-l-to-c;
  2371. }
  2372. .ios .router-transition-backward .navbar-previous.navbar-large-collapsed.navbar-large-transparent.router-navbar-transition-from-large .navbar-bg,
  2373. .ios .router-transition-backward .navbar-previous.navbar-large-collapsed.navbar-large.navbar-transparent.router-navbar-transition-from-large .navbar-bg {
  2374. animation-name: ios-navbar-bg-from-lb-to-ct;
  2375. }
  2376. .view-master-detail .navbars {
  2377. z-index: auto;
  2378. }
  2379. .view-master-detail .page-master {
  2380. z-index: 525;
  2381. }
  2382. .view-master-detail .navbar-master .navbar-inner,
  2383. .view-master-detail .navbar-master .navbar-bg {
  2384. z-index: 550;
  2385. }
  2386. .view-master-detail .navbar-master-detail .navbar-inner,
  2387. .view-master-detail .navbar-master-detail .navbar-bg {
  2388. z-index: 500;
  2389. }
  2390. .view-master-detail .navbar-master.navbar-previous {
  2391. pointer-events: auto;
  2392. }
  2393. .view-master-detail .navbar-master.navbar-previous .left,
  2394. .view-master-detail .navbar-master.navbar-previous:not(.navbar-large) .title,
  2395. .view-master-detail .navbar-master.navbar-previous .right,
  2396. .view-master-detail .navbar-master.navbar-previous .subnavbar {
  2397. opacity: 1;
  2398. }
  2399. .view-master-detail.router-transition .navbar-master .left,
  2400. .view-master-detail.router-transition .navbar-master .left .icon + span,
  2401. .view-master-detail.router-transition .navbar-master:not(.navbar-large) .title,
  2402. .view-master-detail.router-transition .navbar-master .right,
  2403. .view-master-detail.router-transition .navbar-master .subnavbar,
  2404. .view-master-detail.router-transition .navbar-master .fading {
  2405. opacity: 1 !important;
  2406. transition-duration: 0ms;
  2407. transform: none !important;
  2408. animation: none !important;
  2409. }
  2410. .view-master-detail.router-transition .navbar-master .navbar-bg {
  2411. transition-duration: 0ms;
  2412. animation: none !important;
  2413. }
  2414. .view-master-detail.router-transition .navbar-master.navbar-large .title {
  2415. opacity: calc(-1 + 2 * var(--f7-navbar-large-collapse-progress)) !important;
  2416. transition-duration: 0ms;
  2417. transform: none !important;
  2418. animation: none !important;
  2419. }
  2420. .view-master-detail.router-transition .navbar-master.navbar-large .title-large,
  2421. .view-master-detail.router-transition .navbar-master.navbar-large .title-large-text {
  2422. transition-duration: 0ms;
  2423. animation: none !important;
  2424. }
  2425. .view-master-detail.router-transition .navbar-master.navbar-large-transparent .navbar-bg,
  2426. .view-master-detail.router-transition .navbar-master.navbar-large.navbar-transparent .navbar-bg {
  2427. height: 100% !important;
  2428. opacity: var(--f7-navbar-large-collapse-progress) !important;
  2429. }
  2430. @keyframes ios-navbar-element-fade-in {
  2431. 0% {
  2432. opacity: 0;
  2433. }
  2434. 25% {
  2435. opacity: 0;
  2436. }
  2437. to {
  2438. opacity: 1;
  2439. }
  2440. }
  2441. @keyframes ios-navbar-element-fade-out {
  2442. from {
  2443. opacity: 1;
  2444. }
  2445. 75% {
  2446. opacity: 0;
  2447. }
  2448. to {
  2449. opacity: 0;
  2450. }
  2451. }
  2452. @keyframes ios-navbar-large-title-text-slide-up {
  2453. 0% {
  2454. transform: translateX(0px) translateY(0%) scale(1);
  2455. }
  2456. 100% {
  2457. transform: translateX(calc(-1 * (var(--f7-navbarLeftTextOffset) - var(--f7-navbarTitleLargeOffset)))) translateY(calc(-1 * var(--f7-navbar-large-title-height) + var(--f7-navbar-large-title-padding-vertical))) scale(0.5);
  2458. }
  2459. }
  2460. @keyframes ios-navbar-large-title-text-slide-down {
  2461. 0% {
  2462. transform: translateX(calc(-1 * (var(--f7-navbarLeftTextOffset) - var(--f7-navbarTitleLargeOffset)))) translateY(calc(-1 * var(--f7-navbar-large-title-height) + var(--f7-navbar-large-title-padding-vertical) / 2)) scale(0.5);
  2463. }
  2464. 100% {
  2465. transform: translateX(0px) translateY(0%) scale(1);
  2466. }
  2467. }
  2468. @keyframes ios-navbar-large-title-text-slide-left {
  2469. 0% {
  2470. transform: translateX(-100%);
  2471. }
  2472. 100% {
  2473. transform: translateX(0%);
  2474. }
  2475. }
  2476. @keyframes ios-navbar-large-title-text-slide-right {
  2477. 0% {
  2478. transform: translateX(0%);
  2479. }
  2480. 100% {
  2481. transform: translateX(-100%);
  2482. }
  2483. }
  2484. @keyframes ios-navbar-large-title-text-fade-out {
  2485. 0% {
  2486. opacity: 1;
  2487. }
  2488. 80% {
  2489. opacity: 0;
  2490. }
  2491. 100% {
  2492. opacity: 0;
  2493. }
  2494. }
  2495. @keyframes ios-navbar-large-title-text-fade-in {
  2496. 0% {
  2497. opacity: 0;
  2498. }
  2499. 20% {
  2500. opacity: 0;
  2501. }
  2502. 100% {
  2503. opacity: 1;
  2504. }
  2505. }
  2506. @keyframes ios-navbar-back-text-current-to-previous {
  2507. 0% {
  2508. opacity: 1;
  2509. transform: translateY(0px) translateX(0px) scale(1);
  2510. }
  2511. 80% {
  2512. opacity: 0;
  2513. }
  2514. 100% {
  2515. opacity: 0;
  2516. transform: translateX(calc(-1 * (var(--f7-navbarTitleLargeOffset) - var(--f7-navbarLeftTextOffset)))) translateY(calc(1 * var(--f7-navbar-large-title-height) - var(--f7-navbar-large-title-padding-vertical) / 2)) scale(2);
  2517. }
  2518. }
  2519. @keyframes ios-navbar-back-text-next-to-current {
  2520. 0% {
  2521. opacity: 0;
  2522. transform: translateX(calc(-1 * (var(--f7-navbarTitleLargeOffset) - var(--f7-navbarLeftTextOffset)))) translateY(calc(1 * var(--f7-navbar-large-title-height) + var(--f7-navbar-large-title-padding-vertical) / 2)) scale(2);
  2523. }
  2524. 20% {
  2525. opacity: 0;
  2526. }
  2527. 100% {
  2528. opacity: 1;
  2529. transform: translateX(0px) translateY(0px) scale(1);
  2530. }
  2531. }
  2532. @keyframes ios-navbar-bg-from-cb-to-lb {
  2533. from {
  2534. transform: var(--f7-navbar-large-bg-center-bottom);
  2535. }
  2536. to {
  2537. transform: var(--f7-navbar-large-bg-left-bottom);
  2538. }
  2539. }
  2540. @keyframes ios-navbar-bg-from-cb-to-lt {
  2541. from {
  2542. transform: var(--f7-navbar-large-bg-center-bottom);
  2543. }
  2544. to {
  2545. transform: var(--f7-navbar-large-bg-left-top);
  2546. }
  2547. }
  2548. @keyframes ios-navbar-bg-from-ct-to-lb {
  2549. from {
  2550. transform: var(--f7-navbar-large-bg-center-top);
  2551. }
  2552. to {
  2553. transform: var(--f7-navbar-large-bg-left-bottom);
  2554. }
  2555. }
  2556. @keyframes ios-navbar-bg-from-ct-to-lt {
  2557. from {
  2558. transform: var(--f7-navbar-large-bg-center-top);
  2559. }
  2560. to {
  2561. transform: var(--f7-navbar-large-bg-left-top);
  2562. }
  2563. }
  2564. @keyframes ios-navbar-bg-from-rb-to-cb {
  2565. from {
  2566. transform: var(--f7-navbar-large-bg-right-bottom);
  2567. }
  2568. to {
  2569. transform: var(--f7-navbar-large-bg-center-bottom);
  2570. }
  2571. }
  2572. @keyframes ios-navbar-bg-from-rb-to-ct {
  2573. from {
  2574. transform: var(--f7-navbar-large-bg-right-bottom);
  2575. }
  2576. to {
  2577. transform: var(--f7-navbar-large-bg-center-top);
  2578. }
  2579. }
  2580. @keyframes ios-navbar-bg-from-rt-to-cb {
  2581. from {
  2582. transform: var(--f7-navbar-large-bg-right-top);
  2583. }
  2584. to {
  2585. transform: var(--f7-navbar-large-bg-center-bottom);
  2586. }
  2587. }
  2588. @keyframes ios-navbar-bg-from-cb-to-rb {
  2589. from {
  2590. transform: var(--f7-navbar-large-bg-center-bottom);
  2591. }
  2592. to {
  2593. transform: var(--f7-navbar-large-bg-right-bottom);
  2594. }
  2595. }
  2596. @keyframes ios-navbar-bg-from-ct-to-rb {
  2597. from {
  2598. transform: var(--f7-navbar-large-bg-center-top);
  2599. }
  2600. to {
  2601. transform: var(--f7-navbar-large-bg-right-bottom);
  2602. }
  2603. }
  2604. @keyframes ios-navbar-bg-from-cb-to-rt {
  2605. from {
  2606. transform: var(--f7-navbar-large-bg-center-bottom);
  2607. }
  2608. to {
  2609. transform: var(--f7-navbar-large-bg-right-top);
  2610. }
  2611. }
  2612. @keyframes ios-navbar-bg-from-ct-to-rt {
  2613. from {
  2614. transform: var(--f7-navbar-large-bg-center-top);
  2615. }
  2616. to {
  2617. transform: var(--f7-navbar-large-bg-right-top);
  2618. }
  2619. }
  2620. @keyframes ios-navbar-bg-from-lb-to-cb {
  2621. from {
  2622. transform: var(--f7-navbar-large-bg-left-bottom);
  2623. }
  2624. to {
  2625. transform: var(--f7-navbar-large-bg-center-bottom);
  2626. }
  2627. }
  2628. @keyframes ios-navbar-bg-from-lt-to-cb {
  2629. from {
  2630. transform: var(--f7-navbar-large-bg-left-top);
  2631. }
  2632. to {
  2633. transform: var(--f7-navbar-large-bg-center-bottom);
  2634. }
  2635. }
  2636. @keyframes ios-navbar-bg-from-lb-to-ct {
  2637. from {
  2638. transform: var(--f7-navbar-large-bg-left-bottom);
  2639. }
  2640. to {
  2641. transform: var(--f7-navbar-large-bg-center-top);
  2642. }
  2643. }
  2644. @keyframes ios-navbar-bg-from-lt-to-ct {
  2645. from {
  2646. transform: var(--f7-navbar-large-bg-left-top);
  2647. }
  2648. to {
  2649. transform: var(--f7-navbar-large-bg-center-top);
  2650. }
  2651. }
  2652. @keyframes ios-navbar-transparent-bg-from-l-to-c {
  2653. from {
  2654. transform: var(--f7-navbar-large-transparent-bg-left);
  2655. }
  2656. to {
  2657. transform: var(--f7-navbar-large-transparent-bg-center);
  2658. }
  2659. }
  2660. @keyframes ios-navbar-transparent-bg-from-c-to-l {
  2661. from {
  2662. transform: var(--f7-navbar-large-transparent-bg-center);
  2663. }
  2664. to {
  2665. transform: var(--f7-navbar-large-transparent-bg-left);
  2666. }
  2667. }
  2668. .md .navbar a.link {
  2669. padding: 0 16px;
  2670. min-width: 48px;
  2671. }
  2672. .md .navbar a.link:before {
  2673. content: '';
  2674. width: 152%;
  2675. height: 152%;
  2676. position: absolute;
  2677. left: -26%;
  2678. top: -26%;
  2679. background-image: radial-gradient(circle at center, var(--f7-link-highlight-color) 66%, rgba(255, 255, 255, 0) 66%);
  2680. background-repeat: no-repeat;
  2681. background-position: center;
  2682. background-size: 100% 100%;
  2683. opacity: 0;
  2684. pointer-events: none;
  2685. transition-duration: 600ms;
  2686. }
  2687. .md .navbar a.link.active-state:before {
  2688. opacity: 1;
  2689. transition-duration: 150ms;
  2690. }
  2691. .md .navbar a.icon-only {
  2692. min-width: 0;
  2693. flex-shrink: 0;
  2694. width: 56px;
  2695. }
  2696. .md .navbar .right {
  2697. margin-right: auto;
  2698. }
  2699. .md .navbar .right:first-child {
  2700. left: var(--f7-safe-area-left);
  2701. }
  2702. .md .navbar-inner {
  2703. justify-content: flex-start;
  2704. overflow: hidden;
  2705. }
  2706. .md .navbar-large:not(.navbar-large-collapsed) .navbar-inner {
  2707. overflow: visible;
  2708. }
  2709. .md .page.page-with-subnavbar .navbar-inner {
  2710. overflow: visible;
  2711. }
  2712. .md .navbar-inner-centered-title {
  2713. justify-content: space-between;
  2714. }
  2715. .md .navbar-inner-centered-title .right {
  2716. margin-right: 0;
  2717. }
  2718. .md .navbar-inner-centered-title .title {
  2719. text-align: center;
  2720. }
  2721. .aurora .navbar a.icon-only {
  2722. margin: 0;
  2723. justify-content: center;
  2724. }
  2725. .aurora .navbar .left a + a,
  2726. .aurora .navbar .right a + a {
  2727. margin-right: 10px;
  2728. }
  2729. .aurora .navbar b {
  2730. font-weight: bold;
  2731. }
  2732. .aurora .navbar .left {
  2733. margin-left: 10px;
  2734. }
  2735. .aurora .navbar .right {
  2736. margin-right: 10px;
  2737. }
  2738. .aurora .navbar .right:first-child {
  2739. left: calc(16px + var(--f7-safe-area-left));
  2740. }
  2741. .aurora .navbar-inner {
  2742. justify-content: space-between;
  2743. }
  2744. .aurora .navbar-inner-left-title {
  2745. justify-content: flex-start;
  2746. }
  2747. .aurora .navbar-inner-left-title .right {
  2748. margin-right: auto;
  2749. }
  2750. .aurora .navbar-inner-left-title .title {
  2751. text-align: left;
  2752. margin-left: 10px;
  2753. }
  2754. /* === Toolbar === */
  2755. :root {
  2756. /*
  2757. --f7-toolbar-bg-color: var(--f7-bars-bg-color);
  2758. --f7-toolbar-bg-color-rgb: var(--f7-bars-bg-color-rgb);
  2759. --f7-toolbar-bg-image: var(--f7-bars-bg-image);
  2760. --f7-toolbar-border-color: var(--f7-bars-border-color);
  2761. --f7-toolbar-link-color: var(--f7-bars-link-color);
  2762. --f7-toolbar-text-color: var(--f7-bars-text-color);
  2763. --f7-tabbar-link-active-color: var(--f7-theme-color);
  2764. */
  2765. --f7-tabbar-link-active-bg-color: transparent;
  2766. --f7-tabbar-label-text-transform: none;
  2767. --f7-toolbar-hide-show-transition-duration: 400ms;
  2768. }
  2769. .ios {
  2770. --f7-toolbar-height: 44px;
  2771. --f7-toolbar-font-size: 17px;
  2772. --f7-toolbar-inner-padding-left: 8px;
  2773. --f7-toolbar-inner-padding-right: 8px;
  2774. /*
  2775. --f7-toolbar-link-height: var(--f7-toolbar-height);
  2776. --f7-toolbar-link-line-height: var(--f7-toolbar-height);
  2777. */
  2778. --f7-tabbar-labels-height: 50px;
  2779. --f7-tabbar-labels-tablet-height: 50px;
  2780. --f7-toolbar-top-shadow-image: none;
  2781. --f7-toolbar-bottom-shadow-image: none;
  2782. --f7-tabbar-icon-size: 28px;
  2783. --f7-tabbar-link-text-transform: none;
  2784. --f7-tabbar-link-font-weight: 400;
  2785. --f7-tabbar-link-letter-spacing: 0;
  2786. --f7-tabbar-label-font-size: 12px;
  2787. --f7-tabbar-label-tablet-font-size: 14px;
  2788. --f7-tabbar-label-font-weight: 500;
  2789. --f7-tabbar-label-letter-spacing: 0.01;
  2790. --f7-tabbar-link-inactive-color: rgba(0, 0, 0, 0.4);
  2791. }
  2792. .ios .theme-dark,
  2793. .ios.theme-dark {
  2794. --f7-tabbar-link-inactive-color: rgba(255, 255, 255, 0.54);
  2795. }
  2796. .md {
  2797. --f7-toolbar-height: 48px;
  2798. --f7-toolbar-font-size: 14px;
  2799. --f7-toolbar-inner-padding-left: 0px;
  2800. --f7-toolbar-inner-padding-right: 0px;
  2801. /*
  2802. --f7-toolbar-link-height: var(--f7-toolbar-height);
  2803. --f7-toolbar-link-line-height: var(--f7-toolbar-height);
  2804. */
  2805. --f7-tabbar-labels-height: 56px;
  2806. --f7-tabbar-labels-tablet-height: 56px;
  2807. /*
  2808. --f7-tabbar-link-active-border-color: var(--f7-theme-color);
  2809. */
  2810. --f7-toolbar-top-shadow-image: var(--f7-bars-shadow-bottom-image);
  2811. --f7-toolbar-bottom-shadow-image: var(--f7-bars-shadow-top-image);
  2812. --f7-tabbar-icon-size: 24px;
  2813. --f7-tabbar-link-text-transform: uppercase;
  2814. --f7-tabbar-link-font-weight: 500;
  2815. --f7-tabbar-link-letter-spacing: 0.03em;
  2816. --f7-tabbar-label-font-size: 14px;
  2817. --f7-tabbar-label-tablet-font-size: 14px;
  2818. --f7-tabbar-label-font-weight: 400;
  2819. --f7-tabbar-label-letter-spacing: 0;
  2820. --f7-tabbar-link-inactive-color: rgba(0, 0, 0, 0.54);
  2821. }
  2822. .md .theme-dark,
  2823. .md.theme-dark {
  2824. --f7-tabbar-link-inactive-color: rgba(255, 255, 255, 0.54);
  2825. }
  2826. .aurora {
  2827. --f7-toolbar-height: 38px;
  2828. --f7-toolbar-font-size: 14px;
  2829. --f7-toolbar-inner-padding-left: 16px;
  2830. --f7-toolbar-inner-padding-right: 16px;
  2831. --f7-toolbar-link-height: auto;
  2832. --f7-toolbar-link-line-height: inherit;
  2833. --f7-tabbar-labels-height: 44px;
  2834. --f7-tabbar-labels-tablet-height: 44px;
  2835. --f7-tabbar-link-inactive-bg-color: rgba(0, 0, 0, 0.2);
  2836. --f7-toolbar-top-shadow-image: none;
  2837. --f7-toolbar-bottom-shadow-image: none;
  2838. --f7-tabbar-icon-size: 18px;
  2839. --f7-tabbar-link-text-transform: none;
  2840. --f7-tabbar-link-font-weight: 400;
  2841. --f7-tabbar-link-letter-spacing: 0;
  2842. --f7-tabbar-label-font-size: 12px;
  2843. --f7-tabbar-label-tablet-font-size: 12px;
  2844. --f7-tabbar-label-font-weight: 500;
  2845. --f7-tabbar-label-letter-spacing: 0.01;
  2846. --f7-tabbar-link-inactive-color: rgba(0, 0, 0, 0.5);
  2847. }
  2848. .aurora .theme-dark,
  2849. .aurora.theme-dark {
  2850. --f7-tabbar-link-inactive-color: rgba(255, 255, 255, 0.5);
  2851. }
  2852. .toolbar {
  2853. width: 100%;
  2854. position: relative;
  2855. margin: 0;
  2856. transform: translate3d(0, 0, 0);
  2857. -webkit-backface-visibility: hidden;
  2858. backface-visibility: hidden;
  2859. z-index: 600;
  2860. box-sizing: border-box;
  2861. left: 0;
  2862. height: var(--f7-toolbar-height);
  2863. background-image: var(--f7-toolbar-bg-image, var(--f7-bars-bg-image));
  2864. background-color: var(--f7-toolbar-bg-color, var(--f7-bars-bg-color));
  2865. color: var(--f7-toolbar-text-color, var(--f7-bars-text-color));
  2866. font-size: var(--f7-toolbar-font-size);
  2867. }
  2868. @supports ((-webkit-backdrop-filter: blur(20px)) or (backdrop-filter: blur(20px))) {
  2869. .ios-translucent-bars .toolbar {
  2870. background-color: rgba(var(--f7-toolbar-bg-color-rgb, var(--f7-bars-bg-color-rgb)), var(--f7-bars-translucent-opacity));
  2871. -webkit-backdrop-filter: saturate(180%) blur(var(--f7-bars-translucent-blur));
  2872. backdrop-filter: saturate(180%) blur(var(--f7-bars-translucent-blur));
  2873. }
  2874. }
  2875. .toolbar b {
  2876. font-weight: 600;
  2877. }
  2878. .toolbar a {
  2879. color: var(--f7-toolbar-link-color, var(--f7-bars-link-color, var(--f7-theme-color)));
  2880. box-sizing: border-box;
  2881. flex-shrink: 1;
  2882. position: relative;
  2883. white-space: nowrap;
  2884. text-overflow: ellipsis;
  2885. }
  2886. .toolbar .link {
  2887. display: flex;
  2888. line-height: var(--f7-toolbar-link-line-height, var(--f7-toolbar-height));
  2889. height: var(--f7-toolbar-link-height, var(--f7-toolbar-height));
  2890. }
  2891. .toolbar i.icon {
  2892. display: block;
  2893. }
  2894. .toolbar:after,
  2895. .toolbar:before {
  2896. -webkit-backface-visibility: hidden;
  2897. backface-visibility: hidden;
  2898. }
  2899. .views > .toolbar,
  2900. .view > .toolbar,
  2901. .page > .toolbar {
  2902. position: absolute;
  2903. }
  2904. .toolbar-top,
  2905. .ios .toolbar-top-ios,
  2906. .md .toolbar-top-md,
  2907. .aurora .toolbar-top-aurora {
  2908. top: 0;
  2909. }
  2910. .toolbar-top .tab-link-highlight,
  2911. .ios .toolbar-top-ios .tab-link-highlight,
  2912. .md .toolbar-top-md .tab-link-highlight,
  2913. .aurora .toolbar-top-aurora .tab-link-highlight {
  2914. bottom: 0;
  2915. }
  2916. .toolbar-top.no-hairline:after,
  2917. .ios .toolbar-top-ios.no-hairline:after,
  2918. .md .toolbar-top-md.no-hairline:after,
  2919. .aurora .toolbar-top-aurora.no-hairline:after,
  2920. .toolbar-top.no-border:after,
  2921. .ios .toolbar-top-ios.no-border:after,
  2922. .md .toolbar-top-md.no-border:after,
  2923. .aurora .toolbar-top-aurora.no-border:after {
  2924. display: none !important;
  2925. }
  2926. .toolbar-top.no-shadow:before,
  2927. .ios .toolbar-top-ios.no-shadow:before,
  2928. .md .toolbar-top-md.no-shadow:before,
  2929. .aurora .toolbar-top-aurora.no-shadow:before,
  2930. .toolbar-top.toolbar-hidden:before,
  2931. .ios .toolbar-top-ios.toolbar-hidden:before,
  2932. .md .toolbar-top-md.toolbar-hidden:before,
  2933. .aurora .toolbar-top-aurora.toolbar-hidden:before {
  2934. display: none !important;
  2935. }
  2936. .toolbar-top:after,
  2937. .ios .toolbar-top-ios:after,
  2938. .md .toolbar-top-md:after,
  2939. .aurora .toolbar-top-aurora:after,
  2940. .toolbar-top:before,
  2941. .ios .toolbar-top-ios:before,
  2942. .md .toolbar-top-md:before,
  2943. .aurora .toolbar-top-aurora:before {
  2944. -webkit-backface-visibility: hidden;
  2945. backface-visibility: hidden;
  2946. }
  2947. .toolbar-top:after,
  2948. .ios .toolbar-top-ios:after,
  2949. .md .toolbar-top-md:after,
  2950. .aurora .toolbar-top-aurora:after {
  2951. content: '';
  2952. position: absolute;
  2953. background-color: var(--f7-toolbar-border-color, var(--f7-bars-border-color));
  2954. display: block;
  2955. z-index: 15;
  2956. top: auto;
  2957. right: auto;
  2958. bottom: 0;
  2959. left: 0;
  2960. height: 1px;
  2961. width: 100%;
  2962. transform-origin: 50% 100%;
  2963. transform: scaleY(calc(1 / var(--f7-device-pixel-ratio)));
  2964. }
  2965. .toolbar-top:before,
  2966. .ios .toolbar-top-ios:before,
  2967. .md .toolbar-top-md:before,
  2968. .aurora .toolbar-top-aurora:before {
  2969. content: '';
  2970. position: absolute;
  2971. right: 0;
  2972. width: 100%;
  2973. top: 100%;
  2974. bottom: auto;
  2975. height: 8px;
  2976. pointer-events: none;
  2977. background: var(--f7-toolbar-top-shadow-image);
  2978. }
  2979. .toolbar-bottom,
  2980. .ios .toolbar-bottom-ios,
  2981. .md .toolbar-bottom-md,
  2982. .aurora .toolbar-bottom-aurora {
  2983. bottom: 0;
  2984. height: calc(var(--f7-toolbar-height) + var(--f7-safe-area-bottom));
  2985. }
  2986. .toolbar-bottom .tab-link-highlight,
  2987. .ios .toolbar-bottom-ios .tab-link-highlight,
  2988. .md .toolbar-bottom-md .tab-link-highlight,
  2989. .aurora .toolbar-bottom-aurora .tab-link-highlight {
  2990. top: 0;
  2991. }
  2992. .toolbar-bottom .toolbar-inner,
  2993. .ios .toolbar-bottom-ios .toolbar-inner,
  2994. .md .toolbar-bottom-md .toolbar-inner,
  2995. .aurora .toolbar-bottom-aurora .toolbar-inner {
  2996. height: auto;
  2997. top: 0;
  2998. bottom: var(--f7-safe-area-bottom);
  2999. }
  3000. .toolbar-bottom.no-hairline:before,
  3001. .ios .toolbar-bottom-ios.no-hairline:before,
  3002. .md .toolbar-bottom-md.no-hairline:before,
  3003. .aurora .toolbar-bottom-aurora.no-hairline:before,
  3004. .toolbar-bottom.no-border:before,
  3005. .ios .toolbar-bottom-ios.no-border:before,
  3006. .md .toolbar-bottom-md.no-border:before,
  3007. .aurora .toolbar-bottom-aurora.no-border:before {
  3008. display: none !important;
  3009. }
  3010. .toolbar-bottom.no-shadow:after,
  3011. .ios .toolbar-bottom-ios.no-shadow:after,
  3012. .md .toolbar-bottom-md.no-shadow:after,
  3013. .aurora .toolbar-bottom-aurora.no-shadow:after,
  3014. .toolbar-bottom.toolbar-hidden:after,
  3015. .ios .toolbar-bottom-ios.toolbar-hidden:after,
  3016. .md .toolbar-bottom-md.toolbar-hidden:after,
  3017. .aurora .toolbar-bottom-aurora.toolbar-hidden:after {
  3018. display: none !important;
  3019. }
  3020. .toolbar-bottom:before,
  3021. .ios .toolbar-bottom-ios:before,
  3022. .md .toolbar-bottom-md:before,
  3023. .aurora .toolbar-bottom-aurora:before {
  3024. content: '';
  3025. position: absolute;
  3026. background-color: var(--f7-toolbar-border-color, var(--f7-bars-border-color));
  3027. display: block;
  3028. z-index: 15;
  3029. top: 0;
  3030. right: auto;
  3031. bottom: auto;
  3032. left: 0;
  3033. height: 1px;
  3034. width: 100%;
  3035. transform-origin: 50% 0%;
  3036. transform: scaleY(calc(1 / var(--f7-device-pixel-ratio)));
  3037. }
  3038. .toolbar-bottom:after,
  3039. .ios .toolbar-bottom-ios:after,
  3040. .md .toolbar-bottom-md:after,
  3041. .aurora .toolbar-bottom-aurora:after {
  3042. content: '';
  3043. position: absolute;
  3044. right: 0;
  3045. width: 100%;
  3046. bottom: 100%;
  3047. height: 8px;
  3048. top: auto;
  3049. pointer-events: none;
  3050. background: var(--f7-toolbar-bottom-shadow-image);
  3051. transform: translate3d(0, 0, 0);
  3052. }
  3053. .toolbar-inner {
  3054. position: absolute;
  3055. left: 0;
  3056. top: 0;
  3057. width: 100%;
  3058. height: 100%;
  3059. display: flex;
  3060. justify-content: space-between;
  3061. box-sizing: border-box;
  3062. align-items: center;
  3063. align-content: center;
  3064. overflow: hidden;
  3065. padding: 0 calc(var(--f7-toolbar-inner-padding-right) + var(--f7-safe-area-right)) 0 calc(var(--f7-toolbar-inner-padding-left) + var(--f7-safe-area-left));
  3066. }
  3067. .views > .tabbar,
  3068. .views > .tabbar-labels {
  3069. z-index: 5001;
  3070. }
  3071. .tabbar a,
  3072. .tabbar-labels a {
  3073. color: var(--f7-tabbar-link-inactive-color);
  3074. }
  3075. .tabbar .tab-link:not(.tab-link-active),
  3076. .tabbar-labels .tab-link:not(.tab-link-active) {
  3077. background-color: var(--f7-tabbar-link-inactive-bg-color, transparent);
  3078. }
  3079. .tabbar .link,
  3080. .tabbar-labels .link {
  3081. line-height: 1.4;
  3082. }
  3083. .tabbar .tab-link,
  3084. .tabbar-labels .tab-link,
  3085. .tabbar .link,
  3086. .tabbar-labels .link {
  3087. height: 100%;
  3088. width: 100%;
  3089. box-sizing: border-box;
  3090. display: flex;
  3091. justify-content: center;
  3092. align-items: center;
  3093. flex-direction: column;
  3094. text-transform: var(--f7-tabbar-link-text-transform);
  3095. font-weight: var(--f7-tabbar-link-font-weight);
  3096. letter-spacing: var(--f7-tabbar-link-letter-spacing);
  3097. overflow: hidden;
  3098. }
  3099. .tabbar .tab-link-active,
  3100. .tabbar-labels .tab-link-active {
  3101. color: var(--f7-tabbar-link-active-color, var(--f7-theme-color));
  3102. background-color: var(--f7-tabbar-link-active-bg-color, transparent);
  3103. }
  3104. .tabbar i.icon,
  3105. .tabbar-labels i.icon {
  3106. font-size: var(--f7-tabbar-icon-size);
  3107. height: var(--f7-tabbar-icon-size);
  3108. line-height: var(--f7-tabbar-icon-size);
  3109. }
  3110. .tabbar-labels {
  3111. --f7-toolbar-height: var(--f7-tabbar-labels-height);
  3112. }
  3113. .tabbar-labels .tab-link,
  3114. .tabbar-labels .link {
  3115. height: 100%;
  3116. justify-content: space-between;
  3117. align-items: center;
  3118. }
  3119. .tabbar-labels .tabbar-label {
  3120. display: block;
  3121. line-height: 1;
  3122. margin: 0;
  3123. position: relative;
  3124. text-overflow: ellipsis;
  3125. white-space: nowrap;
  3126. font-size: var(--f7-tabbar-label-font-size);
  3127. text-transform: var(--f7-tabbar-label-text-transform);
  3128. font-weight: var(--f7-tabbar-label-font-weight);
  3129. letter-spacing: var(--f7-tabbar-label-letter-spacing);
  3130. }
  3131. @media (min-width: 768px) and (min-height: 600px) {
  3132. :root {
  3133. --f7-tabbar-labels-height: var(--f7-tabbar-labels-tablet-height);
  3134. --f7-tabbar-label-font-size: var(--f7-tabbar-label-tablet-font-size);
  3135. }
  3136. }
  3137. .tabbar-scrollable .toolbar-inner {
  3138. justify-content: flex-start;
  3139. overflow: auto;
  3140. -webkit-overflow-scrolling: touch;
  3141. }
  3142. .tabbar-scrollable .toolbar-inner::-webkit-scrollbar {
  3143. display: none !important;
  3144. width: 0 !important;
  3145. height: 0 !important;
  3146. -webkit-appearance: none;
  3147. opacity: 0 !important;
  3148. }
  3149. .tabbar-scrollable .tab-link,
  3150. .tabbar-scrollable .link {
  3151. width: auto;
  3152. flex-shrink: 0;
  3153. }
  3154. .toolbar-transitioning,
  3155. .navbar-transitioning + .toolbar,
  3156. .navbar-transitioning ~ * .toolbar {
  3157. transition-duration: var(--f7-toolbar-hide-show-transition-duration);
  3158. }
  3159. .toolbar-bottom ~ *,
  3160. .ios .toolbar-bottom-ios ~ *,
  3161. .md .toolbar-bottom-md ~ *,
  3162. .aurora .toolbar-bottom-aurora ~ * {
  3163. --f7-page-toolbar-bottom-offset: var(--f7-toolbar-height);
  3164. }
  3165. .toolbar-bottom.tabbar-labels ~ *,
  3166. .ios .toolbar-bottom-ios.tabbar-labels ~ *,
  3167. .md .toolbar-bottom-md.tabbar-labels ~ *,
  3168. .aurora .toolbar-bottom-aurora.tabbar-labels ~ * {
  3169. --f7-page-toolbar-bottom-offset: var(--f7-tabbar-labels-height);
  3170. }
  3171. .toolbar-bottom.toolbar-hidden,
  3172. .ios .toolbar-bottom-ios.toolbar-hidden,
  3173. .md .toolbar-bottom-md.toolbar-hidden,
  3174. .aurora .toolbar-bottom-aurora.toolbar-hidden {
  3175. transform: translate3d(0, 100%, 0);
  3176. }
  3177. .toolbar-top ~ *,
  3178. .ios .toolbar-top-ios ~ *,
  3179. .md .toolbar-top-md ~ *,
  3180. .aurora .toolbar-top-aurora ~ * {
  3181. --f7-page-toolbar-top-offset: var(--f7-toolbar-height);
  3182. }
  3183. .toolbar-top.tabbar-labels ~ *,
  3184. .ios .toolbar-top-ios.tabbar-labels ~ *,
  3185. .md .toolbar-top-md.tabbar-labels ~ *,
  3186. .aurora .toolbar-top-aurora.tabbar-labels ~ * {
  3187. --f7-page-toolbar-top-offset: var(--f7-tabbar-labels-height);
  3188. }
  3189. .toolbar-top.toolbar-hidden,
  3190. .ios .toolbar-top-ios.toolbar-hidden,
  3191. .md .toolbar-top-md.toolbar-hidden,
  3192. .aurora .toolbar-top-aurora.toolbar-hidden {
  3193. transform: translate3d(0, -100%, 0);
  3194. }
  3195. .navbar ~ .toolbar-top,
  3196. .navbars ~ .toolbar-top,
  3197. .ios .navbar ~ .toolbar-top-ios,
  3198. .ios .navbars ~ .toolbar-top-ios,
  3199. .md .navbar ~ .toolbar-top-md,
  3200. .aurora .navbar ~ .toolbar-top-aurora,
  3201. .navbar ~ * .toolbar-top,
  3202. .navbars ~ * .toolbar-top,
  3203. .ios .navbar ~ * .toolbar-top-ios,
  3204. .ios .navbars ~ * .toolbar-top-ios,
  3205. .md .navbar ~ * .toolbar-top-md,
  3206. .aurora .navbar ~ * .toolbar-top-aurora,
  3207. .navbar ~ .page:not(.no-navbar) .toolbar-top,
  3208. .navbars ~ .page:not(.no-navbar) .toolbar-top,
  3209. .ios .navbar ~ .page:not(.no-navbar) .toolbar-top-ios,
  3210. .ios .navbars ~ .page:not(.no-navbar) .toolbar-top-ios,
  3211. .md .navbar ~ .page:not(.no-navbar) .toolbar-top-md,
  3212. .aurora .navbar ~ .page:not(.no-navbar) .toolbar-top-aurora {
  3213. top: calc(var(--f7-navbar-height) + var(--f7-safe-area-top));
  3214. }
  3215. .navbar ~ .toolbar-top.toolbar-hidden,
  3216. .navbars ~ .toolbar-top.toolbar-hidden,
  3217. .ios .navbar ~ .toolbar-top-ios.toolbar-hidden,
  3218. .ios .navbars ~ .toolbar-top-ios.toolbar-hidden,
  3219. .md .navbar ~ .toolbar-top-md.toolbar-hidden,
  3220. .aurora .navbar ~ .toolbar-top-aurora.toolbar-hidden,
  3221. .navbar ~ * .toolbar-top.toolbar-hidden,
  3222. .navbars ~ * .toolbar-top.toolbar-hidden,
  3223. .ios .navbar ~ * .toolbar-top-ios.toolbar-hidden,
  3224. .ios .navbars ~ * .toolbar-top-ios.toolbar-hidden,
  3225. .md .navbar ~ * .toolbar-top-md.toolbar-hidden,
  3226. .aurora .navbar ~ * .toolbar-top-aurora.toolbar-hidden,
  3227. .navbar ~ .page:not(.no-navbar) .toolbar-top.toolbar-hidden,
  3228. .navbars ~ .page:not(.no-navbar) .toolbar-top.toolbar-hidden,
  3229. .ios .navbar ~ .page:not(.no-navbar) .toolbar-top-ios.toolbar-hidden,
  3230. .ios .navbars ~ .page:not(.no-navbar) .toolbar-top-ios.toolbar-hidden,
  3231. .md .navbar ~ .page:not(.no-navbar) .toolbar-top-md.toolbar-hidden,
  3232. .aurora .navbar ~ .page:not(.no-navbar) .toolbar-top-aurora.toolbar-hidden {
  3233. transform: translate3d(0, calc(-1 * (var(--f7-navbar-height) + var(--f7-toolbar-height) + var(--f7-safe-area-top))), 0);
  3234. }
  3235. .navbar ~ .toolbar-top.toolbar-hidden.tabbar-labels,
  3236. .navbars ~ .toolbar-top.toolbar-hidden.tabbar-labels,
  3237. .ios .navbar ~ .toolbar-top-ios.toolbar-hidden.tabbar-labels,
  3238. .ios .navbars ~ .toolbar-top-ios.toolbar-hidden.tabbar-labels,
  3239. .md .navbar ~ .toolbar-top-md.toolbar-hidden.tabbar-labels,
  3240. .aurora .navbar ~ .toolbar-top-aurora.toolbar-hidden.tabbar-labels,
  3241. .navbar ~ * .toolbar-top.toolbar-hidden.tabbar-labels,
  3242. .navbars ~ * .toolbar-top.toolbar-hidden.tabbar-labels,
  3243. .ios .navbar ~ * .toolbar-top-ios.toolbar-hidden.tabbar-labels,
  3244. .ios .navbars ~ * .toolbar-top-ios.toolbar-hidden.tabbar-labels,
  3245. .md .navbar ~ * .toolbar-top-md.toolbar-hidden.tabbar-labels,
  3246. .aurora .navbar ~ * .toolbar-top-aurora.toolbar-hidden.tabbar-labels,
  3247. .navbar ~ .page:not(.no-navbar) .toolbar-top.toolbar-hidden.tabbar-labels,
  3248. .navbars ~ .page:not(.no-navbar) .toolbar-top.toolbar-hidden.tabbar-labels,
  3249. .ios .navbar ~ .page:not(.no-navbar) .toolbar-top-ios.toolbar-hidden.tabbar-labels,
  3250. .ios .navbars ~ .page:not(.no-navbar) .toolbar-top-ios.toolbar-hidden.tabbar-labels,
  3251. .md .navbar ~ .page:not(.no-navbar) .toolbar-top-md.toolbar-hidden.tabbar-labels,
  3252. .aurora .navbar ~ .page:not(.no-navbar) .toolbar-top-aurora.toolbar-hidden.tabbar-labels {
  3253. transform: translate3d(0, calc(-1 * (var(--f7-navbar-height) + var(--f7-tabbar-labels-height) + var(--f7-safe-area-top))), 0);
  3254. }
  3255. .navbar-hidden + .toolbar-top:not(.toolbar-hidden),
  3256. .ios .navbar-hidden + .toolbar-top-ios:not(.toolbar-hidden),
  3257. .md .navbar-hidden + .toolbar-top-md:not(.toolbar-hidden),
  3258. .aurora .navbar-hidden + .toolbar-top-aurora:not(.toolbar-hidden),
  3259. .navbar-hidden ~ * .toolbar-top:not(.toolbar-hidden),
  3260. .ios .navbar-hidden ~ * .toolbar-top-ios:not(.toolbar-hidden),
  3261. .md .navbar-hidden ~ * .toolbar-top-md:not(.toolbar-hidden),
  3262. .aurora .navbar-hidden ~ * .toolbar-top-aurora:not(.toolbar-hidden) {
  3263. transform: translate3d(0, calc(0px - var(--f7-navbar-height)), 0);
  3264. }
  3265. .navbar-large-hidden + .toolbar-top:not(.toolbar-hidden),
  3266. .ios .navbar-large-hidden + .toolbar-top-ios:not(.toolbar-hidden),
  3267. .md .navbar-large-hidden + .toolbar-top-md:not(.toolbar-hidden),
  3268. .navbar-large-hidden ~ * .toolbar-top:not(.toolbar-hidden),
  3269. .ios .navbar-large-hidden ~ * .toolbar-top-ios:not(.toolbar-hidden),
  3270. .md .navbar-large-hidden ~ * .toolbar-top-md:not(.toolbar-hidden),
  3271. .aurora .navbar-large-hidden ~ * .toolbar-top-aurora:not(.toolbar-hidden) {
  3272. transform: translate3d(0, calc(0px - var(--f7-navbar-height) - var(--f7-navbar-large-title-height)), 0);
  3273. }
  3274. .ios .toolbar a.icon-only {
  3275. min-height: var(--f7-toolbar-height);
  3276. display: flex;
  3277. justify-content: center;
  3278. align-items: center;
  3279. margin: 0;
  3280. min-width: 44px;
  3281. }
  3282. .ios .tabbar-labels .tab-link,
  3283. .ios .tabbar-labels .link {
  3284. padding-top: 4px;
  3285. padding-bottom: 4px;
  3286. }
  3287. .ios .tabbar-labels .tab-link i + span,
  3288. .ios .tabbar-labels .link i + span {
  3289. margin: 0;
  3290. }
  3291. @media (min-width: 768px) and (min-height: 600px) {
  3292. .ios .tabbar .tab-link,
  3293. .ios .tabbar-labels .tab-link,
  3294. .ios .tabbar .link,
  3295. .ios .tabbar-labels .link {
  3296. justify-content: center;
  3297. flex-direction: row;
  3298. }
  3299. .ios .tabbar .tab-link i + span,
  3300. .ios .tabbar-labels .tab-link i + span,
  3301. .ios .tabbar .link i + span,
  3302. .ios .tabbar-labels .link i + span {
  3303. margin-left: 5px;
  3304. }
  3305. }
  3306. .ios .tabbar-scrollable .toolbar-inner {
  3307. justify-content: flex-start;
  3308. }
  3309. .ios .tabbar-scrollable .tab-link,
  3310. .ios .tabbar-scrollable .link {
  3311. padding: 0 8px;
  3312. }
  3313. .md .toolbar .link {
  3314. justify-content: center;
  3315. padding: 0 16px;
  3316. min-width: 48px;
  3317. }
  3318. .md .toolbar .link:before {
  3319. content: '';
  3320. width: 152%;
  3321. height: 152%;
  3322. position: absolute;
  3323. left: -26%;
  3324. top: -26%;
  3325. background-image: radial-gradient(circle at center, var(--f7-link-highlight-color) 66%, rgba(255, 255, 255, 0) 66%);
  3326. background-repeat: no-repeat;
  3327. background-position: center;
  3328. background-size: 100% 100%;
  3329. opacity: 0;
  3330. pointer-events: none;
  3331. transition-duration: 600ms;
  3332. }
  3333. .md .toolbar .link.active-state:before {
  3334. opacity: 1;
  3335. transition-duration: 150ms;
  3336. }
  3337. .md .toolbar a.icon-only {
  3338. min-width: 0;
  3339. flex-shrink: 0;
  3340. }
  3341. .md .tabbar .tab-link,
  3342. .md .tabbar-labels .tab-link,
  3343. .md .tabbar .link,
  3344. .md .tabbar-labels .link {
  3345. padding-left: 0;
  3346. padding-right: 0;
  3347. }
  3348. .md .tabbar a.icon-only,
  3349. .md .tabbar-labels a.icon-only {
  3350. flex-shrink: initial;
  3351. }
  3352. .md .tabbar .tab-link,
  3353. .md .tabbar-labels .tab-link {
  3354. transition-duration: 300ms;
  3355. overflow: hidden;
  3356. position: relative;
  3357. }
  3358. .md .tabbar .tab-link-highlight,
  3359. .md .tabbar-labels .tab-link-highlight {
  3360. position: absolute;
  3361. left: 0;
  3362. height: 2px;
  3363. background: var(--f7-tabbar-link-active-border-color, var(--f7-theme-color));
  3364. transition-duration: 300ms;
  3365. right: 0;
  3366. }
  3367. .md .tabbar-labels .tab-link,
  3368. .md .tabbar-labels .link {
  3369. padding-top: 7px;
  3370. padding-bottom: 7px;
  3371. }
  3372. .md .tabbar-label {
  3373. max-width: 100%;
  3374. overflow: hidden;
  3375. line-height: 1.2;
  3376. }
  3377. .md .tabbar-scrollable .toolbar-inner {
  3378. overflow: auto;
  3379. }
  3380. .md .tabbar-scrollable .tab-link,
  3381. .md .tabbar-scrollable .link {
  3382. padding: 0 16px;
  3383. }
  3384. .aurora .toolbar a.icon-only {
  3385. min-height: var(--f7-toolbar-height);
  3386. display: flex;
  3387. justify-content: center;
  3388. align-items: center;
  3389. margin: 0;
  3390. }
  3391. .aurora .tabbar .toolbar-inner,
  3392. .aurora .tabbar-labels .toolbar-inner {
  3393. padding-left: 0;
  3394. padding-right: 0;
  3395. }
  3396. .aurora .tabbar .tab-link,
  3397. .aurora .tabbar-labels .tab-link,
  3398. .aurora .tabbar .link,
  3399. .aurora .tabbar-labels .link {
  3400. transition-duration: 200ms;
  3401. }
  3402. .aurora .tabbar-labels .tab-link,
  3403. .aurora .tabbar-labels .link {
  3404. padding-top: 5px;
  3405. padding-bottom: 5px;
  3406. }
  3407. .aurora .tabbar-labels .tab-link i + span,
  3408. .aurora .tabbar-labels .link i + span {
  3409. margin: 0;
  3410. }
  3411. .aurora .tabbar-scrollable .toolbar-inner {
  3412. justify-content: flex-start;
  3413. }
  3414. .aurora .tabbar-scrollable .tab-link,
  3415. .aurora .tabbar-scrollable .link {
  3416. padding: 0 16px;
  3417. }
  3418. /* === Subnavbar === */
  3419. :root {
  3420. /*
  3421. --f7-subnavbar-bg-image: var(--f7-bars-bg-image);
  3422. --f7-subnavbar-bg-color: var(--f7-bars-bg-color);
  3423. --f7-subnavbar-bg-color-rgb: var(--f7-bars-bg-color-rgb);
  3424. --f7-subnavbar-border-color: var(--f7-bars-border-color);
  3425. --f7-subnavbar-link-color: var(--f7-bars-link-color);
  3426. --f7-subnavbar-text-color: var(--f7-bars-text-color);
  3427. */
  3428. --f7-subnavbar-title-line-height: 1.2;
  3429. }
  3430. .ios {
  3431. --f7-subnavbar-height: 44px;
  3432. --f7-subnavbar-inner-padding-left: 8px;
  3433. --f7-subnavbar-inner-padding-right: 8px;
  3434. --f7-subnavbar-title-font-size: 34px;
  3435. --f7-subnavbar-title-font-weight: 700;
  3436. --f7-subnavbar-title-letter-spacing: -0.03em;
  3437. --f7-subnavbar-title-margin-left: 8px;
  3438. --f7-subnavbar-shadow-image: none;
  3439. /*
  3440. --f7-subnavbar-link-height: var(--f7-subnavbar-height);
  3441. --f7-subnavbar-link-line-height: var(--f7-subnavbar-height);
  3442. */
  3443. }
  3444. .md {
  3445. --f7-subnavbar-height: 48px;
  3446. --f7-subnavbar-inner-padding-left: 16px;
  3447. --f7-subnavbar-inner-padding-right: 16px;
  3448. --f7-subnavbar-title-font-size: 20px;
  3449. --f7-subnavbar-title-font-weight: 500;
  3450. --f7-subnavbar-title-letter-spacing: 0;
  3451. --f7-subnavbar-title-margin-left: 0px;
  3452. --f7-subnavbar-shadow-image: var(--f7-bars-shadow-bottom-image);
  3453. /*
  3454. --f7-subnavbar-link-height: var(--f7-subnavbar-height);
  3455. --f7-subnavbar-link-line-height: var(--f7-subnavbar-height);
  3456. */
  3457. }
  3458. .aurora {
  3459. --f7-subnavbar-height: 38px;
  3460. --f7-subnavbar-inner-padding-left: 16px;
  3461. --f7-subnavbar-inner-padding-right: 16px;
  3462. --f7-subnavbar-title-font-size: 26px;
  3463. --f7-subnavbar-title-font-weight: bold;
  3464. --f7-subnavbar-title-letter-spacing: -0.03em;
  3465. --f7-subnavbar-title-margin-left: 0px;
  3466. --f7-subnavbar-shadow-image: none;
  3467. --f7-subnavbar-link-height: auto;
  3468. --f7-subnavbar-link-line-height: inherit;
  3469. }
  3470. .subnavbar {
  3471. width: 100%;
  3472. position: absolute;
  3473. left: 0;
  3474. top: 0;
  3475. z-index: 600;
  3476. box-sizing: border-box;
  3477. display: flex;
  3478. justify-content: space-between;
  3479. align-items: center;
  3480. background-image: var(--f7-subnavbar-bg-image, var(--f7-bars-bg-image));
  3481. background-color: var(--f7-subnavbar-bg-color, var(--f7-bars-bg-color));
  3482. color: var(--f7-subnavbar-text-color, var(--f7-bars-text-color));
  3483. }
  3484. @supports ((-webkit-backdrop-filter: blur(20px)) or (backdrop-filter: blur(20px))) {
  3485. .ios-translucent-bars .subnavbar {
  3486. background-color: rgba(var(--f7-subnavbar-bg-color-rgb, var(--f7-bars-bg-color-rgb)), var(--f7-bars-translucent-opacity));
  3487. -webkit-backdrop-filter: saturate(180%) blur(var(--f7-bars-translucent-blur));
  3488. backdrop-filter: saturate(180%) blur(var(--f7-bars-translucent-blur));
  3489. }
  3490. }
  3491. .subnavbar .subnavbar-title {
  3492. position: relative;
  3493. overflow: hidden;
  3494. text-overflow: ellpsis;
  3495. white-space: nowrap;
  3496. font-size: var(--f7-subnavbar-title-font-size);
  3497. font-weight: var(--f7-subnavbar-title-font-weight);
  3498. text-align: left;
  3499. display: inline-block;
  3500. line-height: var(--f7-subnavbar-title-line-height);
  3501. letter-spacing: var(--f7-subnavbar-title-letter-spacing);
  3502. margin-right: var(--f7-subnavbar-title-margin-left);
  3503. }
  3504. .subnavbar .left,
  3505. .subnavbar .right {
  3506. flex-shrink: 0;
  3507. display: flex;
  3508. justify-content: flex-start;
  3509. align-items: center;
  3510. }
  3511. .subnavbar .right:first-child {
  3512. position: absolute;
  3513. height: 100%;
  3514. }
  3515. .subnavbar a {
  3516. color: var(--f7-subnavbar-link-color, var(--f7-bars-link-color, var(--f7-theme-color)));
  3517. }
  3518. .subnavbar a.link {
  3519. line-height: var(--f7-subnavbar-link-line-height, var(--f7-subnavbar-height));
  3520. height: var(--f7-subnavbar-link-height, var(--f7-subnavbar-height));
  3521. }
  3522. .subnavbar a.icon-only {
  3523. min-width: var(--f7-subnavbar-height);
  3524. }
  3525. .subnavbar.no-hairline:after,
  3526. .subnavbar.no-border:after {
  3527. display: none !important;
  3528. }
  3529. .subnavbar.no-shadow:before,
  3530. .subnavbar.navbar-hidden:before {
  3531. display: none !important;
  3532. }
  3533. .subnavbar:after,
  3534. .subnavbar:before {
  3535. -webkit-backface-visibility: hidden;
  3536. backface-visibility: hidden;
  3537. }
  3538. .subnavbar:after {
  3539. content: '';
  3540. position: absolute;
  3541. background-color: var(--f7-subnavbar-border-color, var(--f7-bars-border-color));
  3542. display: block;
  3543. z-index: 15;
  3544. top: auto;
  3545. right: auto;
  3546. bottom: 0;
  3547. left: 0;
  3548. height: 1px;
  3549. width: 100%;
  3550. transform-origin: 50% 100%;
  3551. transform: scaleY(calc(1 / var(--f7-device-pixel-ratio)));
  3552. }
  3553. .subnavbar:before {
  3554. content: '';
  3555. position: absolute;
  3556. right: 0;
  3557. width: 100%;
  3558. top: 100%;
  3559. bottom: auto;
  3560. height: 8px;
  3561. pointer-events: none;
  3562. background: var(--f7-subnavbar-shadow-image);
  3563. }
  3564. .subnavbar-inner {
  3565. width: 100%;
  3566. height: 100%;
  3567. display: flex;
  3568. align-items: center;
  3569. box-sizing: border-box;
  3570. justify-content: space-between;
  3571. overflow: hidden;
  3572. padding: 0 calc(var(--f7-subnavbar-inner-padding-left) + var(--f7-safe-area-right)) 0 calc(var(--f7-subnavbar-inner-padding-right) + var(--f7-safe-area-left));
  3573. }
  3574. .subnavbar-inner.stacked {
  3575. display: none;
  3576. }
  3577. .navbar .subnavbar {
  3578. top: 100%;
  3579. }
  3580. .views > .subnavbar,
  3581. .view > .subnavbar,
  3582. .page > .subnavbar {
  3583. position: absolute;
  3584. }
  3585. .navbar ~ * .subnavbar,
  3586. .navbars ~ * .subnavbar,
  3587. .page-with-subnavbar .navbar ~ .subnavbar,
  3588. .page-with-subnavbar .navbar ~ * .subnavbar,
  3589. .navbar ~ .page-with-subnavbar:not(.no-navbar) .subnavbar,
  3590. .navbar ~ .subnavbar,
  3591. .navbars ~ .page-with-subnavbar:not(.no-navbar) .subnavbar,
  3592. .navbars ~ .subnavbar {
  3593. top: calc(var(--f7-navbar-height) + var(--f7-safe-area-top));
  3594. }
  3595. .navbar ~ .page-with-navbar-large:not(.no-navbar) .subnavbar,
  3596. .navbars ~ .page-with-navbar-large:not(.no-navbar) .subnavbar,
  3597. .page-with-subnavbar.page-with-navbar-large .navbar ~ .subnavbar,
  3598. .page-with-subnavbar.page-with-navbar-large .navbar ~ * .subnavbar,
  3599. .navbar .title-large ~ .subnavbar {
  3600. top: calc(var(--f7-navbar-height) + var(--f7-navbar-large-title-height) + var(--f7-safe-area-top));
  3601. transform: translate3d(0, calc(-1 * var(--f7-navbar-large-collapse-progress) * var(--f7-navbar-large-title-height)), 0);
  3602. }
  3603. .page-with-subnavbar,
  3604. .subnavbar ~ * {
  3605. --f7-page-subnavbar-offset: var(--f7-subnavbar-height);
  3606. }
  3607. .ios .subnavbar {
  3608. height: calc(var(--f7-subnavbar-height) + 1px);
  3609. margin-top: -1px;
  3610. padding-top: 1px;
  3611. }
  3612. .ios .subnavbar .title {
  3613. align-self: flex-start;
  3614. flex-shrink: 10;
  3615. }
  3616. .ios .subnavbar .left a + a,
  3617. .ios .subnavbar .right a + a {
  3618. margin-right: 16px;
  3619. }
  3620. .ios .subnavbar .left {
  3621. margin-left: 10px;
  3622. }
  3623. .ios .subnavbar .right {
  3624. margin-right: 10px;
  3625. }
  3626. .ios .subnavbar .right:first-child {
  3627. left: 8px;
  3628. }
  3629. .ios .subnavbar a.link {
  3630. justify-content: flex-start;
  3631. }
  3632. .ios .subnavbar a.icon-only {
  3633. justify-content: center;
  3634. margin: 0;
  3635. }
  3636. .md .subnavbar {
  3637. height: var(--f7-subnavbar-height);
  3638. }
  3639. .md .subnavbar .right {
  3640. margin-right: auto;
  3641. }
  3642. .md .subnavbar .right:first-child {
  3643. left: 16px;
  3644. }
  3645. .md .subnavbar a.link {
  3646. justify-content: center;
  3647. padding: 0 16px;
  3648. }
  3649. .md .subnavbar a.link:before {
  3650. content: '';
  3651. width: 152%;
  3652. height: 152%;
  3653. position: absolute;
  3654. left: -26%;
  3655. top: -26%;
  3656. background-image: radial-gradient(circle at center, var(--f7-link-highlight-color) 66%, rgba(255, 255, 255, 0) 66%);
  3657. background-repeat: no-repeat;
  3658. background-position: center;
  3659. background-size: 100% 100%;
  3660. opacity: 0;
  3661. pointer-events: none;
  3662. transition-duration: 600ms;
  3663. }
  3664. .md .subnavbar a.link.active-state:before {
  3665. opacity: 1;
  3666. transition-duration: 150ms;
  3667. }
  3668. .md .subnavbar a.icon-only {
  3669. flex-shrink: 0;
  3670. }
  3671. .md .subnavbar-inner > a.link:first-child {
  3672. margin-right: calc(-1 * var(--f7-subnavbar-inner-padding-right));
  3673. }
  3674. .md .subnavbar-inner > a.link:last-child {
  3675. margin-left: calc(-1 * var(--f7-subnavbar-inner-padding-left));
  3676. }
  3677. .aurora .subnavbar {
  3678. height: calc(var(--f7-subnavbar-height) + 1px);
  3679. margin-top: -1px;
  3680. padding-top: 1px;
  3681. }
  3682. .aurora .subnavbar .title {
  3683. align-self: flex-start;
  3684. flex-shrink: 10;
  3685. }
  3686. .aurora .subnavbar .left a + a,
  3687. .aurora .subnavbar .right a + a {
  3688. margin-right: 10px;
  3689. }
  3690. .aurora .subnavbar .left {
  3691. margin-left: 10px;
  3692. }
  3693. .aurora .subnavbar .right {
  3694. margin-right: 10px;
  3695. }
  3696. .aurora .subnavbar .right:first-child {
  3697. left: 16px;
  3698. }
  3699. .aurora .subnavbar a.link {
  3700. justify-content: flex-start;
  3701. }
  3702. .aurora .subnavbar a.icon-only {
  3703. justify-content: center;
  3704. margin: 0;
  3705. }
  3706. /* === Content Block === */
  3707. :root {
  3708. --f7-block-padding-horizontal: 16px;
  3709. --f7-block-padding-vertical: 16px;
  3710. --f7-block-font-size: inherit;
  3711. --f7-block-text-color: inherit;
  3712. --f7-block-header-margin: 10px;
  3713. --f7-block-footer-margin: 10px;
  3714. --f7-block-header-font-size: 14px;
  3715. --f7-block-footer-font-size: 14px;
  3716. --f7-block-title-text-transform: none;
  3717. --f7-block-title-white-space: nowrap;
  3718. --f7-block-title-medium-text-transform: none;
  3719. --f7-block-title-large-text-transform: none;
  3720. --f7-block-inset-side-margin: 16px;
  3721. --f7-block-title-medium-text-color: #000;
  3722. --f7-block-title-large-text-color: #000;
  3723. --f7-block-strong-bg-color: #fff;
  3724. }
  3725. :root .theme-dark,
  3726. :root.theme-dark {
  3727. --f7-block-title-text-color: #fff;
  3728. --f7-block-strong-border-color: rgba(255, 255, 255, 0.15);
  3729. --f7-block-title-medium-text-color: #fff;
  3730. --f7-block-title-large-text-color: #fff;
  3731. --f7-block-strong-bg-color: #1c1c1d;
  3732. }
  3733. .ios {
  3734. --f7-block-margin-vertical: 35px;
  3735. --f7-block-strong-border-color: rgba(0, 0, 0, 0.22);
  3736. --f7-block-title-text-color: #000;
  3737. --f7-block-title-font-size: 16px;
  3738. --f7-block-title-font-weight: 600;
  3739. --f7-block-title-line-height: 20px;
  3740. --f7-block-title-margin-bottom: 10px;
  3741. --f7-block-title-medium-font-size: 22px;
  3742. --f7-block-title-medium-font-weight: bold;
  3743. --f7-block-title-medium-line-height: 1.4;
  3744. --f7-block-title-large-font-size: 30px;
  3745. --f7-block-title-large-font-weight: bold;
  3746. --f7-block-title-large-line-height: 1.3;
  3747. --f7-block-inset-border-radius: 8px;
  3748. --f7-block-strong-text-color: #000;
  3749. --f7-block-header-text-color: rgba(0, 0, 0, 0.45);
  3750. --f7-block-footer-text-color: rgba(0, 0, 0, 0.45);
  3751. }
  3752. .ios .theme-dark,
  3753. .ios.theme-dark {
  3754. --f7-block-header-text-color: rgba(255, 255, 255, 0.55);
  3755. --f7-block-footer-text-color: rgba(255, 255, 255, 0.55);
  3756. --f7-block-strong-text-color: #fff;
  3757. }
  3758. .md {
  3759. --f7-block-margin-vertical: 32px;
  3760. --f7-block-strong-text-color: inherit;
  3761. --f7-block-strong-border-color: rgba(0, 0, 0, 0.12);
  3762. --f7-block-title-font-size: inherit;
  3763. --f7-block-title-text-color: rgba(0, 0, 0, 0.54);
  3764. --f7-block-title-font-weight: 500;
  3765. --f7-block-title-line-height: 16px;
  3766. --f7-block-title-margin-bottom: 16px;
  3767. --f7-block-title-medium-font-size: 24px;
  3768. --f7-block-title-medium-font-weight: 500;
  3769. --f7-block-title-medium-line-height: 1.3;
  3770. --f7-block-title-large-font-size: 34px;
  3771. --f7-block-title-large-font-weight: 500;
  3772. --f7-block-title-large-line-height: 1.2;
  3773. --f7-block-inset-border-radius: 4px;
  3774. --f7-block-header-text-color: rgba(0, 0, 0, 0.54);
  3775. --f7-block-footer-text-color: rgba(0, 0, 0, 0.54);
  3776. }
  3777. .md .theme-dark,
  3778. .md.theme-dark {
  3779. --f7-block-header-text-color: rgba(255, 255, 255, 0.54);
  3780. --f7-block-footer-text-color: rgba(255, 255, 255, 0.54);
  3781. }
  3782. .aurora {
  3783. --f7-block-margin-vertical: 15px;
  3784. --f7-block-strong-border-color: rgba(0, 0, 0, 0.12);
  3785. --f7-block-title-font-size: inherit;
  3786. --f7-block-title-text-color: rgba(0, 0, 0, 0.7);
  3787. --f7-block-title-font-weight: 600;
  3788. --f7-block-title-line-height: 1.5;
  3789. --f7-block-title-margin-bottom: 5px;
  3790. --f7-block-title-medium-font-size: 20px;
  3791. --f7-block-title-medium-font-weight: 600;
  3792. --f7-block-title-medium-line-height: 1.4;
  3793. --f7-block-title-large-font-size: 28px;
  3794. --f7-block-title-large-font-weight: bold;
  3795. --f7-block-title-large-line-height: 1.3;
  3796. --f7-block-inset-border-radius: 4px;
  3797. --f7-block-strong-text-color: inherit;
  3798. --f7-block-header-text-color: rgba(0, 0, 0, 0.6);
  3799. --f7-block-footer-text-color: rgba(0, 0, 0, 0.6);
  3800. }
  3801. .aurora .theme-dark,
  3802. .aurora.theme-dark {
  3803. --f7-block-header-text-color: rgba(255, 255, 255, 0.54);
  3804. --f7-block-footer-text-color: rgba(255, 255, 255, 0.54);
  3805. --f7-block-strong-text-color: #fff;
  3806. }
  3807. .block {
  3808. box-sizing: border-box;
  3809. position: relative;
  3810. z-index: 1;
  3811. color: var(--f7-block-text-color);
  3812. margin: var(--f7-block-margin-vertical) 0;
  3813. padding-top: 0;
  3814. padding-bottom: 0;
  3815. padding-left: calc(var(--f7-block-padding-horizontal) + var(--f7-safe-area-left));
  3816. padding-right: calc(var(--f7-block-padding-horizontal) + var(--f7-safe-area-right));
  3817. font-size: var(--f7-block-font-size);
  3818. }
  3819. .block.no-hairlines:before,
  3820. .block.no-hairlines ul:before,
  3821. .md .block.no-hairlines-md:before,
  3822. .md .block.no-hairlines-md ul:before,
  3823. .ios .block.no-hairlines-ios:before,
  3824. .ios .block.no-hairlines-ios ul:before,
  3825. .aurora .block.no-hairlines-aurora:before,
  3826. .aurora .block.no-hairlines-aurora ul:before,
  3827. .block.no-hairlines:after,
  3828. .block.no-hairlines ul:after,
  3829. .md .block.no-hairlines-md:after,
  3830. .md .block.no-hairlines-md ul:after,
  3831. .ios .block.no-hairlines-ios:after,
  3832. .ios .block.no-hairlines-ios ul:after,
  3833. .aurora .block.no-hairlines-aurora:after,
  3834. .aurora .block.no-hairlines-aurora ul:after {
  3835. display: none !important;
  3836. }
  3837. .block.no-hairline-top:before,
  3838. .block.no-hairline-top ul:before,
  3839. .md .block.no-hairline-top-md:before,
  3840. .md .block.no-hairline-top-md ul:before,
  3841. .ios .block.no-hairline-top-ios:before,
  3842. .ios .block.no-hairline-top-ios ul:before,
  3843. .aurora .block.no-hairline-top-aurora:before,
  3844. .aurora .block.no-hairline-top-aurora ul:before {
  3845. display: none !important;
  3846. }
  3847. .block.no-hairline-bottom:after,
  3848. .block.no-hairline-bottom ul:after,
  3849. .md .block.no-hairline-bottom-md:after,
  3850. .md .block.no-hairline-bottom-md ul:after,
  3851. .ios .block.no-hairline-bottom-ios:after,
  3852. .ios .block.no-hairline-bottom-ios ul:after,
  3853. .aurora .block.no-hairline-bottom-aurora:after,
  3854. .aurora .block.no-hairline-bottom-aurora ul:after {
  3855. display: none !important;
  3856. }
  3857. .block > h1:first-child,
  3858. .block > h2:first-child,
  3859. .block > h3:first-child,
  3860. .block > h4:first-child,
  3861. .block > p:first-child {
  3862. margin-top: 0;
  3863. }
  3864. .block > h1:last-child,
  3865. .block > h2:last-child,
  3866. .block > h3:last-child,
  3867. .block > h4:last-child,
  3868. .block > p:last-child {
  3869. margin-bottom: 0;
  3870. }
  3871. .block-strong {
  3872. color: var(--f7-block-strong-text-color);
  3873. padding-top: var(--f7-block-padding-vertical);
  3874. padding-bottom: var(--f7-block-padding-vertical);
  3875. background-color: var(--f7-block-strong-bg-color);
  3876. }
  3877. .block-strong:before {
  3878. content: '';
  3879. position: absolute;
  3880. background-color: var(--f7-block-strong-border-color);
  3881. display: block;
  3882. z-index: 15;
  3883. top: 0;
  3884. right: auto;
  3885. bottom: auto;
  3886. left: 0;
  3887. height: 1px;
  3888. width: 100%;
  3889. transform-origin: 50% 0%;
  3890. transform: scaleY(calc(1 / var(--f7-device-pixel-ratio)));
  3891. }
  3892. .block-strong:after {
  3893. content: '';
  3894. position: absolute;
  3895. background-color: var(--f7-block-strong-border-color);
  3896. display: block;
  3897. z-index: 15;
  3898. top: auto;
  3899. right: auto;
  3900. bottom: 0;
  3901. left: 0;
  3902. height: 1px;
  3903. width: 100%;
  3904. transform-origin: 50% 100%;
  3905. transform: scaleY(calc(1 / var(--f7-device-pixel-ratio)));
  3906. }
  3907. .block-title {
  3908. position: relative;
  3909. overflow: hidden;
  3910. margin: 0;
  3911. white-space: var(--f7-block-title-white-space);
  3912. text-overflow: ellipsis;
  3913. text-transform: var(--f7-block-title-text-transform);
  3914. color: var(--f7-block-title-text-color);
  3915. font-size: var(--f7-block-title-font-size, inherit);
  3916. font-weight: var(--f7-block-title-font-weight);
  3917. line-height: var(--f7-block-title-line-height);
  3918. margin-top: var(--f7-block-margin-vertical);
  3919. margin-bottom: var(--f7-block-title-margin-bottom);
  3920. margin-left: calc(var(--f7-block-padding-horizontal) + var(--f7-safe-area-left));
  3921. margin-right: calc(var(--f7-block-padding-horizontal) + var(--f7-safe-area-right));
  3922. }
  3923. .block-title + .list,
  3924. .block-title + .block,
  3925. .block-title + .card,
  3926. .block-title + .timeline,
  3927. .block-title + .block-header {
  3928. margin-top: 0px;
  3929. }
  3930. .block-title-medium {
  3931. font-size: var(--f7-block-title-medium-font-size);
  3932. text-transform: var(--f7-block-title-medium-text-transform);
  3933. color: var(--f7-block-title-medium-text-color);
  3934. font-weight: var(--f7-block-title-medium-font-weight);
  3935. line-height: var(--f7-block-title-medium-line-height);
  3936. }
  3937. .block-title-large {
  3938. font-size: var(--f7-block-title-large-font-size);
  3939. text-transform: var(--f7-block-title-large-text-transform);
  3940. color: var(--f7-block-title-large-text-color);
  3941. font-weight: var(--f7-block-title-large-font-weight);
  3942. line-height: var(--f7-block-title-large-line-height);
  3943. }
  3944. .block > .block-title:first-child,
  3945. .list > .block-title:first-child {
  3946. margin-top: 0;
  3947. margin-left: 0;
  3948. margin-right: 0;
  3949. }
  3950. .block-header {
  3951. color: var(--f7-block-header-text-color);
  3952. font-size: var(--f7-block-header-font-size);
  3953. margin-bottom: var(--f7-block-header-margin);
  3954. margin-top: var(--f7-block-margin-vertical);
  3955. }
  3956. .block-header + .list,
  3957. .block-header + .block,
  3958. .block-header + .card,
  3959. .block-header + .timeline {
  3960. margin-top: var(--f7-block-header-margin);
  3961. }
  3962. .block-footer {
  3963. color: var(--f7-block-footer-text-color);
  3964. font-size: var(--f7-block-footer-font-size);
  3965. margin-top: var(--f7-block-footer-margin);
  3966. margin-bottom: var(--f7-block-margin-vertical);
  3967. }
  3968. .block-footer,
  3969. .block-header {
  3970. padding-top: 0;
  3971. padding-bottom: 0;
  3972. padding-left: calc(var(--f7-block-padding-horizontal) + var(--f7-safe-area-left));
  3973. padding-right: calc(var(--f7-block-padding-horizontal) + var(--f7-safe-area-right));
  3974. }
  3975. .block-footer ul:first-child,
  3976. .block-header ul:first-child,
  3977. .block-footer p:first-child,
  3978. .block-header p:first-child,
  3979. .block-footer h1:first-child,
  3980. .block-header h1:first-child,
  3981. .block-footer h2:first-child,
  3982. .block-header h2:first-child,
  3983. .block-footer h3:first-child,
  3984. .block-header h3:first-child,
  3985. .block-footer h4:first-child,
  3986. .block-header h4:first-child {
  3987. margin-top: 0;
  3988. }
  3989. .block-footer ul:last-child,
  3990. .block-header ul:last-child,
  3991. .block-footer p:last-child,
  3992. .block-header p:last-child,
  3993. .block-footer h1:last-child,
  3994. .block-header h1:last-child,
  3995. .block-footer h2:last-child,
  3996. .block-header h2:last-child,
  3997. .block-footer h3:last-child,
  3998. .block-header h3:last-child,
  3999. .block-footer h4:last-child,
  4000. .block-header h4:last-child {
  4001. margin-bottom: 0;
  4002. }
  4003. .block-footer ul:first-child:last-child,
  4004. .block-header ul:first-child:last-child,
  4005. .block-footer p:first-child:last-child,
  4006. .block-header p:first-child:last-child,
  4007. .block-footer h1:first-child:last-child,
  4008. .block-header h1:first-child:last-child,
  4009. .block-footer h2:first-child:last-child,
  4010. .block-header h2:first-child:last-child,
  4011. .block-footer h3:first-child:last-child,
  4012. .block-header h3:first-child:last-child,
  4013. .block-footer h4:first-child:last-child,
  4014. .block-header h4:first-child:last-child {
  4015. margin-top: 0;
  4016. margin-bottom: 0;
  4017. }
  4018. .list .block-header,
  4019. .block .block-header,
  4020. .card .block-header,
  4021. .timeline .block-header {
  4022. margin-top: 0;
  4023. }
  4024. .list .block-footer,
  4025. .block .block-footer,
  4026. .card .block-footer,
  4027. .timeline .block-footer {
  4028. margin-bottom: 0;
  4029. }
  4030. .list + .block-footer,
  4031. .block + .block-footer,
  4032. .card + .block-footer,
  4033. .timeline + .block-footer {
  4034. margin-top: calc(-1 * (var(--f7-block-margin-vertical) - var(--f7-block-footer-margin)));
  4035. }
  4036. .block + .block-footer {
  4037. margin-top: calc(-1 * (var(--f7-block-margin-vertical) - var(--f7-block-footer-margin)));
  4038. margin-bottom: var(--f7-block-margin-vertical);
  4039. }
  4040. .block .block-header,
  4041. .block .block-footer {
  4042. padding: 0;
  4043. }
  4044. .block.inset {
  4045. border-radius: var(--f7-block-inset-border-radius);
  4046. margin-left: calc(var(--f7-block-inset-side-margin) + var(--f7-safe-area-outer-left));
  4047. margin-right: calc(var(--f7-block-inset-side-margin) + var(--f7-safe-area-outer-right));
  4048. --f7-safe-area-left: 0px;
  4049. --f7-safe-area-right: 0px;
  4050. }
  4051. .block-strong.inset:before,
  4052. .block-strong.inset:after {
  4053. display: none !important;
  4054. }
  4055. @media (min-width: 480px) {
  4056. .block.xsmall-inset {
  4057. border-radius: var(--f7-block-inset-border-radius);
  4058. margin-left: calc(var(--f7-block-inset-side-margin) + var(--f7-safe-area-outer-left));
  4059. margin-right: calc(var(--f7-block-inset-side-margin) + var(--f7-safe-area-outer-right));
  4060. --f7-safe-area-left: 0px;
  4061. --f7-safe-area-right: 0px;
  4062. }
  4063. .block-strong.xsmall-inset:before,
  4064. .block-strong.xsmall-inset:after {
  4065. display: none !important;
  4066. }
  4067. }
  4068. @media (min-width: 568px) {
  4069. .block.small-inset {
  4070. border-radius: var(--f7-block-inset-border-radius);
  4071. margin-left: calc(var(--f7-block-inset-side-margin) + var(--f7-safe-area-outer-left));
  4072. margin-right: calc(var(--f7-block-inset-side-margin) + var(--f7-safe-area-outer-right));
  4073. --f7-safe-area-left: 0px;
  4074. --f7-safe-area-right: 0px;
  4075. }
  4076. .block-strong.small-inset:before,
  4077. .block-strong.small-inset:after {
  4078. display: none !important;
  4079. }
  4080. }
  4081. @media (min-width: 768px) {
  4082. .block.medium-inset {
  4083. border-radius: var(--f7-block-inset-border-radius);
  4084. margin-left: calc(var(--f7-block-inset-side-margin) + var(--f7-safe-area-outer-left));
  4085. margin-right: calc(var(--f7-block-inset-side-margin) + var(--f7-safe-area-outer-right));
  4086. --f7-safe-area-left: 0px;
  4087. --f7-safe-area-right: 0px;
  4088. }
  4089. .block-strong.medium-inset:before,
  4090. .block-strong.medium-inset:after {
  4091. display: none !important;
  4092. }
  4093. }
  4094. @media (min-width: 1024px) {
  4095. .block.large-inset {
  4096. border-radius: var(--f7-block-inset-border-radius);
  4097. margin-left: calc(var(--f7-block-inset-side-margin) + var(--f7-safe-area-outer-left));
  4098. margin-right: calc(var(--f7-block-inset-side-margin) + var(--f7-safe-area-outer-right));
  4099. --f7-safe-area-left: 0px;
  4100. --f7-safe-area-right: 0px;
  4101. }
  4102. .block-strong.large-inset:before,
  4103. .block-strong.large-inset:after {
  4104. display: none !important;
  4105. }
  4106. }
  4107. @media (min-width: 1200px) {
  4108. .block.xlarge-inset {
  4109. border-radius: var(--f7-block-inset-border-radius);
  4110. margin-left: calc(var(--f7-block-inset-side-margin) + var(--f7-safe-area-outer-left));
  4111. margin-right: calc(var(--f7-block-inset-side-margin) + var(--f7-safe-area-outer-right));
  4112. --f7-safe-area-left: 0px;
  4113. --f7-safe-area-right: 0px;
  4114. }
  4115. .block-strong.xlarge-inset:before,
  4116. .block-strong.xlarge-inset:after {
  4117. display: none !important;
  4118. }
  4119. }
  4120. /* === List View === */
  4121. :root {
  4122. --f7-list-inset-side-margin: 16px;
  4123. --f7-list-item-cell-margin: 16px;
  4124. --f7-list-item-padding-horizontal: 16px;
  4125. --f7-list-media-item-padding-horizontal: 16px;
  4126. --f7-list-item-text-max-lines: 2;
  4127. --f7-list-chevron-icon-font-size: 20px;
  4128. --f7-list-item-title-font-size: inherit;
  4129. --f7-list-item-title-font-weight: 400;
  4130. --f7-list-item-title-text-color: inherit;
  4131. --f7-list-item-title-line-height: inherit;
  4132. --f7-list-item-title-white-space: nowrap;
  4133. --f7-list-item-subtitle-font-weight: 400;
  4134. --f7-list-item-subtitle-text-color: inherit;
  4135. --f7-list-item-subtitle-line-height: inherit;
  4136. --f7-list-item-text-font-weight: 400;
  4137. --f7-list-item-after-font-weight: 400;
  4138. --f7-list-item-header-text-color: inherit;
  4139. --f7-list-item-header-font-size: 12px;
  4140. --f7-list-item-header-font-weight: 400;
  4141. --f7-list-item-header-line-height: 1.2;
  4142. --f7-list-item-footer-font-size: 12px;
  4143. --f7-list-item-footer-font-weight: 400;
  4144. --f7-list-item-footer-line-height: 1.2;
  4145. --f7-list-button-font-size: inherit;
  4146. --f7-list-button-font-weight: 400;
  4147. --f7-list-item-divider-line-height: inherit;
  4148. --f7-list-group-title-line-height: inherit;
  4149. --f7-list-bg-color: #fff;
  4150. --f7-list-chevron-icon-color: rgba(0, 0, 0, 0.2);
  4151. }
  4152. :root .theme-dark,
  4153. :root.theme-dark {
  4154. --f7-list-button-border-color: rgba(255, 255, 255, 0.15);
  4155. --f7-list-bg-color: #1c1c1d;
  4156. --f7-list-border-color: rgba(255, 255, 255, 0.15);
  4157. --f7-list-item-border-color: rgba(255, 255, 255, 0.15);
  4158. --f7-list-item-divider-border-color: rgba(255, 255, 255, 0.15);
  4159. --f7-list-item-divider-bg-color: #232323;
  4160. --f7-list-group-title-bg-color: #232323;
  4161. --f7-list-chevron-icon-color: rgba(255, 255, 255, 0.3);
  4162. }
  4163. .ios {
  4164. --f7-list-in-list-padding-left: 30px;
  4165. --f7-list-inset-border-radius: 8px;
  4166. --f7-list-margin-vertical: 35px;
  4167. --f7-list-font-size: 17px;
  4168. --f7-list-chevron-icon-area: 20px;
  4169. --f7-list-border-color: rgba(0, 0, 0, 0.22);
  4170. --f7-list-item-border-color: rgba(0, 0, 0, 0.22);
  4171. --f7-list-link-pressed-bg-color: rgba(0, 0, 0, 0.15);
  4172. --f7-list-item-subtitle-font-size: 15px;
  4173. --f7-list-item-text-font-size: 15px;
  4174. --f7-list-item-text-line-height: 21px;
  4175. --f7-list-item-after-font-size: inherit;
  4176. --f7-list-item-after-line-height: inherit;
  4177. --f7-list-item-after-padding: 5px;
  4178. --f7-list-item-min-height: 44px;
  4179. --f7-list-item-media-margin: 16px;
  4180. --f7-list-item-media-icons-margin: 5px;
  4181. --f7-list-item-padding-vertical: 8px;
  4182. --f7-list-media-item-padding-vertical: 10px;
  4183. --f7-list-media-item-title-font-weight: 600;
  4184. /*
  4185. --f7-list-button-text-color: var(--f7-theme-color);
  4186. */
  4187. --f7-list-button-text-align: center;
  4188. --f7-list-button-border-color: rgba(0, 0, 0, 0.22);
  4189. --f7-list-item-divider-height: 31px;
  4190. --f7-list-item-divider-font-size: inherit;
  4191. --f7-list-item-divider-font-weight: 400;
  4192. --f7-list-item-divider-bg-color: rgba(0, 0, 0, 0.03);
  4193. --f7-list-item-divider-border-color: rgba(0, 0, 0, 0.22);
  4194. --f7-list-group-title-height: 31px;
  4195. --f7-list-group-title-font-size: inherit;
  4196. --f7-list-group-title-font-weight: 400;
  4197. --f7-list-group-title-bg-color: #f7f7f7;
  4198. --f7-list-item-after-text-color: rgba(0, 0, 0, 0.45);
  4199. --f7-list-item-footer-text-color: rgba(0, 0, 0, 0.45);
  4200. --f7-list-item-text-text-color: rgba(0, 0, 0, 0.45);
  4201. --f7-list-item-divider-text-color: rgba(0, 0, 0, 0.45);
  4202. --f7-list-group-title-text-color: rgba(0, 0, 0, 0.45);
  4203. --f7-list-button-pressed-bg-color: rgba(0, 0, 0, 0.15);
  4204. }
  4205. .ios .theme-dark,
  4206. .ios.theme-dark {
  4207. --f7-list-item-after-text-color: rgba(255, 255, 255, 0.55);
  4208. --f7-list-item-header-text-color: rgba(255, 255, 255, 0.55);
  4209. --f7-list-item-footer-text-color: rgba(255, 255, 255, 0.55);
  4210. --f7-list-item-text-text-color: rgba(255, 255, 255, 0.55);
  4211. --f7-list-item-divider-text-color: rgba(255, 255, 255, 0.55);
  4212. --f7-list-group-title-text-color: rgba(255, 255, 255, 0.55);
  4213. --f7-list-link-pressed-bg-color: rgba(255, 255, 255, 0.08);
  4214. --f7-list-button-pressed-bg-color: rgba(255, 255, 255, 0.08);
  4215. }
  4216. .md {
  4217. --f7-list-in-list-padding-left: 40px;
  4218. --f7-list-inset-border-radius: 4px;
  4219. --f7-list-margin-vertical: 32px;
  4220. --f7-list-font-size: 16px;
  4221. --f7-list-chevron-icon-area: 26px;
  4222. --f7-list-border-color: rgba(0, 0, 0, 0.12);
  4223. --f7-list-item-border-color: rgba(0, 0, 0, 0.12);
  4224. --f7-list-item-subtitle-font-size: 14px;
  4225. --f7-list-item-text-font-size: 14px;
  4226. --f7-list-item-text-line-height: 20px;
  4227. --f7-list-item-after-font-size: 14px;
  4228. --f7-list-item-after-line-height: inherit;
  4229. --f7-list-item-after-padding: 8px;
  4230. --f7-list-item-min-height: 48px;
  4231. --f7-list-item-media-margin: 16px;
  4232. --f7-list-item-media-icons-margin: 8px;
  4233. --f7-list-item-padding-vertical: 8px;
  4234. --f7-list-media-item-padding-vertical: 14px;
  4235. /*
  4236. --f7-list-media-item-title-font-weight: var(--f7-list-item-title-font-weight);
  4237. */
  4238. --f7-list-button-text-align: left;
  4239. --f7-list-button-border-color: transparent;
  4240. --f7-list-item-divider-height: 48px;
  4241. --f7-list-item-divider-font-size: 14px;
  4242. --f7-list-item-divider-font-weight: 400;
  4243. --f7-list-item-divider-bg-color: #f4f4f4;
  4244. --f7-list-item-divider-border-color: transparent;
  4245. --f7-list-group-title-height: 48px;
  4246. --f7-list-group-title-font-size: 14px;
  4247. --f7-list-group-title-font-weight: 400;
  4248. --f7-list-group-title-bg-color: #f4f4f4;
  4249. --f7-list-link-pressed-bg-color: rgba(0, 0, 0, 0.1);
  4250. --f7-list-item-text-text-color: rgba(0, 0, 0, 0.54);
  4251. --f7-list-item-after-text-color: rgba(0, 0, 0, 0.54);
  4252. --f7-list-item-footer-text-color: rgba(0, 0, 0, 0.5);
  4253. --f7-list-button-text-color: #212121;
  4254. --f7-list-button-pressed-bg-color: rgba(0, 0, 0, 0.1);
  4255. --f7-list-item-divider-text-color: rgba(0, 0, 0, 0.54);
  4256. --f7-list-group-title-text-color: rgba(0, 0, 0, 0.54);
  4257. }
  4258. .md .theme-dark,
  4259. .md.theme-dark {
  4260. --f7-list-button-text-color: #fff;
  4261. --f7-list-item-divider-text-color: #fff;
  4262. --f7-list-group-title-text-color: #fff;
  4263. --f7-list-link-pressed-bg-color: rgba(255, 255, 255, 0.05);
  4264. --f7-list-button-pressed-bg-color: rgba(255, 255, 255, 0.05);
  4265. --f7-list-item-text-text-color: rgba(255, 255, 255, 0.54);
  4266. --f7-list-item-after-text-color: rgba(255, 255, 255, 0.54);
  4267. --f7-list-item-footer-text-color: rgba(255, 255, 255, 0.54);
  4268. }
  4269. .aurora {
  4270. --f7-list-in-list-padding-left: 16px;
  4271. --f7-list-inset-border-radius: 4px;
  4272. --f7-list-margin-vertical: 15px;
  4273. --f7-list-font-size: 14px;
  4274. --f7-list-chevron-icon-area: 15px;
  4275. --f7-list-chevron-icon-font-size: 16px;
  4276. --f7-list-border-color: rgba(0, 0, 0, 0.12);
  4277. --f7-list-item-border-color: rgba(0, 0, 0, 0.12);
  4278. --f7-list-item-title-line-height: 1.3;
  4279. --f7-list-item-subtitle-font-size: 14px;
  4280. --f7-list-item-subtitle-line-height: 1.3;
  4281. --f7-list-item-text-font-size: 12px;
  4282. --f7-list-item-text-line-height: 16px;
  4283. --f7-list-item-after-font-size: 13px;
  4284. --f7-list-item-after-line-height: 1.2;
  4285. --f7-list-item-after-padding: 5px;
  4286. --f7-list-item-min-height: 32px;
  4287. --f7-list-item-media-margin: 10px;
  4288. --f7-list-item-media-icons-margin: 5px;
  4289. --f7-list-item-padding-vertical: 5px;
  4290. --f7-list-media-item-padding-vertical: 5px;
  4291. --f7-list-media-item-title-font-weight: 600;
  4292. /*
  4293. --f7-list-button-text-color: var(--f7-theme-color);
  4294. */
  4295. --f7-list-button-text-align: center;
  4296. --f7-list-button-border-color: rgba(0, 0, 0, 0.12);
  4297. --f7-list-item-divider-height: 19px;
  4298. --f7-list-item-divider-font-size: inherit;
  4299. --f7-list-item-divider-font-weight: 500;
  4300. --f7-list-item-divider-bg-color: rgba(0, 0, 0, 0.03);
  4301. --f7-list-item-divider-border-color: transparent;
  4302. --f7-list-group-title-height: 19px;
  4303. --f7-list-group-title-font-size: inherit;
  4304. --f7-list-group-title-font-weight: 500;
  4305. --f7-list-group-title-bg-color: #f7f7f7;
  4306. --f7-list-link-pressed-bg-color: rgba(0, 0, 0, 0.1);
  4307. --f7-list-link-hover-bg-color: rgba(0, 0, 0, 0.03);
  4308. --f7-list-item-text-text-color: rgba(0, 0, 0, 0.6);
  4309. --f7-list-item-after-text-color: rgba(0, 0, 0, 0.5);
  4310. --f7-list-item-footer-text-color: rgba(0, 0, 0, 0.6);
  4311. --f7-list-button-pressed-bg-color: rgba(0, 0, 0, 0.1);
  4312. --f7-list-button-hover-bg-color: rgba(0, 0, 0, 0.03);
  4313. --f7-list-item-divider-text-color: rgba(0, 0, 0, 0.6);
  4314. --f7-list-group-title-text-color: rgba(0, 0, 0, 0.6);
  4315. }
  4316. .aurora .theme-dark,
  4317. .aurora.theme-dark {
  4318. --f7-list-item-text-text-color: rgba(255, 255, 255, 0.54);
  4319. --f7-list-item-after-text-color: rgba(255, 255, 255, 0.54);
  4320. --f7-list-item-footer-text-color: rgba(255, 255, 255, 0.54);
  4321. --f7-list-item-divider-text-color: rgba(255, 255, 255, 0.6);
  4322. --f7-list-group-title-text-color: rgba(255, 255, 255, 0.6);
  4323. --f7-list-link-pressed-bg-color: rgba(255, 255, 255, 0.05);
  4324. --f7-list-link-hover-bg-color: rgba(255, 255, 255, 0.03);
  4325. --f7-list-button-pressed-bg-color: rgba(255, 255, 255, 0.05);
  4326. --f7-list-button-hover-bg-color: rgba(255, 255, 255, 0.03);
  4327. }
  4328. :root {
  4329. --f7-list-chevron-icon-left: 'chevron_left';
  4330. --f7-list-chevron-icon-right: 'chevron_right';
  4331. }
  4332. .aurora {
  4333. --f7-list-chevron-icon-left: 'chevron_left_aurora';
  4334. --f7-list-chevron-icon-right: 'chevron_right_aurora';
  4335. }
  4336. .list {
  4337. position: relative;
  4338. z-index: 1;
  4339. font-size: var(--f7-list-font-size);
  4340. margin: var(--f7-list-margin-vertical) 0;
  4341. }
  4342. .list ul {
  4343. list-style: none;
  4344. margin: 0;
  4345. padding: 0;
  4346. position: relative;
  4347. background: var(--f7-list-bg-color);
  4348. }
  4349. .list ul:before {
  4350. content: '';
  4351. position: absolute;
  4352. background-color: var(--f7-list-border-color);
  4353. display: block;
  4354. z-index: 15;
  4355. top: 0;
  4356. right: auto;
  4357. bottom: auto;
  4358. left: 0;
  4359. height: 1px;
  4360. width: 100%;
  4361. transform-origin: 50% 0%;
  4362. transform: scaleY(calc(1 / var(--f7-device-pixel-ratio)));
  4363. }
  4364. .list ul:after {
  4365. content: '';
  4366. position: absolute;
  4367. background-color: var(--f7-list-border-color);
  4368. display: block;
  4369. z-index: 15;
  4370. top: auto;
  4371. right: auto;
  4372. bottom: 0;
  4373. left: 0;
  4374. height: 1px;
  4375. width: 100%;
  4376. transform-origin: 50% 100%;
  4377. transform: scaleY(calc(1 / var(--f7-device-pixel-ratio)));
  4378. }
  4379. .list ul ul {
  4380. padding-right: calc(var(--f7-list-item-padding-horizontal) + var(--f7-list-in-list-padding-left));
  4381. }
  4382. .list ul ul:before,
  4383. .list ul ul:after {
  4384. display: none !important;
  4385. }
  4386. .list li {
  4387. position: relative;
  4388. box-sizing: border-box;
  4389. }
  4390. .list .item-media {
  4391. display: flex;
  4392. flex-shrink: 0;
  4393. flex-wrap: nowrap;
  4394. align-items: center;
  4395. box-sizing: border-box;
  4396. padding-bottom: var(--f7-list-item-padding-vertical);
  4397. padding-top: var(--f7-list-item-padding-vertical);
  4398. }
  4399. .list .item-media + .item-inner {
  4400. margin-right: var(--f7-list-item-media-margin);
  4401. }
  4402. .list .item-media i + i,
  4403. .list .item-media i + img {
  4404. margin-right: var(--f7-list-item-media-icons-margin);
  4405. }
  4406. .list .item-after {
  4407. padding-right: var(--f7-list-item-after-padding);
  4408. }
  4409. .list .item-inner {
  4410. position: relative;
  4411. width: 100%;
  4412. min-width: 0;
  4413. display: flex;
  4414. justify-content: space-between;
  4415. box-sizing: border-box;
  4416. align-items: center;
  4417. align-self: stretch;
  4418. padding-top: var(--f7-list-item-padding-vertical);
  4419. padding-bottom: var(--f7-list-item-padding-vertical);
  4420. min-height: var(--f7-list-item-min-height);
  4421. padding-left: calc(var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-left));
  4422. }
  4423. .list .item-title {
  4424. min-width: 0;
  4425. flex-shrink: 1;
  4426. white-space: var(--f7-list-item-title-white-space);
  4427. position: relative;
  4428. overflow: hidden;
  4429. text-overflow: ellipsis;
  4430. max-width: 100%;
  4431. font-size: var(--f7-list-item-title-font-size);
  4432. font-weight: var(--f7-list-item-title-font-weight);
  4433. color: var(--f7-list-item-title-text-color);
  4434. line-height: var(--f7-list-item-title-line-height);
  4435. }
  4436. .list .item-after {
  4437. white-space: nowrap;
  4438. flex-shrink: 0;
  4439. display: flex;
  4440. font-size: var(--f7-list-item-after-font-size);
  4441. font-weight: var(--f7-list-item-after-font-weight);
  4442. color: var(--f7-list-item-after-text-color);
  4443. line-height: var(--f7-list-item-after-line-height);
  4444. margin-right: auto;
  4445. }
  4446. .list .item-header,
  4447. .list .item-footer {
  4448. white-space: normal;
  4449. }
  4450. .list .item-header {
  4451. color: var(--f7-list-item-header-text-color);
  4452. font-size: var(--f7-list-item-header-font-size);
  4453. font-weight: var(--f7-list-item-header-font-weight);
  4454. line-height: var(--f7-list-item-header-line-height);
  4455. }
  4456. .list .item-footer {
  4457. color: var(--f7-list-item-footer-text-color);
  4458. font-size: var(--f7-list-item-footer-font-size);
  4459. font-weight: var(--f7-list-item-footer-font-weight);
  4460. line-height: var(--f7-list-item-footer-line-height);
  4461. }
  4462. .list .item-link,
  4463. .list .list-button {
  4464. transition-duration: 300ms;
  4465. transition-property: background-color;
  4466. display: block;
  4467. position: relative;
  4468. overflow: hidden;
  4469. z-index: 0;
  4470. }
  4471. .list .item-link {
  4472. color: inherit;
  4473. }
  4474. .list .item-link.active-state {
  4475. background-color: var(--f7-list-link-pressed-bg-color);
  4476. }
  4477. .list .item-link .item-inner {
  4478. padding-left: calc(var(--f7-list-chevron-icon-area) + var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-left));
  4479. }
  4480. .list .item-content {
  4481. display: flex;
  4482. justify-content: space-between;
  4483. box-sizing: border-box;
  4484. align-items: center;
  4485. min-height: var(--f7-list-item-min-height);
  4486. padding-right: calc(var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-right));
  4487. }
  4488. .list .item-subtitle {
  4489. position: relative;
  4490. overflow: hidden;
  4491. white-space: nowrap;
  4492. max-width: 100%;
  4493. text-overflow: ellipsis;
  4494. font-size: var(--f7-list-item-subtitle-font-size);
  4495. font-weight: var(--f7-list-item-subtitle-font-weight);
  4496. color: var(--f7-list-item-subtitle-text-color);
  4497. line-height: var(--f7-list-item-subtitle-line-height);
  4498. }
  4499. .list .item-text {
  4500. position: relative;
  4501. overflow: hidden;
  4502. text-overflow: ellipsis;
  4503. /* autoprefixer: ignore next */
  4504. -webkit-line-clamp: var(--f7-list-item-text-max-lines);
  4505. /* autoprefixer: ignore next */
  4506. -webkit-box-orient: vertical;
  4507. display: -webkit-box;
  4508. font-size: var(--f7-list-item-text-font-size);
  4509. font-weight: var(--f7-list-item-text-font-weight);
  4510. color: var(--f7-list-item-text-text-color);
  4511. line-height: var(--f7-list-item-text-line-height);
  4512. max-height: calc(var(--f7-list-item-text-line-height) * var(--f7-list-item-text-max-lines));
  4513. }
  4514. .list .item-title-row {
  4515. position: relative;
  4516. display: flex;
  4517. justify-content: space-between;
  4518. box-sizing: border-box;
  4519. }
  4520. .list .item-title-row .item-after {
  4521. align-self: center;
  4522. }
  4523. .list .item-row {
  4524. display: flex;
  4525. justify-content: space-between;
  4526. box-sizing: border-box;
  4527. }
  4528. .list .item-cell {
  4529. display: block;
  4530. align-self: center;
  4531. box-sizing: border-box;
  4532. width: 100%;
  4533. min-width: 0;
  4534. margin-right: var(--f7-list-item-cell-margin);
  4535. flex-shrink: 1;
  4536. }
  4537. .list .item-cell:first-child {
  4538. margin-right: 0;
  4539. }
  4540. .list li:last-child .list-button:after {
  4541. display: none !important;
  4542. }
  4543. .list li:last-child > .item-inner:after,
  4544. .list li:last-child li:last-child > .item-inner:after,
  4545. .list li:last-child > .item-content > .item-inner:after,
  4546. .list li:last-child li:last-child > .item-content > .item-inner:after,
  4547. .list li:last-child > .swipeout-content > .item-content > .item-inner:after,
  4548. .list li:last-child li:last-child > .swipeout-content > .item-content > .item-inner:after,
  4549. .list li:last-child > .item-link > .item-content > .item-inner:after,
  4550. .list li:last-child li:last-child > .item-link > .item-content > .item-inner:after {
  4551. display: none !important;
  4552. }
  4553. .list li li:last-child .item-inner:after,
  4554. .list li:last-child li .item-inner:after {
  4555. content: '';
  4556. position: absolute;
  4557. background-color: var(--f7-list-item-border-color);
  4558. display: block;
  4559. z-index: 15;
  4560. top: auto;
  4561. right: auto;
  4562. bottom: 0;
  4563. left: 0;
  4564. height: 1px;
  4565. width: 100%;
  4566. transform-origin: 50% 100%;
  4567. transform: scaleY(calc(1 / var(--f7-device-pixel-ratio)));
  4568. }
  4569. .list.no-hairlines:before,
  4570. .list.no-hairlines ul:before,
  4571. .md .list.no-hairlines-md:before,
  4572. .md .list.no-hairlines-md ul:before,
  4573. .ios .list.no-hairlines-ios:before,
  4574. .ios .list.no-hairlines-ios ul:before,
  4575. .aurora .list.no-hairlines-aurora:before,
  4576. .aurora .list.no-hairlines-aurora ul:before,
  4577. .list.no-hairlines:after,
  4578. .list.no-hairlines ul:after,
  4579. .md .list.no-hairlines-md:after,
  4580. .md .list.no-hairlines-md ul:after,
  4581. .ios .list.no-hairlines-ios:after,
  4582. .ios .list.no-hairlines-ios ul:after,
  4583. .aurora .list.no-hairlines-aurora:after,
  4584. .aurora .list.no-hairlines-aurora ul:after {
  4585. display: none !important;
  4586. }
  4587. .list.no-hairline-top:before,
  4588. .list.no-hairline-top ul:before,
  4589. .md .list.no-hairline-top-md:before,
  4590. .md .list.no-hairline-top-md ul:before,
  4591. .ios .list.no-hairline-top-ios:before,
  4592. .ios .list.no-hairline-top-ios ul:before,
  4593. .aurora .list.no-hairline-top-aurora:before,
  4594. .aurora .list.no-hairline-top-aurora ul:before {
  4595. display: none !important;
  4596. }
  4597. .list.no-hairline-bottom:after,
  4598. .list.no-hairline-bottom ul:after,
  4599. .md .list.no-hairline-bottom-md:after,
  4600. .md .list.no-hairline-bottom-md ul:after,
  4601. .ios .list.no-hairline-bottom-ios:after,
  4602. .ios .list.no-hairline-bottom-ios ul:after,
  4603. .aurora .list.no-hairline-bottom-aurora:after,
  4604. .aurora .list.no-hairline-bottom-aurora ul:after {
  4605. display: none !important;
  4606. }
  4607. .list.no-hairlines-between .item-inner:after,
  4608. .md .list.no-hairlines-between-md .item-inner:after,
  4609. .ios .list.no-hairlines-between-ios .item-inner:after,
  4610. .aurora .list.no-hairlines-between-aurora .item-inner:after,
  4611. .list.no-hairlines-between .list-button:after,
  4612. .md .list.no-hairlines-between-md .list-button:after,
  4613. .ios .list.no-hairlines-between-ios .list-button:after,
  4614. .aurora .list.no-hairlines-between-aurora .list-button:after,
  4615. .list.no-hairlines-between .item-divider:after,
  4616. .md .list.no-hairlines-between-md .item-divider:after,
  4617. .ios .list.no-hairlines-between-ios .item-divider:after,
  4618. .aurora .list.no-hairlines-between-aurora .item-divider:after,
  4619. .list.no-hairlines-between .list-group-title:after,
  4620. .md .list.no-hairlines-between-md .list-group-title:after,
  4621. .ios .list.no-hairlines-between-ios .list-group-title:after,
  4622. .aurora .list.no-hairlines-between-aurora .list-group-title:after,
  4623. .list.no-hairlines-between .list-group-title:after,
  4624. .md .list.no-hairlines-between-md .list-group-title:after,
  4625. .ios .list.no-hairlines-between-ios .list-group-title:after,
  4626. .aurora .list.no-hairlines-between-aurora .list-group-title:after {
  4627. display: none !important;
  4628. }
  4629. .list.no-hairlines-between.simple-list li:after,
  4630. .md .list.no-hairlines-between-md.simple-list li:after,
  4631. .ios .list.no-hairlines-between-ios.simple-list li:after,
  4632. .aurora .list.no-hairlines-between-aurora.simple-list li:after {
  4633. display: none !important;
  4634. }
  4635. .list.no-hairlines-between.links-list a:after,
  4636. .md .list.no-hairlines-between-md.links-list a:after,
  4637. .ios .list.no-hairlines-between-ios.links-list a:after,
  4638. .aurora .list.no-hairlines-between-aurora.links-list a:after {
  4639. display: none !important;
  4640. }
  4641. .list-button {
  4642. padding: 0 var(--f7-list-item-padding-horizontal);
  4643. line-height: var(--f7-list-item-min-height);
  4644. color: var(--f7-list-button-text-color, var(--f7-theme-color));
  4645. font-size: var(--f7-list-button-font-size);
  4646. font-weight: var(--f7-list-button-font-weight);
  4647. text-align: var(--f7-list-button-text-align);
  4648. }
  4649. .list-button:after {
  4650. content: '';
  4651. position: absolute;
  4652. background-color: var(--f7-list-button-border-color);
  4653. display: block;
  4654. z-index: 15;
  4655. top: auto;
  4656. right: auto;
  4657. bottom: 0;
  4658. left: 0;
  4659. height: 1px;
  4660. width: 100%;
  4661. transform-origin: 50% 100%;
  4662. transform: scaleY(calc(1 / var(--f7-device-pixel-ratio)));
  4663. }
  4664. .list-button.active-state {
  4665. background-color: var(--f7-list-button-pressed-bg-color);
  4666. }
  4667. .list-button[class*="color-"] {
  4668. --f7-list-button-text-color: var(--f7-theme-color);
  4669. }
  4670. .simple-list li {
  4671. position: relative;
  4672. white-space: nowrap;
  4673. text-overflow: ellipsis;
  4674. max-width: 100%;
  4675. box-sizing: border-box;
  4676. display: flex;
  4677. justify-content: space-between;
  4678. align-items: center;
  4679. align-content: center;
  4680. line-height: var(--f7-list-item-min-height);
  4681. height: var(--f7-list-item-min-height);
  4682. padding-left: calc(var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-left));
  4683. padding-right: calc(var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-right));
  4684. }
  4685. .simple-list li:after {
  4686. left: var(--f7-list-item-padding-horizontal);
  4687. right: 0;
  4688. width: auto;
  4689. right: calc(var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-right));
  4690. left: 0;
  4691. }
  4692. .simple-list li:last-child:after {
  4693. display: none !important;
  4694. }
  4695. .links-list li {
  4696. z-index: 1;
  4697. }
  4698. .links-list a {
  4699. transition-duration: 300ms;
  4700. transition-property: background-color;
  4701. display: block;
  4702. position: relative;
  4703. overflow: hidden;
  4704. display: flex;
  4705. align-items: center;
  4706. align-content: center;
  4707. justify-content: space-between;
  4708. box-sizing: border-box;
  4709. white-space: nowrap;
  4710. text-overflow: ellipsis;
  4711. max-width: 100%;
  4712. height: var(--f7-list-item-min-height);
  4713. color: inherit;
  4714. }
  4715. .links-list a .ripple-wave {
  4716. z-index: 0;
  4717. }
  4718. .links-list a:after {
  4719. width: auto;
  4720. }
  4721. .links-list a.active-state {
  4722. background-color: var(--f7-list-link-pressed-bg-color);
  4723. }
  4724. .links-list a {
  4725. padding-right: calc(var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-right));
  4726. padding-left: calc(var(--f7-list-chevron-icon-area) + var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-left));
  4727. }
  4728. .links-list a:after {
  4729. right: calc(var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-right));
  4730. left: 0;
  4731. }
  4732. .links-list li:last-child a:after {
  4733. display: none !important;
  4734. }
  4735. .simple-list li:after,
  4736. .links-list a:after,
  4737. .list .item-inner:after {
  4738. content: '';
  4739. position: absolute;
  4740. background-color: var(--f7-list-item-border-color);
  4741. display: block;
  4742. z-index: 15;
  4743. top: auto;
  4744. right: auto;
  4745. bottom: 0;
  4746. left: 0;
  4747. height: 1px;
  4748. width: 100%;
  4749. transform-origin: 50% 100%;
  4750. transform: scaleY(calc(1 / var(--f7-device-pixel-ratio)));
  4751. }
  4752. .media-list,
  4753. li.media-item {
  4754. --f7-list-item-padding-vertical: var(--f7-list-media-item-padding-vertical);
  4755. --f7-list-item-padding-horizontal: var(--f7-list-media-item-padding-horizontal);
  4756. }
  4757. .media-list .item-title,
  4758. li.media-item .item-title {
  4759. font-weight: var(--f7-list-media-item-title-font-weight, var(--f7-list-item-title-font-weight, inherit));
  4760. }
  4761. .media-list .item-inner,
  4762. li.media-item .item-inner {
  4763. display: block;
  4764. align-self: stretch;
  4765. }
  4766. .media-list .item-media,
  4767. li.media-item .item-media {
  4768. align-self: flex-start;
  4769. }
  4770. .media-list .item-media img,
  4771. li.media-item .item-media img {
  4772. display: block;
  4773. }
  4774. .media-list .item-link .item-inner,
  4775. li.media-item .item-link .item-inner {
  4776. padding-left: calc(var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-left));
  4777. }
  4778. .media-list .item-link .item-title-row,
  4779. li.media-item .item-link .item-title-row {
  4780. padding-left: calc(var(--f7-list-chevron-icon-area));
  4781. }
  4782. .media-list.chevron-center .item-link .item-inner,
  4783. .media-list .chevron-center .item-link .item-inner,
  4784. .media-list .item-link.chevron-center .item-inner,
  4785. li.media-item.chevron-center .item-link .item-inner,
  4786. li.media-item .item-link.chevron-center .item-inner,
  4787. li.media-item .chevron-center .item-link .item-inner {
  4788. padding-left: calc(var(--f7-list-chevron-icon-area) + var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-left));
  4789. }
  4790. .media-list.chevron-center .item-title-row,
  4791. .media-list .chevron-center .item-title-row,
  4792. li.media-item.chevron-center .item-title-row,
  4793. li.media-item .chevron-center .item-title-row {
  4794. padding-left: 0;
  4795. }
  4796. .list .item-link .item-inner:before,
  4797. .links-list a:before,
  4798. .media-list .item-link .item-title-row:before,
  4799. li.media-item .item-link .item-title-row:before,
  4800. .media-list.chevron-center .item-link .item-inner:before,
  4801. .media-list .chevron-center .item-link .item-inner:before,
  4802. .media-list .item-link.chevron-center .item-inner:before,
  4803. li.media-item.chevron-center .item-link .item-inner:before,
  4804. li.media-item .chevron-center .item-link .item-inner:before,
  4805. li.media-item .item-link.chevron-center .item-inner:before {
  4806. font-family: 'framework7-core-icons';
  4807. font-weight: normal;
  4808. font-style: normal;
  4809. line-height: 1;
  4810. letter-spacing: normal;
  4811. text-transform: none;
  4812. white-space: nowrap;
  4813. word-wrap: normal;
  4814. direction: ltr;
  4815. -webkit-font-smoothing: antialiased;
  4816. text-rendering: optimizeLegibility;
  4817. -moz-osx-font-smoothing: grayscale;
  4818. font-feature-settings: "liga";
  4819. text-align: center;
  4820. display: block;
  4821. width: 100%;
  4822. height: 100%;
  4823. font-size: 20px;
  4824. position: absolute;
  4825. top: 50%;
  4826. width: 8px;
  4827. height: 14px;
  4828. margin-top: -7px;
  4829. font-size: var(--f7-list-chevron-icon-font-size);
  4830. line-height: 14px;
  4831. color: var(--f7-list-chevron-icon-color);
  4832. pointer-events: none;
  4833. left: calc(var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-left));
  4834. content: var(--f7-list-chevron-icon-left);
  4835. }
  4836. .media-list.chevron-center .item-title-row:before,
  4837. .media-list .chevron-center .item-title-row:before,
  4838. li.media-item.chevron-center .item-title-row:before,
  4839. li.media-item .chevron-center .item-title-row:before {
  4840. display: none;
  4841. }
  4842. .media-list .item-link .item-inner:before,
  4843. li.media-item .item-link .item-inner:before {
  4844. display: none;
  4845. }
  4846. .media-list .item-link .item-title-row:before,
  4847. li.media-item .item-link .item-title-row:before {
  4848. left: 0;
  4849. }
  4850. .list-group ul:after,
  4851. .list-group ul:before {
  4852. z-index: 25 !important;
  4853. }
  4854. .list-group + .list-group ul:before {
  4855. display: none !important;
  4856. }
  4857. li.item-divider,
  4858. .item-divider,
  4859. li.list-group-title {
  4860. white-space: nowrap;
  4861. position: relative;
  4862. max-width: 100%;
  4863. text-overflow: ellipsis;
  4864. overflow: hidden;
  4865. z-index: 15;
  4866. padding-top: 0;
  4867. padding-bottom: 0;
  4868. padding-left: calc(var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-left));
  4869. padding-right: calc(var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-right));
  4870. box-sizing: border-box;
  4871. display: flex;
  4872. align-items: center;
  4873. align-content: center;
  4874. }
  4875. li.item-divider:after,
  4876. .item-divider:after,
  4877. li.list-group-title:after {
  4878. display: none !important;
  4879. }
  4880. li.item-divider,
  4881. .item-divider {
  4882. margin-top: -1px;
  4883. height: var(--f7-list-item-divider-height);
  4884. color: var(--f7-list-item-divider-text-color);
  4885. font-size: var(--f7-list-item-divider-font-size);
  4886. font-weight: var(--f7-list-item-divider-font-weight);
  4887. background-color: var(--f7-list-item-divider-bg-color);
  4888. line-height: var(--f7-list-item-divider-line-height);
  4889. }
  4890. li.item-divider:before,
  4891. .item-divider:before {
  4892. content: '';
  4893. position: absolute;
  4894. background-color: var(--f7-list-item-divider-border-color);
  4895. display: block;
  4896. z-index: 15;
  4897. top: 0;
  4898. right: auto;
  4899. bottom: auto;
  4900. left: 0;
  4901. height: 1px;
  4902. width: 100%;
  4903. transform-origin: 50% 0%;
  4904. transform: scaleY(calc(1 / var(--f7-device-pixel-ratio)));
  4905. }
  4906. li.list-group-title,
  4907. .list li.list-group-title {
  4908. position: relative;
  4909. position: -webkit-sticky;
  4910. position: sticky;
  4911. top: 0;
  4912. margin-top: 0;
  4913. z-index: 20;
  4914. height: var(--f7-list-group-title-height);
  4915. color: var(--f7-list-group-title-text-color);
  4916. font-size: var(--f7-list-group-title-font-size);
  4917. font-weight: var(--f7-list-group-title-font-weight);
  4918. background-color: var(--f7-list-group-title-bg-color);
  4919. line-height: var(--f7-list-group-title-line-height);
  4920. }
  4921. .page-with-navbar-large li.list-group-title,
  4922. .page-with-navbar-large .list li.list-group-title {
  4923. top: calc(-1 * var(--f7-navbar-large-title-height));
  4924. }
  4925. .list.inset {
  4926. margin-left: calc(var(--f7-list-inset-side-margin) + var(--f7-safe-area-outer-left));
  4927. margin-right: calc(var(--f7-list-inset-side-margin) + var(--f7-safe-area-outer-right));
  4928. border-radius: var(--f7-list-inset-border-radius);
  4929. --f7-safe-area-left: 0px;
  4930. --f7-safe-area-right: 0px;
  4931. }
  4932. .list.inset .block-title {
  4933. margin-left: 0;
  4934. margin-right: 0;
  4935. }
  4936. .list.inset ul {
  4937. border-radius: var(--f7-list-inset-border-radius);
  4938. }
  4939. .list.inset ul:before,
  4940. .list.inset ul:after {
  4941. display: none !important;
  4942. }
  4943. .list.inset li.swipeout:first-child,
  4944. .list.inset li:first-child > a {
  4945. border-radius: var(--f7-list-inset-border-radius) var(--f7-list-inset-border-radius) 0 0;
  4946. }
  4947. .list.inset li.swipeout:last-child,
  4948. .list.inset li:last-child > a {
  4949. border-radius: 0 0 var(--f7-list-inset-border-radius) var(--f7-list-inset-border-radius);
  4950. }
  4951. .list.inset li.swipeout:first-child:last-child,
  4952. .list.inset li:first-child:last-child > a {
  4953. border-radius: var(--f7-list-inset-border-radius);
  4954. }
  4955. @media (min-width: 480px) {
  4956. .list.xsmall-inset {
  4957. margin-left: calc(var(--f7-list-inset-side-margin) + var(--f7-safe-area-outer-left));
  4958. margin-right: calc(var(--f7-list-inset-side-margin) + var(--f7-safe-area-outer-right));
  4959. border-radius: var(--f7-list-inset-border-radius);
  4960. --f7-safe-area-left: 0px;
  4961. --f7-safe-area-right: 0px;
  4962. }
  4963. .list.xsmall-inset .block-title {
  4964. margin-left: 0;
  4965. margin-right: 0;
  4966. }
  4967. .list.xsmall-inset ul {
  4968. border-radius: var(--f7-list-inset-border-radius);
  4969. }
  4970. .list.xsmall-inset ul:before,
  4971. .list.xsmall-inset ul:after {
  4972. display: none !important;
  4973. }
  4974. .list.xsmall-inset li:first-child > a {
  4975. border-radius: var(--f7-list-inset-border-radius) var(--f7-list-inset-border-radius) 0 0;
  4976. }
  4977. .list.xsmall-inset li:last-child > a {
  4978. border-radius: 0 0 var(--f7-list-inset-border-radius) var(--f7-list-inset-border-radius);
  4979. }
  4980. .list.xsmall-inset li:first-child:last-child > a {
  4981. border-radius: var(--f7-list-inset-border-radius);
  4982. }
  4983. }
  4984. @media (min-width: 568px) {
  4985. .list.small-inset {
  4986. margin-left: calc(var(--f7-list-inset-side-margin) + var(--f7-safe-area-outer-left));
  4987. margin-right: calc(var(--f7-list-inset-side-margin) + var(--f7-safe-area-outer-right));
  4988. border-radius: var(--f7-list-inset-border-radius);
  4989. --f7-safe-area-left: 0px;
  4990. --f7-safe-area-right: 0px;
  4991. }
  4992. .list.small-inset .block-title {
  4993. margin-left: 0;
  4994. margin-right: 0;
  4995. }
  4996. .list.small-inset ul {
  4997. border-radius: var(--f7-list-inset-border-radius);
  4998. }
  4999. .list.small-inset ul:before,
  5000. .list.small-inset ul:after {
  5001. display: none !important;
  5002. }
  5003. .list.small-inset li:first-child > a {
  5004. border-radius: var(--f7-list-inset-border-radius) var(--f7-list-inset-border-radius) 0 0;
  5005. }
  5006. .list.small-inset li:last-child > a {
  5007. border-radius: 0 0 var(--f7-list-inset-border-radius) var(--f7-list-inset-border-radius);
  5008. }
  5009. .list.small-inset li:first-child:last-child > a {
  5010. border-radius: var(--f7-list-inset-border-radius);
  5011. }
  5012. }
  5013. @media (min-width: 768px) {
  5014. .list.medium-inset {
  5015. margin-left: calc(var(--f7-list-inset-side-margin) + var(--f7-safe-area-outer-left));
  5016. margin-right: calc(var(--f7-list-inset-side-margin) + var(--f7-safe-area-outer-right));
  5017. border-radius: var(--f7-list-inset-border-radius);
  5018. --f7-safe-area-left: 0px;
  5019. --f7-safe-area-right: 0px;
  5020. }
  5021. .list.medium-inset .block-title {
  5022. margin-left: 0;
  5023. margin-right: 0;
  5024. }
  5025. .list.medium-inset ul {
  5026. border-radius: var(--f7-list-inset-border-radius);
  5027. }
  5028. .list.medium-inset ul:before,
  5029. .list.medium-inset ul:after {
  5030. display: none !important;
  5031. }
  5032. .list.medium-inset li:first-child > a {
  5033. border-radius: var(--f7-list-inset-border-radius) var(--f7-list-inset-border-radius) 0 0;
  5034. }
  5035. .list.medium-inset li:last-child > a {
  5036. border-radius: 0 0 var(--f7-list-inset-border-radius) var(--f7-list-inset-border-radius);
  5037. }
  5038. .list.medium-inset li:first-child:last-child > a {
  5039. border-radius: var(--f7-list-inset-border-radius);
  5040. }
  5041. }
  5042. @media (min-width: 1024px) {
  5043. .list.large-inset {
  5044. margin-left: calc(var(--f7-list-inset-side-margin) + var(--f7-safe-area-outer-left));
  5045. margin-right: calc(var(--f7-list-inset-side-margin) + var(--f7-safe-area-outer-right));
  5046. border-radius: var(--f7-list-inset-border-radius);
  5047. --f7-safe-area-left: 0px;
  5048. --f7-safe-area-right: 0px;
  5049. }
  5050. .list.large-inset .block-title {
  5051. margin-left: 0;
  5052. margin-right: 0;
  5053. }
  5054. .list.large-inset ul {
  5055. border-radius: var(--f7-list-inset-border-radius);
  5056. }
  5057. .list.large-inset ul:before,
  5058. .list.large-inset ul:after {
  5059. display: none !important;
  5060. }
  5061. .list.large-inset li:first-child > a {
  5062. border-radius: var(--f7-list-inset-border-radius) var(--f7-list-inset-border-radius) 0 0;
  5063. }
  5064. .list.large-inset li:last-child > a {
  5065. border-radius: 0 0 var(--f7-list-inset-border-radius) var(--f7-list-inset-border-radius);
  5066. }
  5067. .list.large-inset li:first-child:last-child > a {
  5068. border-radius: var(--f7-list-inset-border-radius);
  5069. }
  5070. }
  5071. @media (min-width: 1200px) {
  5072. .list.xlarge-inset {
  5073. margin-left: calc(var(--f7-list-inset-side-margin) + var(--f7-safe-area-outer-left));
  5074. margin-right: calc(var(--f7-list-inset-side-margin) + var(--f7-safe-area-outer-right));
  5075. border-radius: var(--f7-list-inset-border-radius);
  5076. --f7-safe-area-left: 0px;
  5077. --f7-safe-area-right: 0px;
  5078. }
  5079. .list.xlarge-inset .block-title {
  5080. margin-left: 0;
  5081. margin-right: 0;
  5082. }
  5083. .list.xlarge-inset ul {
  5084. border-radius: var(--f7-list-inset-border-radius);
  5085. }
  5086. .list.xlarge-inset ul:before,
  5087. .list.xlarge-inset ul:after {
  5088. display: none !important;
  5089. }
  5090. .list.xlarge-inset li:first-child > a {
  5091. border-radius: var(--f7-list-inset-border-radius) var(--f7-list-inset-border-radius) 0 0;
  5092. }
  5093. .list.xlarge-inset li:last-child > a {
  5094. border-radius: 0 0 var(--f7-list-inset-border-radius) var(--f7-list-inset-border-radius);
  5095. }
  5096. .list.xlarge-inset li:first-child:last-child > a {
  5097. border-radius: var(--f7-list-inset-border-radius);
  5098. }
  5099. }
  5100. .list.no-chevron,
  5101. .list .no-chevron {
  5102. --f7-list-chevron-icon-color: transparent;
  5103. --f7-list-chevron-icon-area: 0px;
  5104. }
  5105. .ios .item-link.active-state .item-inner:after,
  5106. .ios .list-button.active-state:after,
  5107. .ios .links-list a.active-state:after {
  5108. background-color: transparent;
  5109. }
  5110. .ios .links-list a.active-state,
  5111. .ios .list .item-link.active-state,
  5112. .ios .list .list-button.active-state {
  5113. transition-duration: 0ms;
  5114. }
  5115. .md .list .item-media {
  5116. min-width: 40px;
  5117. }
  5118. .aurora .list .item-media {
  5119. min-width: 18px;
  5120. }
  5121. .aurora .links-list a,
  5122. .aurora .list .item-link,
  5123. .aurora .list .list-button {
  5124. transition-duration: 0ms;
  5125. }
  5126. .aurora.device-desktop .links-list a:hover:not(.active-state):not(.no-hover),
  5127. .aurora.device-desktop .list .item-link:hover:not(.active-state):not(.no-hover) {
  5128. background: var(--f7-list-link-hover-bg-color);
  5129. }
  5130. .aurora.device-desktop .list .list-button:hover:not(.active-state):not(.no-hover) {
  5131. background: var(--f7-list-button-hover-bg-color);
  5132. }
  5133. /* === Badge === */
  5134. :root {
  5135. --f7-badge-text-color: #fff;
  5136. --f7-badge-bg-color: #8e8e93;
  5137. --f7-badge-padding: 0 4px;
  5138. --f7-badge-in-icon-size: 16px;
  5139. --f7-badge-in-icon-font-size: 10px;
  5140. --f7-badge-font-weight: normal;
  5141. --f7-badge-font-size: 12px;
  5142. }
  5143. .ios {
  5144. --f7-badge-size: 20px;
  5145. }
  5146. .md {
  5147. --f7-badge-size: 18px;
  5148. }
  5149. .aurora {
  5150. --f7-badge-size: 18px;
  5151. --f7-badge-font-weight: 600;
  5152. --f7-badge-in-icon-size: 15px;
  5153. }
  5154. .badge {
  5155. display: inline-flex;
  5156. align-items: center;
  5157. align-content: center;
  5158. justify-content: center;
  5159. color: var(--f7-badge-text-color);
  5160. background: var(--f7-badge-bg-color);
  5161. position: relative;
  5162. box-sizing: border-box;
  5163. text-align: center;
  5164. vertical-align: middle;
  5165. font-weight: var(--f7-badge-font-weight);
  5166. font-size: var(--f7-badge-font-size);
  5167. border-radius: var(--f7-badge-size);
  5168. padding: var(--f7-badge-padding);
  5169. height: var(--f7-badge-size);
  5170. min-width: var(--f7-badge-size);
  5171. }
  5172. .icon .badge,
  5173. .f7-icons .badge,
  5174. .framework7-icons .badge,
  5175. .material-icons .badge {
  5176. position: absolute;
  5177. left: 100%;
  5178. margin-left: -10px;
  5179. top: -2px;
  5180. font-family: var(--f7-font-family);
  5181. --f7-badge-font-size: var(--f7-badge-in-icon-font-size);
  5182. --f7-badge-size: var(--f7-badge-in-icon-size);
  5183. }
  5184. .badge[class*="color-"] {
  5185. --f7-badge-bg-color: var(--f7-theme-color);
  5186. }
  5187. :root {
  5188. --f7-button-min-width: 32px;
  5189. --f7-button-bg-color: transparent;
  5190. --f7-button-border-width: 0px;
  5191. /*
  5192. --f7-button-text-color: var(--f7-theme-color);
  5193. --f7-button-pressed-text-color: var(--f7-button-text-color, var(--f7-theme-color));
  5194. --f7-button-border-color: var(--f7-theme-color);
  5195. --f7-button-fill-text-color: #fff;
  5196. --f7-button-fill-bg-color: var(--f7-theme-color);
  5197. --f7-button-outline-border-color: var(--f7-theme-color);
  5198. */
  5199. --f7-button-outline-border-width: 2px;
  5200. --f7-button-raised-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0,0,0,0.24);
  5201. --f7-button-raised-pressed-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0,0,0,0.23);
  5202. --f7-segmented-raised-divider-color: rgba(0, 0, 0, 0.1);
  5203. --f7-segmented-strong-padding: 2px;
  5204. --f7-segmented-strong-between-buttons: 4px;
  5205. --f7-segmented-strong-button-font-weight: 500;
  5206. --f7-segmented-strong-button-active-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
  5207. --f7-segmented-strong-bg-color: rgba(0, 0, 0, 0.07);
  5208. --f7-segmented-strong-button-text-color: #000;
  5209. --f7-segmented-strong-button-pressed-bg-color: rgba(0, 0, 0, 0.07);
  5210. --f7-segmented-strong-button-hover-bg-color: rgba(0, 0, 0, 0.04);
  5211. --f7-segmented-strong-button-active-text-color: #000;
  5212. --f7-segmented-strong-button-active-bg-color: #fff;
  5213. }
  5214. :root .theme-dark,
  5215. :root.theme-dark {
  5216. --f7-segmented-strong-bg-color: rgba(255, 255, 255, 0.1);
  5217. --f7-segmented-strong-button-pressed-bg-color: rgba(255, 255, 255, 0.04);
  5218. --f7-segmented-strong-button-hover-bg-color: rgba(255, 255, 255, 0.02);
  5219. --f7-segmented-strong-button-active-bg-color: rgba(255, 255, 255, 0.14);
  5220. --f7-segmented-strong-button-text-color: #fff;
  5221. --f7-segmented-strong-button-active-text-color: #fff;
  5222. }
  5223. .ios {
  5224. --f7-button-font-size: 13px;
  5225. --f7-button-height: 28px;
  5226. --f7-button-padding-horizontal: 10px;
  5227. --f7-button-border-radius: 5px;
  5228. --f7-button-font-weight: 600;
  5229. --f7-button-letter-spacing: 0;
  5230. --f7-button-text-transform: uppercase;
  5231. /*
  5232. --f7-button-pressed-bg-color: rgba(var(--f7-theme-color-rgb), .15);
  5233. --f7-button-fill-pressed-bg-color: var(--f7-theme-color-tint);
  5234. */
  5235. --f7-button-large-height: 44px;
  5236. --f7-button-large-font-size: 17px;
  5237. --f7-button-large-font-weight: 500;
  5238. --f7-button-large-text-transform: none;
  5239. --f7-button-small-height: 26px;
  5240. --f7-button-small-font-size: 13px;
  5241. --f7-button-small-font-weight: 600;
  5242. --f7-button-small-text-transform: uppercase;
  5243. --f7-button-small-outline-border-width: 2px;
  5244. --f7-segmented-strong-button-text-transform: none;
  5245. --f7-segmented-strong-button-active-font-weight: 600;
  5246. }
  5247. .md {
  5248. --f7-button-font-size: 14px;
  5249. --f7-button-height: 36px;
  5250. --f7-button-padding-horizontal: 8px;
  5251. --f7-button-border-radius: 4px;
  5252. --f7-button-font-weight: 500;
  5253. --f7-button-letter-spacing: 0.03em;
  5254. --f7-button-text-transform: uppercase;
  5255. /*
  5256. --f7-button-fill-pressed-bg-color: var(--f7-theme-color-shade);
  5257. */
  5258. --f7-button-large-height: 48px;
  5259. --f7-button-large-font-size: 14px;
  5260. --f7-button-large-font-weight: 500;
  5261. --f7-button-large-text-transform: uppercase;
  5262. --f7-button-small-height: 28px;
  5263. --f7-button-small-font-size: 12px;
  5264. --f7-button-small-font-weight: 500;
  5265. --f7-button-small-text-transform: uppercase;
  5266. --f7-button-small-outline-border-width: 2px;
  5267. --f7-segmented-strong-button-text-transform: uppercase;
  5268. --f7-segmented-strong-button-active-font-weight: 500;
  5269. --f7-button-pressed-bg-color: rgba(0, 0, 0, 0.1);
  5270. }
  5271. .md .theme-dark,
  5272. .md.theme-dark {
  5273. --f7-button-pressed-bg-color: rgba(255, 255, 255, 0.1);
  5274. }
  5275. .aurora {
  5276. /*
  5277. --f7-button-hover-bg-color: rgba(var(--f7-theme-color-rgb), .07);
  5278. --f7-button-fill-hover-bg-color: var(--f7-theme-color-tint);
  5279. */
  5280. --f7-button-font-size: 14px;
  5281. --f7-button-height: 28px;
  5282. --f7-button-min-width: 24px;
  5283. --f7-button-padding-horizontal: 10px;
  5284. --f7-button-border-radius: 4px;
  5285. --f7-button-font-weight: 500;
  5286. --f7-button-letter-spacing: 0.02;
  5287. --f7-button-text-transform: none;
  5288. /*
  5289. --f7-button-pressed-bg-color: rgba(var(--f7-theme-color-rgb), .15);
  5290. --f7-button-fill-pressed-bg-color: var(--f7-theme-color-shade);
  5291. */
  5292. --f7-button-large-height: 34px;
  5293. --f7-button-large-font-size: 14px;
  5294. --f7-button-large-font-weight: 600;
  5295. --f7-button-large-text-transform: none;
  5296. --f7-button-small-height: 24px;
  5297. --f7-button-small-font-size: 12px;
  5298. --f7-button-small-font-weight: 600;
  5299. --f7-button-small-text-transform: none;
  5300. --f7-button-small-outline-border-width: 1px;
  5301. --f7-segmented-strong-button-text-transform: none;
  5302. --f7-segmented-strong-button-active-font-weight: 600;
  5303. }
  5304. button {
  5305. -webkit-appearance: none;
  5306. -moz-appearance: none;
  5307. appearance: none;
  5308. width: 100%;
  5309. }
  5310. .button {
  5311. text-decoration: none;
  5312. text-align: center;
  5313. display: block;
  5314. -webkit-appearance: none;
  5315. -moz-appearance: none;
  5316. appearance: none;
  5317. background: none;
  5318. margin: 0;
  5319. white-space: nowrap;
  5320. text-overflow: ellipsis;
  5321. position: relative;
  5322. overflow: hidden;
  5323. font-family: inherit;
  5324. cursor: pointer;
  5325. outline: 0;
  5326. box-sizing: border-box;
  5327. vertical-align: middle;
  5328. justify-content: center;
  5329. align-items: center;
  5330. border: var(--f7-button-border-width, 0px) solid var(--f7-button-border-color, var(--f7-theme-color));
  5331. font-size: var(--f7-button-font-size);
  5332. color: var(--f7-button-text-color, var(--f7-theme-color));
  5333. height: var(--f7-button-height);
  5334. line-height: calc(var(--f7-button-height) - var(--f7-button-border-width, 0) * 2);
  5335. padding: var(--f7-button-padding-vertical, 0px) var(--f7-button-padding-horizontal);
  5336. border-radius: var(--f7-button-border-radius);
  5337. min-width: var(--f7-button-min-width);
  5338. font-weight: var(--f7-button-font-weight);
  5339. letter-spacing: var(--f7-button-letter-spacing);
  5340. text-transform: var(--f7-button-text-transform);
  5341. background-color: var(--f7-button-bg-color);
  5342. box-shadow: var(--f7-button-box-shadow);
  5343. }
  5344. .button.active-state {
  5345. background-color: var(--f7-button-pressed-bg-color, rgba(var(--f7-theme-color-rgb), 0.15));
  5346. color: var(--f7-button-pressed-text-color, var(--f7-button-text-color, var(--f7-theme-color)));
  5347. }
  5348. input[type="submit"].button,
  5349. input[type="button"].button {
  5350. width: 100%;
  5351. }
  5352. .button > i + span,
  5353. .button > span + span,
  5354. .button > span + i,
  5355. .button > i + i {
  5356. margin-right: 4px;
  5357. }
  5358. .subnavbar .button,
  5359. .navbar .button,
  5360. .toolbar .button,
  5361. .searchbar .button,
  5362. .appbar .button {
  5363. color: var(--f7-button-text-color, var(--f7-theme-color));
  5364. }
  5365. .button-round,
  5366. .ios .button-round-ios,
  5367. .md .button-round-md,
  5368. .aurora .button-round-aurora {
  5369. --f7-button-border-radius: var(--f7-button-height);
  5370. }
  5371. .button-fill,
  5372. .ios .button-fill-ios,
  5373. .md .button-fill-md,
  5374. .aurora .button-fill-aurora,
  5375. .button-active,
  5376. .button.tab-link-active {
  5377. --f7-button-bg-color: var(--f7-button-fill-bg-color, var(--f7-theme-color));
  5378. --f7-button-text-color: var(--f7-button-fill-text-color, #fff);
  5379. --f7-touch-ripple-color: var(--f7-touch-ripple-white);
  5380. }
  5381. .button-fill,
  5382. .ios .button-fill-ios,
  5383. .md .button-fill-md,
  5384. .aurora .button-fill-aurora {
  5385. --f7-button-pressed-bg-color: var(--f7-button-fill-pressed-bg-color);
  5386. }
  5387. .button-active,
  5388. .button.tab-link-active {
  5389. --f7-button-pressed-bg-color: var(--f7-button-bg-color);
  5390. }
  5391. .button-outline,
  5392. .ios .button-outline-ios,
  5393. .md .button-outline-md,
  5394. .aurora .button-outline-aurora {
  5395. --f7-button-border-color: var(--f7-button-outline-border-color, var(--f7-theme-color));
  5396. --f7-button-border-width: var(--f7-button-outline-border-width);
  5397. }
  5398. .button-large,
  5399. .ios .button-large-ios,
  5400. .md .button-large-md,
  5401. .aurora .button-large-aurora {
  5402. --f7-button-height: var(--f7-button-large-height);
  5403. --f7-button-font-size: var(--f7-button-large-font-size);
  5404. --f7-button-font-weight: var(--f7-button-large-font-weight);
  5405. --f7-button-text-transform: var(--f7-button-large-text-transform);
  5406. }
  5407. .button-small,
  5408. .ios .button-small-ios,
  5409. .md .button-small-md,
  5410. .aurora .button-small-aurora {
  5411. --f7-button-outline-border-width: var(--f7-button-small-outline-border-width);
  5412. --f7-button-height: var(--f7-button-small-height);
  5413. --f7-button-font-size: var(--f7-button-small-font-size);
  5414. --f7-button-font-weight: var(--f7-button-small-font-weight);
  5415. --f7-button-text-transform: var(--f7-button-small-text-transform);
  5416. }
  5417. .ios .button-small.button-fill,
  5418. .ios .button-small-ios.button-fill,
  5419. .ios .button-small.button-fill-ios {
  5420. --f7-button-border-width: var(--f7-button-small-outline-border-width);
  5421. --f7-button-pressed-text-color: var(--f7-theme-color);
  5422. --f7-button-pressed-bg-color: transparent;
  5423. }
  5424. .segmented {
  5425. align-self: center;
  5426. display: flex;
  5427. flex-wrap: nowrap;
  5428. border-radius: var(--f7-button-border-radius);
  5429. box-shadow: var(--f7-button-box-shadow);
  5430. box-sizing: border-box;
  5431. }
  5432. .segmented .button,
  5433. .segmented button {
  5434. width: 100%;
  5435. flex-shrink: 1;
  5436. min-width: 0;
  5437. border-radius: 0;
  5438. }
  5439. .segmented .button:first-child {
  5440. border-radius: 0 var(--f7-button-border-radius) var(--f7-button-border-radius) 0;
  5441. }
  5442. .segmented .button:not(.button-outline):first-child {
  5443. border-right: none;
  5444. }
  5445. .segmented .button.button-outline:nth-child(n + 2) {
  5446. border-right: none;
  5447. }
  5448. .segmented .button:last-child {
  5449. border-radius: var(--f7-button-border-radius) 0 0 var(--f7-button-border-radius);
  5450. }
  5451. .segmented .button-round:first-child {
  5452. border-radius: 0 var(--f7-button-height) var(--f7-button-height) 0;
  5453. }
  5454. .segmented .button-round:last-child {
  5455. border-radius: var(--f7-button-height) 0 0 var(--f7-button-height);
  5456. }
  5457. .segmented .button:first-child:last-child {
  5458. border-radius: var(--f7-button-border-radius);
  5459. }
  5460. .segmented-raised,
  5461. .ios .segmented-raised-ios,
  5462. .md .segmented-raised-md,
  5463. .aurora .segmented-raised-aurora {
  5464. box-shadow: var(--f7-button-raised-box-shadow);
  5465. }
  5466. .segmented-raised .button:not(.button-outline),
  5467. .ios .segmented-raised-ios .button:not(.button-outline),
  5468. .md .segmented-raised-md .button:not(.button-outline),
  5469. .aurora .segmented-raised-aurora .button:not(.button-outline) {
  5470. border-right: 1px solid var(--f7-segmented-raised-divider-color);
  5471. }
  5472. .button-raised,
  5473. .ios .button-raised-ios,
  5474. .md .button-raised-md,
  5475. .aurora .button-raised-aurora {
  5476. --f7-button-box-shadow: var(--f7-button-raised-box-shadow);
  5477. }
  5478. .button-raised.active-state,
  5479. .ios .button-raised-ios.active-state,
  5480. .md .button-raised-md.active-state,
  5481. .aurora .button-raised-aurora.active-state {
  5482. --f7-button-box-shadow: var(--f7-button-raised-pressed-box-shadow);
  5483. }
  5484. .segmented-strong,
  5485. .ios .segmented-strong-ios,
  5486. .md .segmented-strong-md,
  5487. .aurora .segmented-strong-aurora {
  5488. --f7-button-bg-color: transparent;
  5489. --f7-button-hover-bg-color: var(--f7-segmented-strong-button-hover-bg-color);
  5490. --f7-button-text-color: var(--f7-segmented-strong-button-text-color);
  5491. --f7-button-font-weight: var(--f7-segmented-strong-button-font-weight);
  5492. --f7-button-text-transform: var(--f7-segmented-strong-button-text-transform);
  5493. --f7-button-pressed-bg-color: var(--f7-segmented-strong-button-pressed-bg-color);
  5494. position: relative;
  5495. background: var(--f7-segmented-strong-bg-color);
  5496. border-radius: calc(var(--f7-button-border-radius) + 2px);
  5497. box-shadow: none;
  5498. padding: var(--f7-segmented-strong-padding);
  5499. overflow: hidden;
  5500. }
  5501. .segmented-strong .button,
  5502. .ios .segmented-strong-ios .button,
  5503. .md .segmented-strong-md .button,
  5504. .aurora .segmented-strong-aurora .button {
  5505. z-index: 1;
  5506. transform: translate3d(0, 0, 0);
  5507. }
  5508. .segmented-strong .button,
  5509. .ios .segmented-strong-ios .button,
  5510. .md .segmented-strong-md .button,
  5511. .aurora .segmented-strong-aurora .button,
  5512. .segmented-strong .button:first-child,
  5513. .ios .segmented-strong-ios .button:first-child,
  5514. .md .segmented-strong-md .button:first-child,
  5515. .aurora .segmented-strong-aurora .button:first-child,
  5516. .segmented-strong .button:last-child,
  5517. .ios .segmented-strong-ios .button:last-child,
  5518. .md .segmented-strong-md .button:last-child,
  5519. .aurora .segmented-strong-aurora .button:last-child {
  5520. border-radius: var(--f7-button-border-radius);
  5521. }
  5522. .segmented-strong .button + .button,
  5523. .ios .segmented-strong-ios .button + .button,
  5524. .md .segmented-strong-md .button + .button,
  5525. .aurora .segmented-strong-aurora .button + .button {
  5526. margin-right: var(--f7-segmented-strong-between-buttons);
  5527. }
  5528. .segmented-strong .button.button-active,
  5529. .ios .segmented-strong-ios .button.button-active,
  5530. .md .segmented-strong-md .button.button-active,
  5531. .aurora .segmented-strong-aurora .button.button-active,
  5532. .segmented-strong .button.tab-link-active,
  5533. .ios .segmented-strong-ios .button.tab-link-active,
  5534. .md .segmented-strong-md .button.tab-link-active,
  5535. .aurora .segmented-strong-aurora .button.tab-link-active {
  5536. --f7-button-hover-bg-color: transparent;
  5537. --f7-button-bg-color: transparent;
  5538. --f7-button-text-color: var(--f7-segmented-strong-button-active-text-color);
  5539. --f7-button-font-weight: var(--f7-segmented-strong-button-active-font-weight);
  5540. }
  5541. .segmented-strong .segmented-highlight,
  5542. .ios .segmented-strong-ios .segmented-highlight,
  5543. .md .segmented-strong-md .segmented-highlight,
  5544. .aurora .segmented-strong-aurora .segmented-highlight {
  5545. --f7-segmented-highlight-num: 1;
  5546. --f7-segmented-highlight-active: 0;
  5547. --f7-segmented-highlight-padding: calc(var(--f7-segmented-strong-padding) * 2);
  5548. --f7-segmented-highlight-between: var(--f7-segmented-strong-between-buttons);
  5549. --f7-segmented-highlight-width: calc((100% - var(--f7-segmented-highlight-padding) - var(--f7-segmented-highlight-between) * (var(--f7-segmented-highlight-num) - 1)) / var(--f7-segmented-highlight-num));
  5550. position: absolute;
  5551. background-color: var(--f7-segmented-strong-button-active-bg-color);
  5552. border-radius: var(--f7-button-border-radius);
  5553. box-shadow: var(--f7-segmented-strong-button-active-box-shadow);
  5554. left: var(--f7-segmented-strong-padding);
  5555. top: var(--f7-segmented-strong-padding);
  5556. height: calc(100% - var(--f7-segmented-strong-padding) * 2);
  5557. width: var(--f7-segmented-highlight-width);
  5558. z-index: 0;
  5559. transform: translateX(calc(var(--f7-segmented-highlight-active) * 100% + var(--f7-segmented-highlight-active) * var(--f7-segmented-highlight-between)));
  5560. transition: 200ms;
  5561. }
  5562. .button:nth-child(2) ~ .segmented-highlight {
  5563. --f7-segmented-highlight-num: 2;
  5564. }
  5565. .button:nth-child(3) ~ .segmented-highlight {
  5566. --f7-segmented-highlight-num: 3;
  5567. }
  5568. .button:nth-child(4) ~ .segmented-highlight {
  5569. --f7-segmented-highlight-num: 4;
  5570. }
  5571. .button:nth-child(5) ~ .segmented-highlight {
  5572. --f7-segmented-highlight-num: 5;
  5573. }
  5574. .button:nth-child(6) ~ .segmented-highlight {
  5575. --f7-segmented-highlight-num: 6;
  5576. }
  5577. .button:nth-child(7) ~ .segmented-highlight {
  5578. --f7-segmented-highlight-num: 7;
  5579. }
  5580. .button:nth-child(8) ~ .segmented-highlight {
  5581. --f7-segmented-highlight-num: 8;
  5582. }
  5583. .button:nth-child(9) ~ .segmented-highlight {
  5584. --f7-segmented-highlight-num: 9;
  5585. }
  5586. .button:nth-child(10) ~ .segmented-highlight {
  5587. --f7-segmented-highlight-num: 10;
  5588. }
  5589. .button-active:nth-child(2) ~ .segmented-highlight,
  5590. .tab-link-active:nth-child(2) ~ .segmented-highlight {
  5591. --f7-segmented-highlight-active: 1;
  5592. }
  5593. .button-active:nth-child(3) ~ .segmented-highlight,
  5594. .tab-link-active:nth-child(3) ~ .segmented-highlight {
  5595. --f7-segmented-highlight-active: 2;
  5596. }
  5597. .button-active:nth-child(4) ~ .segmented-highlight,
  5598. .tab-link-active:nth-child(4) ~ .segmented-highlight {
  5599. --f7-segmented-highlight-active: 3;
  5600. }
  5601. .button-active:nth-child(5) ~ .segmented-highlight,
  5602. .tab-link-active:nth-child(5) ~ .segmented-highlight {
  5603. --f7-segmented-highlight-active: 4;
  5604. }
  5605. .button-active:nth-child(6) ~ .segmented-highlight,
  5606. .tab-link-active:nth-child(6) ~ .segmented-highlight {
  5607. --f7-segmented-highlight-active: 5;
  5608. }
  5609. .button-active:nth-child(7) ~ .segmented-highlight,
  5610. .tab-link-active:nth-child(7) ~ .segmented-highlight {
  5611. --f7-segmented-highlight-active: 6;
  5612. }
  5613. .button-active:nth-child(8) ~ .segmented-highlight,
  5614. .tab-link-active:nth-child(8) ~ .segmented-highlight {
  5615. --f7-segmented-highlight-active: 7;
  5616. }
  5617. .button-active:nth-child(9) ~ .segmented-highlight,
  5618. .tab-link-active:nth-child(9) ~ .segmented-highlight {
  5619. --f7-segmented-highlight-active: 8;
  5620. }
  5621. .button-active:nth-child(10) ~ .segmented-highlight,
  5622. .tab-link-active:nth-child(10) ~ .segmented-highlight {
  5623. --f7-segmented-highlight-active: 9;
  5624. }
  5625. .segmented-round,
  5626. .ios .segmented-round-ios,
  5627. .md .segmented-round-md,
  5628. .aurora .segmented-round-aurora {
  5629. border-radius: var(--f7-button-height);
  5630. }
  5631. .segmented-round .segmented-highlight,
  5632. .ios .segmented-round-ios .segmented-highlight,
  5633. .md .segmented-round-md .segmented-highlight,
  5634. .aurora .segmented-round-aurora .segmented-highlight {
  5635. border-radius: var(--f7-button-height);
  5636. }
  5637. .subnavbar .segmented {
  5638. width: 100%;
  5639. }
  5640. .ios .button {
  5641. transition-duration: 100ms;
  5642. }
  5643. .ios .button-fill,
  5644. .ios .button-fill-ios {
  5645. --f7-button-pressed-bg-color: var(--f7-button-fill-pressed-bg-color, var(--f7-theme-color-tint));
  5646. }
  5647. .ios .button-small,
  5648. .ios .button-small-ios {
  5649. transition-duration: 200ms;
  5650. }
  5651. .md .button {
  5652. transition-duration: 300ms;
  5653. transform: translate3d(0, 0, 0);
  5654. }
  5655. .md .button-fill,
  5656. .md .button-fill-md {
  5657. --f7-button-pressed-bg-color: var(--f7-button-fill-pressed-bg-color, var(--f7-theme-color-shade));
  5658. }
  5659. .aurora .button {
  5660. transition-duration: 100ms;
  5661. transform: translate3d(0, 0, 0);
  5662. }
  5663. .aurora.device-desktop .button:not(.active-state):not(.no-hover):hover {
  5664. background-color: var(--f7-button-hover-bg-color, rgba(var(--f7-theme-color-rgb), 0.07));
  5665. }
  5666. .aurora .button-fill,
  5667. .aurora .button-fill-aurora {
  5668. --f7-button-pressed-bg-color: var(--f7-button-fill-pressed-bg-color, var(--f7-theme-color-shade));
  5669. }
  5670. .aurora .button-fill,
  5671. .aurora .button-active,
  5672. .aurora .button.tab-link-active,
  5673. .aurora .button-fill-aurora {
  5674. --f7-button-hover-bg-color: var(--f7-button-fill-hover-bg-color, var(--f7-theme-color-tint));
  5675. }
  5676. /* === Touch Ripple === */
  5677. :root {
  5678. --f7-touch-ripple-black: rgba(0, 0, 0, 0.1);
  5679. --f7-touch-ripple-white: rgba(255, 255, 255, 0.3);
  5680. --f7-touch-ripple-color: var(--f7-touch-ripple-black);
  5681. }
  5682. .theme-dark {
  5683. --f7-touch-ripple-color: var(--f7-touch-ripple-white);
  5684. }
  5685. .ripple,
  5686. .fab a,
  5687. .link,
  5688. .item-link,
  5689. .list-button,
  5690. .button,
  5691. .dialog-button,
  5692. .tab-link,
  5693. .radio,
  5694. .checkbox,
  5695. .actions-button,
  5696. .speed-dial-buttons a {
  5697. -webkit-user-select: none;
  5698. -moz-user-select: none;
  5699. user-select: none;
  5700. }
  5701. .ripple-wave {
  5702. left: 0;
  5703. top: 0;
  5704. position: absolute !important;
  5705. border-radius: 50%;
  5706. pointer-events: none;
  5707. z-index: -1;
  5708. padding: 0;
  5709. margin: 0;
  5710. font-size: 0;
  5711. transform: translate3d(0px, 0px, 0) scale(0);
  5712. transition-duration: 1400ms;
  5713. background-color: var(--f7-touch-ripple-color);
  5714. }
  5715. .ripple-wave.ripple-wave-fill {
  5716. transition-duration: 300ms;
  5717. opacity: 0.35;
  5718. }
  5719. .ripple-wave.ripple-wave-out {
  5720. transition-duration: 600ms;
  5721. opacity: 0;
  5722. }
  5723. .button-fill .ripple-wave,
  5724. .picker-calendar-day .ripple-wave,
  5725. .menu .ripple-wave {
  5726. z-index: 1;
  5727. }
  5728. .checkbox .ripple-wave,
  5729. .radio .ripple-wave,
  5730. .data-table .sortable-cell .ripple-wave {
  5731. z-index: 0;
  5732. }
  5733. [class*="ripple-color-"] {
  5734. --f7-touch-ripple-color: var(--f7-theme-color-ripple-color);
  5735. }
  5736. /* === Icon === */
  5737. .f7-icons,
  5738. .material-icons {
  5739. width: 1em;
  5740. height: 1em;
  5741. }
  5742. i.icon {
  5743. display: inline-block;
  5744. vertical-align: middle;
  5745. background-size: 100% auto;
  5746. background-position: center;
  5747. background-repeat: no-repeat;
  5748. font-style: normal;
  5749. position: relative;
  5750. }
  5751. .icon-back:after,
  5752. .icon-prev:after,
  5753. .icon-forward:after,
  5754. .icon-next:after {
  5755. font-family: 'framework7-core-icons';
  5756. font-weight: normal;
  5757. font-style: normal;
  5758. line-height: 1;
  5759. letter-spacing: normal;
  5760. text-transform: none;
  5761. white-space: nowrap;
  5762. word-wrap: normal;
  5763. direction: ltr;
  5764. -webkit-font-smoothing: antialiased;
  5765. text-rendering: optimizeLegibility;
  5766. -moz-osx-font-smoothing: grayscale;
  5767. font-feature-settings: "liga";
  5768. text-align: center;
  5769. display: block;
  5770. width: 100%;
  5771. height: 100%;
  5772. font-size: 20px;
  5773. }
  5774. .icon[class*="color-"] {
  5775. color: var(--f7-theme-color);
  5776. }
  5777. .ios .icon-back,
  5778. .ios .icon-prev,
  5779. .ios .icon-forward,
  5780. .ios .icon-next {
  5781. width: 12px;
  5782. height: 20px;
  5783. line-height: 20px;
  5784. }
  5785. .ios .icon-back:after,
  5786. .ios .icon-prev:after,
  5787. .ios .icon-forward:after,
  5788. .ios .icon-next:after {
  5789. line-height: inherit;
  5790. }
  5791. .ios .icon-prev:after,
  5792. .ios .icon-next:after {
  5793. font-size: 16px;
  5794. }
  5795. .ios .icon-back:after,
  5796. .ios .icon-prev:after {
  5797. content: 'chevron_right_ios';
  5798. }
  5799. .ios .icon-forward:after,
  5800. .ios .icon-next:after {
  5801. content: 'chevron_left_ios';
  5802. }
  5803. .md .icon-back,
  5804. .md .icon-forward,
  5805. .md .icon-next,
  5806. .md .icon-prev {
  5807. width: 24px;
  5808. height: 24px;
  5809. }
  5810. .md .icon-back:after,
  5811. .md .icon-forward:after,
  5812. .md .icon-next:after,
  5813. .md .icon-prev:after {
  5814. line-height: 1.2;
  5815. }
  5816. .md .icon-back:after {
  5817. content: 'arrow_right_md';
  5818. }
  5819. .md .icon-forward:after {
  5820. content: 'arrow_left_md';
  5821. }
  5822. .md .icon-next:after {
  5823. content: 'chevron_left_md';
  5824. }
  5825. .md .icon-prev:after {
  5826. content: 'chevron_right_md';
  5827. }
  5828. .aurora .f7-icons,
  5829. .aurora .material-icons {
  5830. font-size: 18px;
  5831. }
  5832. .aurora .icon-back,
  5833. .aurora .icon-prev,
  5834. .aurora .icon-forward,
  5835. .aurora .icon-next {
  5836. width: 9px;
  5837. height: 14px;
  5838. line-height: 14px;
  5839. }
  5840. .aurora .icon-back:after,
  5841. .aurora .icon-prev:after,
  5842. .aurora .icon-forward:after,
  5843. .aurora .icon-next:after {
  5844. line-height: inherit;
  5845. }
  5846. .aurora .icon-back:after,
  5847. .aurora .icon-prev:after {
  5848. content: 'chevron_right_aurora';
  5849. }
  5850. .aurora .icon-forward:after,
  5851. .aurora .icon-next:after {
  5852. content: 'chevron_left_aurora';
  5853. }
  5854. .custom-modal-backdrop {
  5855. z-index: 10500;
  5856. }
  5857. .custom-modal-backdrop,
  5858. .actions-backdrop,
  5859. .dialog-backdrop,
  5860. .popover-backdrop,
  5861. .popup-backdrop,
  5862. .preloader-backdrop,
  5863. .sheet-backdrop,
  5864. .fab-backdrop {
  5865. position: absolute;
  5866. left: 0;
  5867. top: 0;
  5868. width: 100%;
  5869. height: 100%;
  5870. background: rgba(0, 0, 0, 0.4);
  5871. z-index: 13000;
  5872. visibility: hidden;
  5873. opacity: 0;
  5874. transition-duration: 400ms;
  5875. }
  5876. .custom-modal-backdrop.not-animated,
  5877. .actions-backdrop.not-animated,
  5878. .dialog-backdrop.not-animated,
  5879. .popover-backdrop.not-animated,
  5880. .popup-backdrop.not-animated,
  5881. .preloader-backdrop.not-animated,
  5882. .sheet-backdrop.not-animated,
  5883. .fab-backdrop.not-animated {
  5884. transition-duration: 0ms;
  5885. }
  5886. .custom-modal-backdrop.backdrop-in,
  5887. .actions-backdrop.backdrop-in,
  5888. .dialog-backdrop.backdrop-in,
  5889. .popover-backdrop.backdrop-in,
  5890. .popup-backdrop.backdrop-in,
  5891. .preloader-backdrop.backdrop-in,
  5892. .sheet-backdrop.backdrop-in,
  5893. .fab-backdrop.backdrop-in {
  5894. visibility: visible;
  5895. opacity: 1;
  5896. }