af.ui.css 113 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476
  1. #af_actionsheet {
  2. position: absolute;
  3. left: 0px;
  4. right: 0px;
  5. padding-left: 10px;
  6. padding-right: 10px;
  7. padding-top: 10px;
  8. margin: auto;
  9. background: black;
  10. float: left;
  11. z-index: 9999;
  12. border-top: #fff 1px solid;
  13. background: rgba(71, 71, 71, 0.95);
  14. background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0)), color-stop(0.08, rgba(255, 255, 255, 0.1)), color-stop(0.08, rgba(255, 255, 255, 0)));
  15. background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 8%, rgba(255, 255, 255, 0) 8%);
  16. box-shadow: 0px -1px 2px rgba(0, 0, 0, 0.4);
  17. bottom: 0px;
  18. }
  19. #af_actionsheet a {
  20. text-decoration: none;
  21. -webkit-transition: all 0.4s ease;
  22. transition: all 0.4s ease;
  23. text-shadow: 0px -1px rgba(0, 0, 0, 0.8);
  24. padding: 0px .25em;
  25. border: 1px solid rgba(0, 0, 0, 0.8);
  26. text-overflow: ellipsis;
  27. border-radius: .75em;
  28. background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0)), color-stop(0.5, rgba(255, 255, 255, 0.1)), color-stop(0.5, rgba(255, 255, 255, 0)));
  29. background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 50%);
  30. box-shadow: 0px 1px 1px rgba(255, 255, 255, 0.7);
  31. display: block;
  32. color: white;
  33. text-align: center;
  34. line-height: 36px;
  35. font-size: 20px;
  36. font-weight: bold;
  37. margin-bottom: 10px;
  38. background-color: #828282;
  39. }
  40. #af_actionsheet a.selected {
  41. background-color: #969696;
  42. }
  43. #af_actionsheet a.cancel {
  44. background-color: #2b2b2b;
  45. color: white;
  46. }
  47. #af_actionsheet a.cancel.selected {
  48. background-color: #494949;
  49. }
  50. #af_actionsheet a.red {
  51. color: white;
  52. background-color: #cc0000;
  53. }
  54. #af_actionsheet a.red.selected {
  55. background-color: #ff0000;
  56. }
  57. #mask {
  58. display: block;
  59. width: 100%;
  60. height: 100%;
  61. background: #000;
  62. z-index: 999999;
  63. position: fixed;
  64. top: 0;
  65. left: 0;
  66. }
  67. .afPopup {
  68. display: block;
  69. width: 280px;
  70. float: left;
  71. border: solid 1px #72767b;
  72. border-radius: 10px;
  73. padding: 10px;
  74. opacity: 1;
  75. -webkit-transform: scale(1);
  76. transform: scale(1);
  77. position: absolute;
  78. z-index: 1000000;
  79. top: 50%;
  80. left: 50%;
  81. margin: 0px auto;
  82. background: #464646;
  83. color: white;
  84. }
  85. .afPopup > * {
  86. color: inherit;
  87. }
  88. .afPopup > HEADER {
  89. font-weight: bold;
  90. font-size: 20px;
  91. margin: 0;
  92. padding: 5px;
  93. }
  94. .afPopup > DIV {
  95. font-size: 14px;
  96. margin: 8px;
  97. }
  98. .afPopup > FOOTER {
  99. width: 100%;
  100. text-align: center;
  101. display: block !important;
  102. }
  103. .afPopup > FOOTER > A#cancel {
  104. float: left;
  105. }
  106. .afPopup > FOOTER > A#action {
  107. float: right;
  108. }
  109. .afPopup > FOOTER > A.center {
  110. float: none!important;
  111. width: 80%;
  112. margin: 8px;
  113. }
  114. .afPopup.hidden {
  115. opacity: 0;
  116. -webkit-transform: scale(0.1);
  117. }
  118. .afPopup.show {
  119. -webkit-transition: all 0.2s ease-in-out;
  120. transition: all 0.2s ease-in-out;
  121. }
  122. #splashscreen {
  123. position: absolute;
  124. top: 0;
  125. bottom: 0;
  126. width: 100%;
  127. left: 0;
  128. min-height: 120%;
  129. background: #1d1d1c !important;
  130. color: white !important;
  131. font-size: 30px;
  132. text-align: center;
  133. z-index: 9999;
  134. display: block;
  135. margin-left: auto !important;
  136. margin-right: auto !important;
  137. padding-top: 80px !important;
  138. }
  139. .ui-icon {
  140. background: #666;
  141. background: rgba(0, 0, 0, 0.4);
  142. background-repeat: no-repeat;
  143. }
  144. .ui-loader {
  145. display: none;
  146. margin: 10px;
  147. position: absolute;
  148. opacity: .85;
  149. z-index: 100;
  150. left: 50%;
  151. width: 200px;
  152. margin-left: -100px;
  153. margin-top: -35px;
  154. padding: 10px 30px;
  155. background: #666;
  156. background: rgba(0, 0, 0, 0.4);
  157. color: white;
  158. }
  159. .ui-loader h1 {
  160. font-size: 15px;
  161. text-align: center;
  162. }
  163. .ui-loader .ui-icon {
  164. position: static;
  165. display: block;
  166. opacity: .9;
  167. margin: 10px auto;
  168. width: 35px;
  169. height: 35px;
  170. background-color: #eee;
  171. }
  172. .ui-loader.heavy {
  173. opacity: 1;
  174. }
  175. .spin {
  176. -webkit-transform: rotate(360deg);
  177. -webkit-animation-name: spin;
  178. -webkit-animation-duration: 1s;
  179. -webkit-animation-iteration-count: infinite;
  180. transform: rotate(360deg);
  181. animation-name: spin;
  182. animation-duration: 1s;
  183. animation-iteration-count: infinite;
  184. }
  185. @-webkit-keyframes spin {
  186. from {
  187. -webkit-transform: rotate(0deg);
  188. }
  189. to {
  190. -webkit-transform: rotate(360deg);
  191. }
  192. }
  193. @keyframes spin {
  194. from {
  195. transform: rotate(0deg);
  196. }
  197. to {
  198. transform: rotate(360deg);
  199. }
  200. }
  201. .ui-icon-loading {
  202. width: 40px;
  203. height: 40px;
  204. border-left: 2px solid #ccc;
  205. border-right: 2px solid #ccc;
  206. border-top: 2px solid #ccc;
  207. border-bottom: 2px solid #ccc;
  208. background: white;
  209. border-radius: 10px;
  210. }
  211. .ui-corner-all {
  212. border-radius: .6em;
  213. }
  214. .swipe-reveal .swipe-hidden {
  215. position: absolute;
  216. right: 0px;
  217. top: 0px;
  218. z-index: 1;
  219. bottom: 0px;
  220. }
  221. .swipe-reveal .swipe-content {
  222. position: relative;
  223. display: block;
  224. color: inherit;
  225. margin: -20px -20px -20px -10px;
  226. text-decoration: none;
  227. padding: 20px 20px 20px 10px;
  228. background: inherit;
  229. z-index: 2;
  230. }
  231. .swipe-hidden .button,
  232. .swipe-hidden .button.pressed {
  233. display: inline-block;
  234. height: 100%;
  235. background: #ccc !important;
  236. color: white;
  237. border-radius: 0 !important;
  238. border: none;
  239. padding: 20px 15px;
  240. margin: 0;
  241. float: left;
  242. color: white !important;
  243. }
  244. .swipe-hidden .archive,
  245. .swipe-hidden .archive.pressed {
  246. background: red !important;
  247. }
  248. .afToast {
  249. width: auto;
  250. border: solid 1px #72767b;
  251. z-index: 1000000;
  252. margin: 0px auto;
  253. background: #464646;
  254. color: white;
  255. opacity: 0.95;
  256. height: auto;
  257. font-size: 20px;
  258. -webkit-transition: all 0.3s;
  259. transition: all 0.3s;
  260. text-align: left;
  261. line-height: 46px;
  262. margin: 5px 10px;
  263. border-radius: 5px;
  264. overflow: hidden;
  265. }
  266. .afToast > * {
  267. color: inherit;
  268. }
  269. .afToast > DIV {
  270. font-size: 16px;
  271. margin: 8px;
  272. }
  273. .afToast.hidden {
  274. opacity: 0.1;
  275. height: 5px;
  276. overflow: hidden;
  277. }
  278. .afToastContainer {
  279. position: absolute;
  280. top: 0px;
  281. left: 0px;
  282. z-index: 99999;
  283. }
  284. .afToast.success {
  285. background: #499349;
  286. }
  287. .afToast.error {
  288. background: #AA312A;
  289. }
  290. .afToast.warning {
  291. background: #DF8505;
  292. }
  293. .afToastContainer.br {
  294. bottom: 0px;
  295. right: 0px;
  296. top: auto;
  297. left: auto;
  298. }
  299. .afToastContainer.bl {
  300. bottom: 0px;
  301. left: 0px;
  302. top: auto;
  303. right: auto;
  304. }
  305. .afToastContainer.tl {
  306. top: 0px;
  307. left: 0px;
  308. right: auto;
  309. bottom: auto;
  310. }
  311. .afToastContainer.tr {
  312. top: 0px;
  313. right: 0px;
  314. left: auto;
  315. bottom: auto;
  316. }
  317. .afToastContainer.tc {
  318. top: 0px;
  319. right: 0px;
  320. bottom: auto;
  321. left: 0px;
  322. }
  323. .afToastContainer.bc {
  324. top: auto;
  325. right: 0px;
  326. bottom: 0px;
  327. left: 0px;
  328. }
  329. .android,
  330. .android .view,
  331. .android .view .pages {
  332. font: 14px 'Roboto', sans-serif;
  333. background: #000;
  334. color: #fff;
  335. border-color: #fff;
  336. }
  337. .android.light .view,
  338. .android.light .view .pages {
  339. background: #FDFDFD;
  340. color: #000;
  341. }
  342. .android .view header {
  343. background: inherit;
  344. color: inherit;
  345. border-color: #33b5e5;
  346. }
  347. .android .view header .button {
  348. color: inherit;
  349. background: none;
  350. font-size: 14px;
  351. box-shadow: none;
  352. }
  353. .android .view header .backButton {
  354. background: inherit;
  355. color: inherit;
  356. }
  357. .android .view footer {
  358. box-shadow: none;
  359. background: inherit;
  360. border-top: 2px solid #33b5e5;
  361. border-bottom: none;
  362. padding: 0;
  363. }
  364. .android .view footer > a:not(.button) {
  365. color: inherit;
  366. top: 0px;
  367. }
  368. .android .view footer > a.pressed:not(.button) {
  369. border: 0px;
  370. border-top: 1px solid #33b5e5;
  371. border-radius: 0px;
  372. background: none;
  373. }
  374. .android .view footer > a.icon.pressed:not(.button):before {
  375. color: inherit;
  376. }
  377. .android .menuButton:after {
  378. border-color: white;
  379. }
  380. .android .af-badge {
  381. border: none;
  382. }
  383. .android .list {
  384. background: inherit;
  385. color: inherit;
  386. border-color: #303030;
  387. }
  388. .android .list .divider {
  389. color: black;
  390. }
  391. .android .panel h2 {
  392. color: inherit;
  393. }
  394. .android .collapsed:after {
  395. border-top: 6px solid;
  396. }
  397. .android .collapsed:before {
  398. border: 2px solid;
  399. }
  400. .android .expanded:after {
  401. border-bottom: 6px solid;
  402. }
  403. .android .expanded:before {
  404. border: 2px solid;
  405. }
  406. .android .afScrollbar {
  407. background: white !important;
  408. }
  409. .android input[type="range"] {
  410. -webkit-appearance: none;
  411. background-color: #ccc;
  412. height: 2px !important;
  413. position: relative;
  414. top: -10px;
  415. margin-top: 15px;
  416. }
  417. .android input[type="range"]::-webkit-slider-thumb {
  418. -webkit-appearance: none;
  419. position: relative;
  420. z-index: 1;
  421. width: 21px;
  422. height: 21px;
  423. border-radius: 40px;
  424. background: #33b5e5;
  425. }
  426. .android input.toggle + label:after {
  427. color: inherit;
  428. }
  429. .android input.toggle + label {
  430. border-radius: 0;
  431. }
  432. .android input.toggle + label > span {
  433. border-radius: 0;
  434. top: 0;
  435. width: 27px;
  436. height: 29px;
  437. }
  438. .android input.toggle:checked + label {
  439. background: #33b5e5;
  440. }
  441. .android label {
  442. color: inherit;
  443. }
  444. .android input[type="checkbox"] + label:before {
  445. border-radius: 0;
  446. }
  447. .android input[type="checkbox"]:not(.toggle):checked + label:before {
  448. color: #33b5e5;
  449. background: white;
  450. }
  451. .android .button {
  452. border-radius: 0;
  453. border: none;
  454. background: #424343;
  455. border-color: transparent;
  456. color: inherit;
  457. text-shadow: none;
  458. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
  459. }
  460. .android .button.previous::after {
  461. width: 20px;
  462. height: 20px;
  463. background-color: inherit;
  464. top: 5px;
  465. left: -12px;
  466. border-radius: 0;
  467. box-shadow: none;
  468. border-color: transparent;
  469. }
  470. .android .button.next::after {
  471. width: 20px;
  472. height: 20px;
  473. background-color: inherit;
  474. top: 5px;
  475. right: -12px;
  476. border-radius: 0;
  477. box-shadow: none;
  478. border-color: transparent;
  479. }
  480. .android header .button-grouped > .button {
  481. border-color: #777;
  482. }
  483. .android .button-grouped * {
  484. border: 1px solid rgba(255, 255, 255, 0.25);
  485. border-left-width: 0;
  486. box-shadow: none;
  487. }
  488. .android .button-grouped.vertical * {
  489. border-left: 1px solid rgba(255, 255, 255, 0.25);
  490. border-bottom-width: 0;
  491. }
  492. .android .button-grouped.vertical .button:last-child {
  493. border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  494. }
  495. .android .afPopup {
  496. border: solid 1px #aaa;
  497. padding: 0;
  498. border-radius: 0;
  499. -webkit-transform: none;
  500. transform: none;
  501. -webkit-transition: none;
  502. transition: none;
  503. background: inherit;
  504. background-color: rgba(0, 0, 0, 0.9);
  505. color: inherit;
  506. }
  507. .android .afPopup > HEADER {
  508. font-weight: normal;
  509. font-size: 20px;
  510. text-align: left;
  511. padding: 10px;
  512. }
  513. .android .afPopup > DIV {
  514. font-size: 14px;
  515. text-align: left;
  516. padding: 10px;
  517. margin: 0;
  518. border-top: solid 1px #aaa;
  519. border-bottom: solid 1px #aaa;
  520. }
  521. .android .afPopup > FOOTER {
  522. background: #bbb;
  523. }
  524. .android .afPopup > FOOTER > A#cancel {
  525. margin-left: 10px;
  526. width: 120px;
  527. }
  528. .android .afPopup > FOOTER > A#action {
  529. margin-right: 10px;
  530. width: 120px;
  531. }
  532. .android .afPopup > FOOTER > A.center {
  533. margin: 8px;
  534. }
  535. .android #af_actionsheet {
  536. border: #666 1px solid;
  537. border-top: #33b5e5 3px solid;
  538. background: #555;
  539. color: inherit;
  540. margin: -20px 20px 0 20px;
  541. padding: 0px;
  542. }
  543. .android #af_actionsheet a {
  544. border-radius: 0;
  545. border: 0px solid #777;
  546. background: #424343;
  547. color: inherit;
  548. line-height: 50px;
  549. margin-bottom: 1px;
  550. }
  551. .android #af_actionsheet a.cancel {
  552. margin-bottom: 0px;
  553. background: #424343;
  554. color: red;
  555. }
  556. .android.light .menuButton:after {
  557. border-color: black;
  558. }
  559. .android.light .afScrollbar {
  560. background: black !important;
  561. }
  562. .android.light .button {
  563. background: #eee;
  564. border-color: #D1D1D1;
  565. }
  566. .android.light .afPopup {
  567. background-color: rgba(255, 255, 255, 0.9);
  568. }
  569. .android.light #af_actionsheet {
  570. border: #bbb 1px solid;
  571. border-top: #33b5e5 3px solid;
  572. background: #bbb;
  573. }
  574. .android.light #af_actionsheet a {
  575. background: #fff;
  576. }
  577. .android .view .panel {
  578. background: inherit;
  579. color: inherit;
  580. }
  581. .android .collapsed:before,
  582. .android .expanded:before {
  583. border-color: inherit;
  584. }
  585. .android .collapsed:after,
  586. .android .expanded:after {
  587. border-top-color: inherit;
  588. }
  589. .android select,
  590. .android textarea,
  591. .android input[type="text"],
  592. .android input[type=search],
  593. .android input[type="password"],
  594. .android input[type="datetime"],
  595. .android input[type="datetime-local"],
  596. .android input[type="date"],
  597. .android input[type="month"],
  598. .android input[type="time"],
  599. .android input[type="week"],
  600. .android input[type="number"],
  601. .android input[type="email"],
  602. .android input[type="url"],
  603. .android input[type="tel"],
  604. .android input[type="color"],
  605. .android .input-group {
  606. background: inherit;
  607. color: inherit;
  608. border: none;
  609. border-radius: 0;
  610. border-bottom: 1px solid #ccc;
  611. }
  612. .android:not(.light) input[type="radio"]:not(.toggle):checked + label:before {
  613. background: #33b5e5;
  614. border: 2px solid white;
  615. }
  616. .android .button.pressed,
  617. .android header .button-grouped > .button.pressed {
  618. background: #33b5e5;
  619. border-color: #33b5e5;
  620. }
  621. .android .afPopup > FOOTER > A,
  622. .android.light .afPopup > FOOTER > A {
  623. background: #fff;
  624. color: #111;
  625. }
  626. .panel.active,
  627. .panel.animation-active {
  628. display: block !important;
  629. z-index: 100;
  630. -webkit-animation-timing-function: linear !important;
  631. animation-timing-function: linear !important;
  632. }
  633. .animation-active {
  634. -webkit-animation-timing-function: linear !important;
  635. animation-timing-function: linear !important;
  636. }
  637. .panel.animation-active {
  638. -webkit-transition-duration: 300ms;
  639. transition-duration: 300ms;
  640. }
  641. .fast {
  642. -webkit-transition-duration: 100ms !important;
  643. transition-duration: 100ms !important;
  644. }
  645. .none-in,
  646. .none-out {
  647. -webkit-animation: noTransition 1ms forwards;
  648. animation: noTransition 1ms forwards;
  649. }
  650. .blank-in,
  651. .blank-out,
  652. .blank {
  653. -webkit-animation: noTransition 300ms forwards;
  654. animation: noTransition 300ms forwards;
  655. }
  656. @-webkit-keyframes noTransition {
  657. from {
  658. opacity: 1.0;
  659. }
  660. to {
  661. opacity: 0.99;
  662. }
  663. }
  664. @keyframes noTransition {
  665. from {
  666. opacity: 1.0;
  667. }
  668. to {
  669. opacity: 0.99;
  670. }
  671. }
  672. .slide-in {
  673. -webkit-animation: slide-inAnimation 300ms forwards;
  674. animation: slide-inAnimation 300ms forwards;
  675. }
  676. @-webkit-keyframes slide-inAnimation {
  677. 0% {
  678. -webkit-transform: translate3d(100%, 0, 0);
  679. }
  680. 100% {
  681. -webkit-transform: translate3d(0, 0, 0);
  682. }
  683. }
  684. @keyframes slide-inAnimation {
  685. 0% {
  686. transform: translate3d(100%, 0, 0);
  687. }
  688. 100% {
  689. transform: translate3d(0, 0, 0);
  690. }
  691. }
  692. .slide-in.animation-reverse {
  693. -webkit-animation: slide-inAnimationReverse 450ms forwards;
  694. animation: slide-inAnimationReverse 450ms forwards;
  695. }
  696. @-webkit-keyframes slide-inAnimationReverse {
  697. 100% {
  698. -webkit-transform: translate3d(100%, 0, 0);
  699. }
  700. 0% {
  701. -webkit-transform: translate3d(0, 0, 0);
  702. }
  703. }
  704. @keyframes slide-inAnimationReverse {
  705. 100% {
  706. transform: translate3d(100%, 0, 0);
  707. }
  708. 0% {
  709. transform: translate3d(0, 0, 0);
  710. }
  711. }
  712. .slide-out {
  713. -webkit-animation: slide-outAnimation 300ms forwards;
  714. animation: slide-outAnimation 300ms forwards;
  715. }
  716. @-webkit-keyframes slide-outAnimation {
  717. 0% {
  718. -webkit-transform: translate3d(0%, 0, 0);
  719. }
  720. 100% {
  721. -webkit-transform: translate3d(-200px, 0, 0);
  722. }
  723. }
  724. @keyframes slide-outAnimation {
  725. 0% {
  726. transform: translate3d(0%, 0, 0);
  727. }
  728. 100% {
  729. transform: translate3d(-200px, 0, 0);
  730. }
  731. }
  732. .slide-out.animation-reverse {
  733. -webkit-animation: slide-outAnimationReverse 450ms forwards;
  734. animation: slide-outAnimationReverse 450ms forwards;
  735. }
  736. @-webkit-keyframes slide-outAnimationReverse {
  737. 100% {
  738. -webkit-transform: translate3d(0%, 0, 0);
  739. }
  740. 0% {
  741. -webkit-transform: translate3d(-200px, 0, 0);
  742. }
  743. }
  744. @keyframes slide-outAnimationReverse {
  745. 100% {
  746. transform: translate3d(0%, 0, 0);
  747. }
  748. 0% {
  749. transform: translate3d(-200px, 0, 0);
  750. }
  751. }
  752. .slide-full-in {
  753. -webkit-animation: slide-full-inAnimation 300ms forwards;
  754. animation: slide-full-inAnimation 300ms forwards;
  755. }
  756. @-webkit-keyframes slide-full-inAnimation {
  757. 0% {
  758. -webkit-transform: translate3d(100%, 0, 0);
  759. }
  760. 100% {
  761. -webkit-transform: translate3d(0, 0, 0);
  762. }
  763. }
  764. @keyframes slide-full-inAnimation {
  765. 0% {
  766. transform: translate3d(100%, 0, 0);
  767. }
  768. 100% {
  769. transform: translate3d(0, 0, 0);
  770. }
  771. }
  772. .slide-full-in.animation-reverse {
  773. -webkit-animation: slide-full-inAnimationReverse 450ms forwards;
  774. animation: slide-full-inAnimationReverse 450ms forwards;
  775. }
  776. @-webkit-keyframes slide-full-inAnimationReverse {
  777. 100% {
  778. -webkit-transform: translate3d(100%, 0, 0);
  779. }
  780. 0% {
  781. -webkit-transform: translate3d(0, 0, 0);
  782. }
  783. }
  784. @keyframes slide-full-inAnimationReverse {
  785. 100% {
  786. transform: translate3d(100%, 0, 0);
  787. }
  788. 0% {
  789. transform: translate3d(0, 0, 0);
  790. }
  791. }
  792. .slide-full-out {
  793. -webkit-animation: slide-full-outAnimation 300ms forwards;
  794. animation: slide-full-outAnimation 300ms forwards;
  795. }
  796. @-webkit-keyframes slide-full-outAnimation {
  797. 0% {
  798. -webkit-transform: translate3d(0%, 0, 0);
  799. }
  800. 100% {
  801. -webkit-transform: translate3d(-100%, 0, 0);
  802. }
  803. }
  804. @keyframes slide-full-outAnimation {
  805. 0% {
  806. transform: translate3d(0%, 0, 0);
  807. }
  808. 100% {
  809. transform: translate3d(-100%, 0, 0);
  810. }
  811. }
  812. .slide-full-out.animation-reverse {
  813. -webkit-animation: slide-full-outAnimationReverse 450ms forwards;
  814. animation: slide-full-outAnimationReverse 450ms forwards;
  815. }
  816. @-webkit-keyframes slide-full-outAnimationReverse {
  817. 100% {
  818. -webkit-transform: translate3d(0%, 0, 0);
  819. }
  820. 0% {
  821. -webkit-transform: translate3d(-100%, 0, 0);
  822. }
  823. }
  824. @keyframes slide-full-outAnimationReverse {
  825. 100% {
  826. transform: translate3d(0%, 0, 0);
  827. }
  828. 0% {
  829. transform: translate3d(-100%, 0, 0);
  830. }
  831. }
  832. .pop-in {
  833. -webkit-animation: pop-inAnimation 300ms forwards;
  834. animation: pop-inAnimation 300ms forwards;
  835. }
  836. @-webkit-keyframes pop-inAnimation {
  837. 0% {
  838. opacity: 0;
  839. -webkit-transform: scale(0.5);
  840. }
  841. 100% {
  842. opacity: 1;
  843. -webkit-transform: scale(1);
  844. }
  845. }
  846. @keyframes pop-inAnimation {
  847. 0% {
  848. opacity: 0;
  849. transform: scale(0.5);
  850. }
  851. 100% {
  852. opacity: 1;
  853. transform: scale(1);
  854. }
  855. }
  856. .pop-in.animation-reverse {
  857. -webkit-animation: pop-inAnimationReverse 450ms forwards;
  858. animation: pop-inAnimationReverse 450ms forwards;
  859. }
  860. @-webkit-keyframes pop-inAnimationReverse {
  861. 100% {
  862. opacity: 0;
  863. -webkit-transform: scale(0.5);
  864. }
  865. 0% {
  866. opacity: 1;
  867. -webkit-transform: scale(1);
  868. }
  869. }
  870. @keyframes pop-inAnimationReverse {
  871. 100% {
  872. opacity: 0;
  873. transform: scale(0.5);
  874. }
  875. 0% {
  876. opacity: 1;
  877. transform: scale(1);
  878. }
  879. }
  880. .pop-out {
  881. -webkit-animation: noTransition 300ms forwards;
  882. animation: noTransition 300ms forwards;
  883. }
  884. .fade-in {
  885. -webkit-animation: fade-inAnimation 300ms forwards;
  886. animation: fade-inAnimation 300ms forwards;
  887. }
  888. @-webkit-keyframes fade-inAnimation {
  889. 0% {
  890. opacity: 0;
  891. }
  892. 100% {
  893. opacity: 1;
  894. }
  895. }
  896. @keyframes fade-inAnimation {
  897. 0% {
  898. opacity: 0;
  899. }
  900. 100% {
  901. opacity: 1;
  902. }
  903. }
  904. .fade-in.animation-reverse {
  905. -webkit-animation: fade-inAnimationReverse 450ms forwards;
  906. animation: fade-inAnimationReverse 450ms forwards;
  907. }
  908. @-webkit-keyframes fade-inAnimationReverse {
  909. 100% {
  910. opacity: 0;
  911. }
  912. 0% {
  913. opacity: 1;
  914. }
  915. }
  916. @keyframes fade-inAnimationReverse {
  917. 100% {
  918. opacity: 0;
  919. }
  920. 0% {
  921. opacity: 1;
  922. }
  923. }
  924. .fade-out {
  925. -webkit-animation: noTransition 300ms forwards;
  926. animation: noTransition 300ms forwards;
  927. }
  928. .up-in {
  929. -webkit-animation: up-inAnimation 300ms forwards;
  930. animation: up-inAnimation 300ms forwards;
  931. }
  932. @-webkit-keyframes up-inAnimation {
  933. 0% {
  934. -webkit-transform: translate3d(0%, 100%, 0);
  935. }
  936. 100% {
  937. -webkit-transform: translate3d(0%, 0%, 0);
  938. }
  939. }
  940. @keyframes up-inAnimation {
  941. 0% {
  942. transform: translate3d(0%, 100%, 0);
  943. }
  944. 100% {
  945. transform: translate3d(0%, 0%, 0);
  946. }
  947. }
  948. .up-in.animation-reverse {
  949. -webkit-animation: up-inAnimationReverse 450ms forwards;
  950. animation: up-inAnimationReverse 450ms forwards;
  951. }
  952. @-webkit-keyframes up-inAnimationReverse {
  953. 100% {
  954. -webkit-transform: translate3d(0%, 100%, 0);
  955. }
  956. 0% {
  957. -webkit-transform: translate3d(0%, 0%, 0);
  958. }
  959. }
  960. @keyframes up-inAnimationReverse {
  961. 100% {
  962. transform: translate3d(0%, 100%, 0);
  963. }
  964. 0% {
  965. transform: translate3d(0%, 0%, 0);
  966. }
  967. }
  968. .up-out {
  969. -webkit-animation: up-outAnimation 300ms forwards;
  970. animation: up-outAnimation 300ms forwards;
  971. }
  972. @-webkit-keyframes up-outAnimation {
  973. 0% {
  974. -webkit-transform: translate3d(0%, 0, 0);
  975. }
  976. 100% {
  977. -webkit-transform: translate3d(0%, -200px, 0);
  978. }
  979. }
  980. @keyframes up-outAnimation {
  981. 0% {
  982. transform: translate3d(0%, 0, 0);
  983. }
  984. 100% {
  985. transform: translate3d(0%, -200px, 0);
  986. }
  987. }
  988. .up-out.animation-reverse {
  989. -webkit-animation: up-outAnimationReverse 450ms forwards;
  990. animation: up-outAnimationReverse 450ms forwards;
  991. }
  992. @-webkit-keyframes up-outAnimationReverse {
  993. 100% {
  994. -webkit-transform: translate3d(0%, 0, 0);
  995. }
  996. 0% {
  997. -webkit-transform: translate3d(0%, -200px, 0);
  998. }
  999. }
  1000. @keyframes up-outAnimationReverse {
  1001. 100% {
  1002. transform: translate3d(0%, 0, 0);
  1003. }
  1004. 0% {
  1005. transform: translate3d(0%, -200px, 0);
  1006. }
  1007. }
  1008. .down-in {
  1009. -webkit-animation: down-inAnimation 300ms forwards;
  1010. animation: down-inAnimation 300ms forwards;
  1011. }
  1012. @-webkit-keyframes down-inAnimation {
  1013. 0% {
  1014. -webkit-transform: translate3d(0%, -100%, 0);
  1015. }
  1016. 100% {
  1017. -webkit-transform: translate3d(0%, 0%, 0);
  1018. }
  1019. }
  1020. @keyframes down-inAnimation {
  1021. 0% {
  1022. transform: translate3d(0%, -100%, 0);
  1023. }
  1024. 100% {
  1025. transform: translate3d(0%, 0%, 0);
  1026. }
  1027. }
  1028. .down-in.animation-reverse {
  1029. -webkit-animation: down-inAnimationReverse 450ms forwards;
  1030. animation: down-inAnimationReverse 450ms forwards;
  1031. }
  1032. @-webkit-keyframes down-inAnimationReverse {
  1033. 100% {
  1034. -webkit-transform: translate3d(0%, -100%, 0);
  1035. }
  1036. 0% {
  1037. -webkit-transform: translate3d(0%, 0%, 0);
  1038. }
  1039. }
  1040. @keyframes down-inAnimationReverse {
  1041. 100% {
  1042. transform: translate3d(0%, -100%, 0);
  1043. }
  1044. 0% {
  1045. transform: translate3d(0%, 0%, 0);
  1046. }
  1047. }
  1048. .down-out {
  1049. -webkit-animation: down-outAnimation 300ms forwards;
  1050. animation: down-outAnimation 300ms forwards;
  1051. }
  1052. @-webkit-keyframes down-outAnimation {
  1053. 0% {
  1054. -webkit-transform: translate3d(0%, 0%, 0);
  1055. }
  1056. 100% {
  1057. -webkit-transform: translate3d(0%, 200px, 0);
  1058. }
  1059. }
  1060. @keyframes down-outAnimation {
  1061. 0% {
  1062. transform: translate3d(0%, 0%, 0);
  1063. }
  1064. 100% {
  1065. transform: translate3d(0%, 200px, 0);
  1066. }
  1067. }
  1068. .down-out.animation-reverse {
  1069. -webkit-animation: down-outAnimationReverse 450ms forwards;
  1070. animation: down-outAnimationReverse 450ms forwards;
  1071. }
  1072. @-webkit-keyframes down-outAnimationReverse {
  1073. 100% {
  1074. -webkit-transform: translate3d(0%, 0%, 0);
  1075. }
  1076. 0% {
  1077. -webkit-transform: translate3d(0%, 200px, 0);
  1078. }
  1079. }
  1080. @keyframes down-outAnimationReverse {
  1081. 100% {
  1082. transform: translate3d(0%, 0%, 0);
  1083. }
  1084. 0% {
  1085. transform: translate3d(0%, 200px, 0);
  1086. }
  1087. }
  1088. .flip-in {
  1089. -webkit-animation: flip-inAnimation 300ms forwards;
  1090. animation: flip-inAnimation 300ms forwards;
  1091. z-index: 5;
  1092. backface-visibility: hidden;
  1093. -webkit-backface-visibility: hidden;
  1094. }
  1095. @-webkit-keyframes flip-inAnimation {
  1096. 0% {
  1097. -webkit-transform: rotateY(180deg);
  1098. }
  1099. 100% {
  1100. -webkit-transform: rotateY(0deg);
  1101. }
  1102. }
  1103. @keyframes flip-inAnimation {
  1104. 0% {
  1105. transform: rotateY(180deg);
  1106. }
  1107. 100% {
  1108. transform: rotateY(0deg);
  1109. }
  1110. }
  1111. .flip-in.animation-reverse {
  1112. -webkit-animation: flip-inAnimationReverse 450ms forwards;
  1113. animation: flip-inAnimationReverse 450ms forwards;
  1114. }
  1115. @-webkit-keyframes flip-inAnimationReverse {
  1116. 100% {
  1117. -webkit-transform: rotateY(180deg);
  1118. }
  1119. 0% {
  1120. -webkit-transform: rotateY(0deg);
  1121. }
  1122. }
  1123. @keyframes flip-inAnimationReverse {
  1124. 100% {
  1125. transform: rotateY(180deg);
  1126. }
  1127. 0% {
  1128. transform: rotateY(0deg);
  1129. }
  1130. }
  1131. .flip-out {
  1132. -webkit-animation: flip-outAnimation 300ms forwards;
  1133. animation: flip-outAnimation 300ms forwards;
  1134. z-index: 4;
  1135. backface-visibility: hidden;
  1136. -webkit-backface-visibility: hidden;
  1137. }
  1138. @-webkit-keyframes flip-outAnimation {
  1139. 0% {
  1140. -webkit-transform: rotateY(0deg);
  1141. }
  1142. 100% {
  1143. -webkit-transform: rotateY(180deg);
  1144. }
  1145. }
  1146. @keyframes flip-outAnimation {
  1147. 0% {
  1148. transform: rotateY(0deg);
  1149. }
  1150. 100% {
  1151. transform: rotateY(180deg);
  1152. }
  1153. }
  1154. .flip-out.animation-reverse {
  1155. -webkit-animation: flip-outAnimationReverse 450ms forwards;
  1156. animation: flip-outAnimationReverse 450ms forwards;
  1157. }
  1158. @-webkit-keyframes flip-outAnimationReverse {
  1159. 100% {
  1160. -webkit-transform: rotateY(0deg);
  1161. }
  1162. 0% {
  1163. -webkit-transform: rotateY(180deg);
  1164. }
  1165. }
  1166. @keyframes flip-outAnimationReverse {
  1167. 100% {
  1168. transform: rotateY(0deg);
  1169. }
  1170. 0% {
  1171. transform: rotateY(180deg);
  1172. }
  1173. }
  1174. .slide-left-in {
  1175. -webkit-animation: slide-left-inAnimation 300ms forwards;
  1176. animation: slide-left-inAnimation 300ms forwards;
  1177. }
  1178. @-webkit-keyframes slide-left-inAnimation {
  1179. 0% {
  1180. -webkit-transform: translate3d(-100%, 0, 0);
  1181. }
  1182. 100% {
  1183. -webkit-transform: translate3d(0, 0, 0);
  1184. }
  1185. }
  1186. @keyframes slide-left-inAnimation {
  1187. 0% {
  1188. transform: translate3d(-100%, 0, 0);
  1189. }
  1190. 100% {
  1191. transform: translate3d(0, 0, 0);
  1192. }
  1193. }
  1194. .slide-left-in.animation-reverse {
  1195. -webkit-animation: slide-left-inAnimationReverse 450ms forwards;
  1196. animation: slide-left-inAnimationReverse 450ms forwards;
  1197. }
  1198. @-webkit-keyframes slide-left-inAnimationReverse {
  1199. 100% {
  1200. -webkit-transform: translate3d(-100%, 0, 0);
  1201. }
  1202. 0% {
  1203. -webkit-transform: translate3d(0, 0, 0);
  1204. }
  1205. }
  1206. @keyframes slide-left-inAnimationReverse {
  1207. 100% {
  1208. transform: translate3d(-100%, 0, 0);
  1209. }
  1210. 0% {
  1211. transform: translate3d(0, 0, 0);
  1212. }
  1213. }
  1214. .slide-left-out {
  1215. -webkit-animation: slide-left-outAnimation 300ms forwards;
  1216. animation: slide-left-outAnimation 300ms forwards;
  1217. }
  1218. @-webkit-keyframes slide-left-outAnimation {
  1219. 0% {
  1220. -webkit-transform: translate3d(0%, 0, 0);
  1221. }
  1222. 100% {
  1223. -webkit-transform: translate3d(200px, 0, 0);
  1224. }
  1225. }
  1226. @keyframes slide-left-outAnimation {
  1227. 0% {
  1228. transform: translate3d(0%, 0, 0);
  1229. }
  1230. 100% {
  1231. transform: translate3d(200px, 0, 0);
  1232. }
  1233. }
  1234. .slide-left-out.animation-reverse {
  1235. -webkit-animation: slide-left-outAnimationReverse 450ms forwards;
  1236. animation: slide-left-outAnimationReverse 450ms forwards;
  1237. }
  1238. @-webkit-keyframes slide-left-outAnimationReverse {
  1239. 100% {
  1240. -webkit-transform: translate3d(0%, 0, 0);
  1241. }
  1242. 0% {
  1243. -webkit-transform: translate3d(200px, 0, 0);
  1244. }
  1245. }
  1246. @keyframes slide-left-outAnimationReverse {
  1247. 100% {
  1248. transform: translate3d(0%, 0, 0);
  1249. }
  1250. 0% {
  1251. transform: translate3d(200px, 0, 0);
  1252. }
  1253. }
  1254. .slide-right-in {
  1255. -webkit-animation: slide-right-inAnimation 300ms forwards;
  1256. animation: slide-right-inAnimation 300ms forwards;
  1257. }
  1258. @-webkit-keyframes slide-right-inAnimation {
  1259. 0% {
  1260. -webkit-transform: translate3d(100%, 0, 0);
  1261. }
  1262. 100% {
  1263. -webkit-transform: translate3d(0, 0, 0);
  1264. }
  1265. }
  1266. @keyframes slide-right-inAnimation {
  1267. 0% {
  1268. transform: translate3d(100%, 0, 0);
  1269. }
  1270. 100% {
  1271. transform: translate3d(0, 0, 0);
  1272. }
  1273. }
  1274. .slide-right-in.animation-reverse {
  1275. -webkit-animation: slide-right-inAnimationReverse 450ms forwards;
  1276. animation: slide-right-inAnimationReverse 450ms forwards;
  1277. }
  1278. @-webkit-keyframes slide-right-inAnimationReverse {
  1279. 100% {
  1280. -webkit-transform: translate3d(100%, 0, 0);
  1281. }
  1282. 0% {
  1283. -webkit-transform: translate3d(0, 0, 0);
  1284. }
  1285. }
  1286. @keyframes slide-right-inAnimationReverse {
  1287. 100% {
  1288. transform: translate3d(100%, 0, 0);
  1289. }
  1290. 0% {
  1291. transform: translate3d(0, 0, 0);
  1292. }
  1293. }
  1294. .slide-right-out {
  1295. -webkit-animation: slide-right-outAnimation 300ms forwards;
  1296. animation: slide-right-outAnimation 300ms forwards;
  1297. }
  1298. @-webkit-keyframes slide-right-outAnimation {
  1299. 0% {
  1300. -webkit-transform: translate3d(0%, 0, 0);
  1301. }
  1302. 100% {
  1303. -webkit-transform: translate3d(-200px, 0, 0);
  1304. }
  1305. }
  1306. @keyframes slide-right-outAnimation {
  1307. 0% {
  1308. transform: translate3d(0%, 0, 0);
  1309. }
  1310. 100% {
  1311. transform: translate3d(-200px, 0, 0);
  1312. }
  1313. }
  1314. .slide-right-out.animation-reverse {
  1315. -webkit-animation: slide-right-outAnimationReverse 450ms forwards;
  1316. animation: slide-right-outAnimationReverse 450ms forwards;
  1317. }
  1318. @-webkit-keyframes slide-right-outAnimationReverse {
  1319. 100% {
  1320. -webkit-transform: translate3d(0%, 0, 0);
  1321. }
  1322. 0% {
  1323. -webkit-transform: translate3d(-200px, 0, 0);
  1324. }
  1325. }
  1326. @keyframes slide-right-outAnimationReverse {
  1327. 100% {
  1328. transform: translate3d(0%, 0, 0);
  1329. }
  1330. 0% {
  1331. transform: translate3d(-200px, 0, 0);
  1332. }
  1333. }
  1334. .invoke-out {
  1335. -webkit-animation: invoke-outAnimation 500ms forwards;
  1336. animation: invoke-outAnimation 500ms forwards;
  1337. z-index: 11;
  1338. }
  1339. @-webkit-keyframes invoke-outAnimation {
  1340. 0% {
  1341. -webkit-transform: scale(1) translate3d(0%, 0, 0);
  1342. }
  1343. 50% {
  1344. -webkit-transform: scale(0.8) translate3d(10%, 0, 0);
  1345. }
  1346. 100% {
  1347. -webkit-transform: scale(0.8) translate3d(100%, 0, 0);
  1348. }
  1349. }
  1350. @keyframes invoke-outAnimation {
  1351. 0% {
  1352. transform: scale(1) translate3d(0%, 0, 0);
  1353. }
  1354. 50% {
  1355. transform: scale(0.8) translate3d(10%, 0, 0);
  1356. }
  1357. 100% {
  1358. transform: scale(0.8) translate3d(100%, 0, 0);
  1359. }
  1360. }
  1361. .invoke-out.animation-reverse {
  1362. -webkit-animation: invoke-outAnimationReverse 750ms forwards;
  1363. animation: invoke-outAnimationReverse 750ms forwards;
  1364. }
  1365. @-webkit-keyframes invoke-outAnimationReverse {
  1366. 100% {
  1367. -webkit-transform: scale(1) translate3d(0%, 0, 0);
  1368. }
  1369. 50% {
  1370. -webkit-transform: scale(0.8) translate3d(10%, 0, 0);
  1371. }
  1372. 0% {
  1373. -webkit-transform: scale(0.8) translate3d(100%, 0, 0);
  1374. }
  1375. }
  1376. @keyframes invoke-outAnimationReverse {
  1377. 100% {
  1378. transform: scale(1) translate3d(0%, 0, 0);
  1379. }
  1380. 50% {
  1381. transform: scale(0.8) translate3d(10%, 0, 0);
  1382. }
  1383. 0% {
  1384. transform: scale(0.8) translate3d(100%, 0, 0);
  1385. }
  1386. }
  1387. .invoke-in {
  1388. -webkit-animation: invoke-inAnimation 500ms forwards;
  1389. animation: invoke-inAnimation 500ms forwards;
  1390. z-index: 10;
  1391. }
  1392. @-webkit-keyframes invoke-inAnimation {
  1393. 0% {
  1394. -webkit-transform: scale(0.6) translate3d(-130%, 0, 0);
  1395. }
  1396. 50% {
  1397. -webkit-transform: scale(0.8) translate3d(-110%, 0, 0);
  1398. }
  1399. 100% {
  1400. -webkit-transform: scale(1) translate3d(0, 0, 0);
  1401. }
  1402. }
  1403. @keyframes invoke-inAnimation {
  1404. 0% {
  1405. transform: scale(0.6) translate3d(-130%, 0, 0);
  1406. }
  1407. 50% {
  1408. transform: scale(0.8) translate3d(-110%, 0, 0);
  1409. }
  1410. 100% {
  1411. transform: scale(1) translate3d(0, 0, 0);
  1412. }
  1413. }
  1414. .invoke-in.animation-reverse {
  1415. -webkit-animation: invoke-inAnimationReverse 750ms forwards;
  1416. animation: invoke-inAnimationReverse 750ms forwards;
  1417. }
  1418. @-webkit-keyframes invoke-inAnimationReverse {
  1419. 100% {
  1420. -webkit-transform: scale(0.6) translate3d(-130%, 0, 0);
  1421. }
  1422. 50% {
  1423. -webkit-transform: scale(0.8) translate3d(-110%, 0, 0);
  1424. }
  1425. 0% {
  1426. -webkit-transform: scale(1) translate3d(0, 0, 0);
  1427. }
  1428. }
  1429. @keyframes invoke-inAnimationReverse {
  1430. 100% {
  1431. transform: scale(0.6) translate3d(-130%, 0, 0);
  1432. }
  1433. 50% {
  1434. transform: scale(0.8) translate3d(-110%, 0, 0);
  1435. }
  1436. 0% {
  1437. transform: scale(1) translate3d(0, 0, 0);
  1438. }
  1439. }
  1440. .header-load {
  1441. -webkit-animation: header-loadAnimation 300ms forwards;
  1442. animation: header-loadAnimation 300ms forwards;
  1443. }
  1444. @-webkit-keyframes header-loadAnimation {
  1445. 0% {
  1446. -webkit-transform: translate3d(0%, 0, 0);
  1447. }
  1448. 100% {
  1449. -webkit-transform: translate3d(-90px, 0, 0);
  1450. opacity: 0.1;
  1451. }
  1452. }
  1453. @keyframes header-loadAnimation {
  1454. 0% {
  1455. transform: translate3d(0%, 0, 0);
  1456. }
  1457. 100% {
  1458. transform: translate3d(-90px, 0, 0);
  1459. opacity: 0.1;
  1460. }
  1461. }
  1462. .header-load.animation-reverse {
  1463. -webkit-animation: header-loadAnimationReverse 450ms forwards;
  1464. animation: header-loadAnimationReverse 450ms forwards;
  1465. }
  1466. @-webkit-keyframes header-loadAnimationReverse {
  1467. 100% {
  1468. -webkit-transform: translate3d(0%, 0, 0);
  1469. }
  1470. 0% {
  1471. -webkit-transform: translate3d(-90px, 0, 0);
  1472. opacity: 0.1;
  1473. }
  1474. }
  1475. @keyframes header-loadAnimationReverse {
  1476. 100% {
  1477. transform: translate3d(0%, 0, 0);
  1478. }
  1479. 0% {
  1480. transform: translate3d(-90px, 0, 0);
  1481. opacity: 0.1;
  1482. }
  1483. }
  1484. .header-unload {
  1485. -webkit-animation: header-unloadAnimation 300ms forwards;
  1486. animation: header-unloadAnimation 300ms forwards;
  1487. }
  1488. @-webkit-keyframes header-unloadAnimation {
  1489. 0% {
  1490. -webkit-transform: translate3d(0%, 0, 0);
  1491. }
  1492. 100% {
  1493. -webkit-transform: translate3d(90px, 0, 0);
  1494. opacity: 0.1;
  1495. }
  1496. }
  1497. @keyframes header-unloadAnimation {
  1498. 0% {
  1499. transform: translate3d(0%, 0, 0);
  1500. }
  1501. 100% {
  1502. transform: translate3d(90px, 0, 0);
  1503. opacity: 0.1;
  1504. }
  1505. }
  1506. .header-unload.animation-reverse {
  1507. -webkit-animation: header-unloadAnimationReverse 450ms forwards;
  1508. animation: header-unloadAnimationReverse 450ms forwards;
  1509. }
  1510. @-webkit-keyframes header-unloadAnimationReverse {
  1511. 100% {
  1512. -webkit-transform: translate3d(0%, 0, 0);
  1513. }
  1514. 0% {
  1515. -webkit-transform: translate3d(90px, 0, 0);
  1516. opacity: 0.1;
  1517. }
  1518. }
  1519. @keyframes header-unloadAnimationReverse {
  1520. 100% {
  1521. transform: translate3d(0%, 0, 0);
  1522. }
  1523. 0% {
  1524. transform: translate3d(90px, 0, 0);
  1525. opacity: 0.1;
  1526. }
  1527. }
  1528. .header-load-to {
  1529. -webkit-animation: header-load-toAnimation 500ms forwards;
  1530. animation: header-load-toAnimation 500ms forwards;
  1531. }
  1532. @-webkit-keyframes header-load-toAnimation {
  1533. 0% {
  1534. -webkit-transform: translate3d(90px, 0, 0);
  1535. opacity: 0.1;
  1536. }
  1537. 100% {
  1538. -webkit-transform: translate3d(0%, 0, 0);
  1539. opacity: 1;
  1540. }
  1541. }
  1542. @keyframes header-load-toAnimation {
  1543. 0% {
  1544. transform: translate3d(90px, 0, 0);
  1545. opacity: 0.1;
  1546. }
  1547. 100% {
  1548. transform: translate3d(0%, 0, 0);
  1549. opacity: 1;
  1550. }
  1551. }
  1552. .header-load-to.animation-reverse {
  1553. -webkit-animation: header-load-toAnimationReverse 750ms forwards;
  1554. animation: header-load-toAnimationReverse 750ms forwards;
  1555. }
  1556. @-webkit-keyframes header-load-toAnimationReverse {
  1557. 100% {
  1558. -webkit-transform: translate3d(90px, 0, 0);
  1559. opacity: 0.1;
  1560. }
  1561. 0% {
  1562. -webkit-transform: translate3d(0%, 0, 0);
  1563. opacity: 1;
  1564. }
  1565. }
  1566. @keyframes header-load-toAnimationReverse {
  1567. 100% {
  1568. transform: translate3d(90px, 0, 0);
  1569. opacity: 0.1;
  1570. }
  1571. 0% {
  1572. transform: translate3d(0%, 0, 0);
  1573. opacity: 1;
  1574. }
  1575. }
  1576. .header-unload-to {
  1577. -webkit-animation: header-unload-toAnimation 500ms forwards;
  1578. animation: header-unload-toAnimation 500ms forwards;
  1579. }
  1580. @-webkit-keyframes header-unload-toAnimation {
  1581. 0% {
  1582. -webkit-transform: translate3d(-90px, 0, 0);
  1583. opacity: 0.1;
  1584. }
  1585. 100% {
  1586. -webkit-transform: translate3d(0%, 0, 0);
  1587. opacity: 1;
  1588. }
  1589. }
  1590. @keyframes header-unload-toAnimation {
  1591. 0% {
  1592. transform: translate3d(-90px, 0, 0);
  1593. opacity: 0.1;
  1594. }
  1595. 100% {
  1596. transform: translate3d(0%, 0, 0);
  1597. opacity: 1;
  1598. }
  1599. }
  1600. .header-unload-to.animation-reverse {
  1601. -webkit-animation: header-unload-toAnimationReverse 750ms forwards;
  1602. animation: header-unload-toAnimationReverse 750ms forwards;
  1603. }
  1604. @-webkit-keyframes header-unload-toAnimationReverse {
  1605. 100% {
  1606. -webkit-transform: translate3d(-90px, 0, 0);
  1607. opacity: 0.1;
  1608. }
  1609. 0% {
  1610. -webkit-transform: translate3d(0%, 0, 0);
  1611. opacity: 1;
  1612. }
  1613. }
  1614. @keyframes header-unload-toAnimationReverse {
  1615. 100% {
  1616. transform: translate3d(-90px, 0, 0);
  1617. opacity: 0.1;
  1618. }
  1619. 0% {
  1620. transform: translate3d(0%, 0, 0);
  1621. opacity: 1;
  1622. }
  1623. }
  1624. @-ms-viewport {
  1625. width: device-width;
  1626. }
  1627. body .afPopup {
  1628. border: solid 1px #33B5E5;
  1629. border-radius: 5px;
  1630. background: inherit;
  1631. color: inherit;
  1632. }
  1633. body .afPopup > FOOTER > A {
  1634. width: 120px;
  1635. }
  1636. body #af_actionsheet {
  1637. background: #0190d6;
  1638. color: inherit;
  1639. }
  1640. body #af_actionsheet a {
  1641. border-radius: 0;
  1642. color: black;
  1643. background: white;
  1644. border: none;
  1645. text-shadow: none;
  1646. }
  1647. .view header {
  1648. background: #0088d1;
  1649. border: none;
  1650. border-bottom: 1px solid #0088d1;
  1651. color: #ffffff;
  1652. }
  1653. .view header h1 {
  1654. text-shadow: none;
  1655. width: 45%;
  1656. }
  1657. .view header .backButton {
  1658. background: #f9f9f9;
  1659. color: #fff;
  1660. display: block;
  1661. line-height: 44px;
  1662. left: 25px;
  1663. text-overflow: ellipsis;
  1664. font-size: 14px;
  1665. padding: 0;
  1666. text-shadow: none;
  1667. background-color: transparent;
  1668. border: none;
  1669. border-color: transparent;
  1670. height: 44px;
  1671. top: 0;
  1672. border-radius: 0;
  1673. box-shadow: none;
  1674. margin: 0;
  1675. padding-left: 0;
  1676. text-align: center;
  1677. width: 50px;
  1678. padding: 0 !important;
  1679. margin: 0 !important;
  1680. position: absolute;
  1681. }
  1682. .view footer {
  1683. background: #0088d1;
  1684. border: none;
  1685. border-top: 1px solid #0088d1;
  1686. box-shadow: none;
  1687. }
  1688. .view footer > a {
  1689. color: #ffffff;
  1690. }
  1691. .view footer > a.pressed:not(.button) {
  1692. border-radius: 0;
  1693. background-color: #00AEEF;
  1694. }
  1695. .view footer > a.icon.pressed:not(.button):before {
  1696. color: inherit;
  1697. }
  1698. .backButton::before {
  1699. z-index: -1;
  1700. font-size: 22px;
  1701. position: absolute;
  1702. top: -2px;
  1703. left: -30px;
  1704. text-align: center;
  1705. border-radius: 0;
  1706. border: none;
  1707. border-color: transparent;
  1708. box-shadow: none;
  1709. -webkit-transform: none;
  1710. transform: none;
  1711. font-family: 'chevron';
  1712. speak: none;
  1713. font-style: normal;
  1714. font-weight: normal;
  1715. font-variant: normal;
  1716. text-transform: none;
  1717. line-height: 1;
  1718. -webkit-font-smoothing: antialiased;
  1719. content: "\f054";
  1720. -webkit-transform: rotate(180deg);
  1721. transform: rotate(180deg);
  1722. background-color: transparent;
  1723. padding: 12px;
  1724. }
  1725. .af-badge {
  1726. border: none;
  1727. box-shadow: none;
  1728. }
  1729. .list {
  1730. background: inherit;
  1731. color: inherit;
  1732. border-color: #303030;
  1733. font-weight: normal;
  1734. }
  1735. .list .divider {
  1736. color: black;
  1737. }
  1738. .list > li > a:after {
  1739. color: #0088D1;
  1740. }
  1741. .panel {
  1742. color: inherit;
  1743. background: inherit;
  1744. }
  1745. .panel h2 {
  1746. color: #0088D1;
  1747. }
  1748. .collapsed:after {
  1749. border-top: 6px solid;
  1750. }
  1751. .collapsed:before {
  1752. border: 2px solid;
  1753. }
  1754. .expanded:after {
  1755. border-bottom: 6px solid;
  1756. }
  1757. .expanded:before {
  1758. border: 2px solid;
  1759. }
  1760. .collapsed:before,
  1761. .expanded:before {
  1762. border-color: inherit;
  1763. }
  1764. .collapsed:after,
  1765. .expanded:after {
  1766. border-top-color: inherit;
  1767. }
  1768. select,
  1769. textarea,
  1770. input[type="text"],
  1771. input[type=search],
  1772. input[type="password"],
  1773. input[type="datetime"],
  1774. input[type="datetime-local"],
  1775. input[type="date"],
  1776. input[type="month"],
  1777. input[type="time"],
  1778. input[type="week"],
  1779. input[type="number"],
  1780. input[type="email"],
  1781. input[type="url"],
  1782. input[type="tel"],
  1783. input[type="color"],
  1784. .input-group {
  1785. background: inherit;
  1786. color: inherit;
  1787. }
  1788. input.toggle + label:after {
  1789. color: inherit;
  1790. }
  1791. input.toggle + label {
  1792. border-radius: 0;
  1793. }
  1794. input.toggle + label > span {
  1795. border-radius: 0;
  1796. top: 0;
  1797. width: 27px;
  1798. height: 23px;
  1799. }
  1800. label {
  1801. color: inherit;
  1802. }
  1803. input[type="radio"]:checked + label:before,
  1804. input[type="checkbox"]:checked + label:before {
  1805. background: #33B5E5;
  1806. }
  1807. .button {
  1808. border-radius: 0;
  1809. text-shadow: none;
  1810. }
  1811. .button.previous {
  1812. border: none;
  1813. }
  1814. .button.next {
  1815. border: none;
  1816. }
  1817. .button.previous::after {
  1818. color: black;
  1819. z-index: -1;
  1820. font-size: 22px;
  1821. position: absolute;
  1822. top: 2px;
  1823. left: -25px;
  1824. text-align: center;
  1825. border-radius: 0;
  1826. border: none;
  1827. border-color: transparent;
  1828. box-shadow: none;
  1829. -webkit-transform: none;
  1830. transform: none;
  1831. font-family: 'chevron';
  1832. speak: none;
  1833. font-style: normal;
  1834. font-weight: normal;
  1835. font-variant: normal;
  1836. text-transform: none;
  1837. line-height: 1;
  1838. -webkit-font-smoothing: antialiased;
  1839. content: "\f054";
  1840. -webkit-transform: rotate(180deg);
  1841. transform: rotate(180deg);
  1842. background-color: transparent;
  1843. }
  1844. .button.next::after {
  1845. color: black;
  1846. z-index: -1;
  1847. font-size: 22px;
  1848. position: absolute;
  1849. top: 6px;
  1850. right: -25px;
  1851. text-align: center;
  1852. border-radius: 0;
  1853. border: none;
  1854. border-color: transparent;
  1855. box-shadow: none;
  1856. -webkit-transform: none;
  1857. transform: none;
  1858. font-family: 'chevron';
  1859. speak: none;
  1860. font-style: normal;
  1861. font-weight: normal;
  1862. font-variant: normal;
  1863. text-transform: none;
  1864. line-height: 1;
  1865. -webkit-font-smoothing: antialiased;
  1866. content: "\f054";
  1867. background-color: transparent;
  1868. }
  1869. .af-badge {
  1870. position: absolute;
  1871. top: 2px;
  1872. right: 2px;
  1873. display: inline-block;
  1874. min-width: 20px;
  1875. max-width: 90%;
  1876. height: 20px;
  1877. padding: 0 3px;
  1878. background-color: red;
  1879. border-radius: 20px;
  1880. font-size: 12px;
  1881. line-height: 19px;
  1882. font-weight: bold;
  1883. color: #fff;
  1884. text-overflow: ellipsis;
  1885. text-align: center;
  1886. text-shadow: 0 -1px 0 rgba(64, 0, 0, 0.6);
  1887. }
  1888. .af-badge.br {
  1889. bottom: 2px;
  1890. right: 2px;
  1891. top: auto;
  1892. left: auto;
  1893. }
  1894. .af-badge.bl {
  1895. bottom: 2px;
  1896. left: 2px;
  1897. top: auto;
  1898. right: auto;
  1899. }
  1900. .af-badge.tl {
  1901. top: 2px;
  1902. left: 2px;
  1903. right: auto;
  1904. bottom: auto;
  1905. }
  1906. .bb {
  1907. font-family: "Slate Pro", Slate, "Myriad Pro", "BBAlpha Sans", Helvetica;
  1908. font-size: 12pt;
  1909. background: white;
  1910. color: black;
  1911. }
  1912. .bb .view header {
  1913. background: #00609E;
  1914. background: -ms-linear-gradient(65deg, #00609e 0%, #00afee 100%);
  1915. background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #00609e), color-stop(100%, #00afee));
  1916. background: -webkit-linear-gradient(65deg, #00609e 0%, #00afee 100%);
  1917. background: linear-gradient(65deg, #00609e 0%, #00afee 100%);
  1918. border-style: solid;
  1919. border-width: 1px;
  1920. border-color: #009CE1 transparent #004E92 transparent;
  1921. }
  1922. .bb .view header .backButton {
  1923. display: block;
  1924. position: absolute;
  1925. line-height: 70px;
  1926. left: 5px;
  1927. text-overflow: ellipsis;
  1928. font-size: 10px;
  1929. padding: 0;
  1930. color: #fff;
  1931. text-shadow: none;
  1932. background-color: transparent;
  1933. border: none;
  1934. border-color: transparent;
  1935. height: 44px;
  1936. top: 0;
  1937. border-radius: 0;
  1938. box-shadow: none;
  1939. margin: 0;
  1940. padding-left: 0;
  1941. text-align: center;
  1942. width: 50px;
  1943. padding: 0 !important;
  1944. margin: 0 !important;
  1945. }
  1946. .bb .view header .backButton::before {
  1947. z-index: -1;
  1948. font-size: 22px;
  1949. position: absolute;
  1950. left: 5px;
  1951. text-align: center;
  1952. border-radius: 0;
  1953. border: none;
  1954. border-color: transparent;
  1955. box-shadow: none;
  1956. -webkit-transform: none;
  1957. transform: none;
  1958. font-family: 'chevron';
  1959. speak: none;
  1960. font-style: normal;
  1961. font-weight: normal;
  1962. font-variant: normal;
  1963. text-transform: none;
  1964. line-height: 1;
  1965. -webkit-font-smoothing: antialiased;
  1966. content: "\f054";
  1967. top: -10px;
  1968. -webkit-transform: rotate(180deg);
  1969. transform: rotate(180deg);
  1970. background-color: transparent;
  1971. }
  1972. .bb .view header .backButton::after {
  1973. z-index: -1;
  1974. font-size: 24px;
  1975. content: ' ';
  1976. position: absolute;
  1977. font-weight: bold;
  1978. background-color: transparent;
  1979. left: 55px;
  1980. height: 48px;
  1981. top: -5px;
  1982. width: 2px;
  1983. background: #0aa9dc;
  1984. margin: auto;
  1985. text-align: center;
  1986. border-radius: 0;
  1987. border: none;
  1988. border-color: transparent;
  1989. box-shadow: none;
  1990. -webkit-transform: rotate(10deg);
  1991. transform: rotate(10deg);
  1992. }
  1993. .bb .view header .button-grouped > .button.pressed {
  1994. background: #07a;
  1995. }
  1996. .bb .view footer {
  1997. border: none;
  1998. border-radius: 0px;
  1999. background: black;
  2000. padding: 0;
  2001. -webkit-box-shadow: none;
  2002. box-shadow: none;
  2003. }
  2004. .bb .view footer > a:not(.button) {
  2005. height: 49px;
  2006. top: 0px;
  2007. border-top: 4px solid #000;
  2008. background: #1e1e1e;
  2009. }
  2010. .bb .view footer > a.pressed:not(.button) {
  2011. border: 0px;
  2012. border-top: 4px solid #0aa9dc;
  2013. border-radius: 0px;
  2014. background: #3a3a3a;
  2015. color: white;
  2016. }
  2017. .bb .view footer > a:not(:last-of-type):not(.pressed):not(.button) {
  2018. border-right: 1px solid black;
  2019. }
  2020. .bb .view footer > a.icon.pressed:not(.button):before {
  2021. color: white;
  2022. }
  2023. .bb .view .panel {
  2024. background: #fff;
  2025. }
  2026. .bb view header h1 {
  2027. text-shadow: rgba(0, 0, 0, 0.8) 0 1px 0;
  2028. font-weight: normal;
  2029. }
  2030. .bb view header .button {
  2031. color: #fff;
  2032. background: none;
  2033. text-shadow: 0 -1px 0 #333333;
  2034. border-color: transparent;
  2035. }
  2036. .bb .list {
  2037. font-weight: normal;
  2038. }
  2039. .bb .afPopup {
  2040. border: solid 1px #ccc;
  2041. border-radius: 3px;
  2042. background: inherit;
  2043. color: inherit;
  2044. padding: 0;
  2045. }
  2046. .bb .afPopup > header {
  2047. font-weight: normal;
  2048. font-size: 20px;
  2049. text-align: center;
  2050. margin: 0;
  2051. padding: 8px;
  2052. color: white;
  2053. border-radius: 2px;
  2054. background: #00609E;
  2055. background: -ms-linear-gradient(65deg, #00609e 0%, #00afee 100%);
  2056. background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #00609e), color-stop(100%, #00afee));
  2057. background: -webkit-linear-gradient(65deg, #00609e 0%, #00afee 100%);
  2058. background: linear-gradient(65deg, #00609e 0%, #00afee 100%);
  2059. }
  2060. .bb .afPopup > div {
  2061. text-align: center;
  2062. padding: 10px;
  2063. }
  2064. .bb .afPopup > footer {
  2065. padding: 5px;
  2066. }
  2067. .bb .afPopup > footer > a#cancel {
  2068. width: 120px;
  2069. }
  2070. .bb .afPopup > footer > a#action {
  2071. width: 120px;
  2072. }
  2073. .bb #af_actionsheet {
  2074. background: white;
  2075. color: inherit;
  2076. }
  2077. .bb #af_actionsheet a {
  2078. border-radius: 5px;
  2079. border: 1px solid #ccc;
  2080. background: #eee;
  2081. color: #111;
  2082. }
  2083. .bb .button,
  2084. .bb .button-grouped *,
  2085. .bb .button-grouped > .button:first-child,
  2086. .bb .button-grouped.vertical *,
  2087. .bb .button-grouped.vertical > .button:last-child,
  2088. .bb > .header .button-grouped > .button {
  2089. border-color: #ccc;
  2090. }
  2091. .button {
  2092. position: relative;
  2093. display: inline-block;
  2094. padding: 8px 12px;
  2095. margin: 8px 0;
  2096. font-weight: bold;
  2097. color: #000;
  2098. text-align: center;
  2099. vertical-align: top;
  2100. cursor: pointer;
  2101. background-color: #eee;
  2102. border: 1px solid #666;
  2103. text-decoration: none;
  2104. z-index: 2;
  2105. }
  2106. .button.pressed {
  2107. background: #fff;
  2108. }
  2109. .button.previous {
  2110. margin-left: 16px;
  2111. padding-left: 6px;
  2112. border-color: #666 #666 transparent transparent !important;
  2113. }
  2114. .button.next {
  2115. border-color: #666 transparent #666 #666 !important;
  2116. margin-right: 16px;
  2117. padding-right: 6px;
  2118. }
  2119. .button.previous::after {
  2120. z-index: -1;
  2121. content: '';
  2122. position: absolute;
  2123. width: 25px;
  2124. height: 27px;
  2125. background-color: inherit;
  2126. top: 3px;
  2127. left: -11px;
  2128. border-radius: 5px;
  2129. border: 1px solid;
  2130. border-color: transparent transparent inherit transparent;
  2131. -webkit-transform: rotate(45deg);
  2132. transform: rotate(45deg);
  2133. }
  2134. .button.next::after {
  2135. z-index: -1;
  2136. content: '';
  2137. position: absolute;
  2138. width: 25px;
  2139. height: 27px;
  2140. background-color: inherit;
  2141. top: 3px;
  2142. right: -11px;
  2143. border-radius: 5px;
  2144. border: 1px solid;
  2145. border-color: transparent transparent transparent transparent;
  2146. -webkit-transform: rotate(45deg);
  2147. transform: rotate(45deg);
  2148. }
  2149. .button.block {
  2150. display: block;
  2151. }
  2152. .button.flat {
  2153. border-radius: 0;
  2154. box-shadow: none;
  2155. }
  2156. .header .button-grouped > .button {
  2157. margin: 0;
  2158. border-color: #fff;
  2159. }
  2160. .header .button {
  2161. color: #fff;
  2162. background: none;
  2163. border-color: transparent;
  2164. font-size: 12px;
  2165. padding: 7px;
  2166. height: 32px;
  2167. margin: 5px;
  2168. text-overflow: ellipsis;
  2169. white-space: nowrap;
  2170. }
  2171. .header .button.icon:before {
  2172. padding-left: 6px;
  2173. }
  2174. .button-grouped {
  2175. display: inline-block;
  2176. margin: 5px;
  2177. }
  2178. .button-grouped * {
  2179. border-radius: 0px;
  2180. float: left;
  2181. border-left: 0px solid transparent;
  2182. border-right: 1px solid #666;
  2183. border-bottom: 1px solid #666;
  2184. border-top: 1px solid #666;
  2185. margin: 0;
  2186. }
  2187. .button-grouped > .button:first-child {
  2188. border-left: 1px solid #666;
  2189. border-top-left-radius: 3px;
  2190. border-bottom-left-radius: 3px;
  2191. }
  2192. .button-grouped > .button:last-child {
  2193. border-top-right-radius: 3px;
  2194. border-bottom-right-radius: 3px;
  2195. }
  2196. .button-grouped.flex {
  2197. display: -webkit-box;
  2198. display: -moz-box;
  2199. display: -ms-flexbox;
  2200. display: -webkit-flex;
  2201. display: flex;
  2202. }
  2203. .button-grouped.flex > .button {
  2204. -webkit-box-flex: 1;
  2205. -moz-box-flex: 1 auto;
  2206. -webkit-flex: 1 auto;
  2207. -ms-flex: 1 auto;
  2208. flex: 1 auto;
  2209. white-space: nowrap;
  2210. overflow: hidden;
  2211. text-overflow: ellipsis;
  2212. }
  2213. .button-grouped.flex.vertical {
  2214. display: inline-block;
  2215. }
  2216. .button-grouped.vertical * {
  2217. border-radius: 0px;
  2218. display: block;
  2219. float: none;
  2220. width: 100%;
  2221. border-left: 1px solid #666;
  2222. border-right: 1px solid #666;
  2223. border-top: 1px solid #666;
  2224. border-bottom: 0px solid #666;
  2225. }
  2226. .button-grouped.vertical > .button:first-child {
  2227. border-top-left-radius: 3px;
  2228. border-top-right-radius: 3px;
  2229. border-bottom-left-radius: 0px;
  2230. border-bottom-right-radius: 0px;
  2231. }
  2232. .button-grouped.vertical > .button:last-child {
  2233. border-top-right-radius: 0px;
  2234. border-top-left-radius: 0px;
  2235. border-bottom-right-radius: 3px;
  2236. border-bottom-left-radius: 3px;
  2237. border-bottom: 1px solid #666;
  2238. }
  2239. .button.gray {
  2240. background: #999;
  2241. border-color: #666;
  2242. }
  2243. .button.yellow {
  2244. background-color: #F1C222;
  2245. border-color: #999;
  2246. }
  2247. .button.red {
  2248. color: #fff;
  2249. text-shadow: 0 -1px 0 #666666;
  2250. background: #B20000;
  2251. border-color: #666;
  2252. }
  2253. .button.green {
  2254. color: #fff;
  2255. text-shadow: 0 -1px 0 #666666;
  2256. background: #009C0C;
  2257. border-color: #666;
  2258. }
  2259. .button.orange {
  2260. color: #fff;
  2261. text-shadow: 0 -1px 0 #666666;
  2262. background-color: #FF8000;
  2263. border-color: #666;
  2264. }
  2265. .button.black {
  2266. color: #fff;
  2267. text-shadow: none;
  2268. background: #000;
  2269. border-color: #666;
  2270. }
  2271. .button.slate {
  2272. color: #fff;
  2273. text-shadow: 0 -1px 0 #000000;
  2274. background: #171F28;
  2275. border-color: #666;
  2276. }
  2277. .backButton {
  2278. text-overflow: ellipsis;
  2279. white-space: nowrap;
  2280. }
  2281. /* Bg #33B5E5/* Font header #C6C6C6* reg white-space:border 303030hover : #111*/
  2282. .firefox,
  2283. .firefox .view {
  2284. font: 14px 'Roboto', sans-serif;
  2285. background: #fff;
  2286. color: #000;
  2287. border-color: #000;
  2288. }
  2289. .firefox .view .panel {
  2290. color: #5E5E5E;
  2291. background: white;
  2292. }
  2293. .firefox .view .panel.light {
  2294. background: #FDFDFD;
  2295. color: #000;
  2296. }
  2297. .firefox .view header {
  2298. background: #F57E02;
  2299. color: #ffffff;
  2300. border-color: transparent;
  2301. height: 44px;
  2302. }
  2303. .firefox .view header h1 {
  2304. left: 23px;
  2305. text-align: left;
  2306. padding-left: 3px;
  2307. }
  2308. .firefox .view header .button {
  2309. color: white;
  2310. background: none;
  2311. font-size: 14px;
  2312. box-shadow: none;
  2313. }
  2314. .firefox .view header .backButton {
  2315. background: inherit;
  2316. color: inherit;
  2317. left: -60px;
  2318. }
  2319. .firefox .view header .backButton::before {
  2320. left: 54px;
  2321. }
  2322. .firefox .view header .menuButton {
  2323. right: 0px;
  2324. }
  2325. .firefox .view header .menuButton:after {
  2326. border-color: #AE5900;
  2327. }
  2328. .firefox .view footer {
  2329. box-shadow: none;
  2330. background: inherit;
  2331. color: inherit;
  2332. border-top: 1px solid #5E5E5E;
  2333. border-bottom: none;
  2334. padding: 0;
  2335. }
  2336. .firefox .view footer > a:not(.button) {
  2337. color: #5E5E5E;
  2338. padding-top: 3px;
  2339. }
  2340. .firefox .view footer > a.pressed:not(.button) {
  2341. border: 0px;
  2342. border-bottom: 4px solid #33B5E5;
  2343. border-radius: 0px;
  2344. color: #00adcd;
  2345. background: none;
  2346. }
  2347. .firefox .view footer > a.icon.pressed:not(.button):before {
  2348. color: inherit;
  2349. }
  2350. .firefox .view footer > a.icon:not(.button):before {
  2351. font-size: 21px;
  2352. }
  2353. .firefox .af-badge {
  2354. border: none;
  2355. }
  2356. .firefox .list {
  2357. background: inherit;
  2358. color: inherit;
  2359. border-color: #303030;
  2360. margin: 10px;
  2361. }
  2362. .firefox .list .divider {
  2363. color: black;
  2364. }
  2365. .firefox .panel h2 {
  2366. color: inherit;
  2367. }
  2368. .firefox .collapsed:after {
  2369. border-top: 6px solid;
  2370. }
  2371. .firefox .collapsed:before {
  2372. border: 2px solid;
  2373. }
  2374. .firefox .expanded:after {
  2375. border-bottom: 6px solid;
  2376. }
  2377. .firefox .expanded:before {
  2378. border: 2px solid;
  2379. }
  2380. .firefox label {
  2381. color: inherit;
  2382. }
  2383. .firefox input.toggle:checked + label {
  2384. background: #00CAF2;
  2385. }
  2386. .firefox .button {
  2387. border-radius: 0;
  2388. background: #d4d4d4;
  2389. border-color: #A6A6A6;
  2390. color: inherit;
  2391. text-shadow: none;
  2392. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
  2393. }
  2394. .firefox .button[disabled="disabled"] {
  2395. opacity: 0.6;
  2396. }
  2397. .firefox .button.previous::after {
  2398. width: 20px;
  2399. height: 20px;
  2400. background-color: inherit;
  2401. top: 5px;
  2402. left: -12px;
  2403. border-radius: 0;
  2404. box-shadow: none;
  2405. border-color: transparent;
  2406. }
  2407. .firefox .button.next::after {
  2408. width: 20px;
  2409. height: 20px;
  2410. background-color: inherit;
  2411. top: 5px;
  2412. right: -12px;
  2413. border-radius: 0;
  2414. box-shadow: none;
  2415. border-color: transparent;
  2416. }
  2417. .firefox header .button-grouped > .button {
  2418. border-color: #777;
  2419. }
  2420. .firefox .button-grouped * {
  2421. border: 1px solid rgba(255, 255, 255, 0.25);
  2422. border-left-width: 0;
  2423. box-shadow: none;
  2424. }
  2425. .firefox .button-grouped.vertical * {
  2426. border-left: 1px solid rgba(255, 255, 255, 0.25);
  2427. border-bottom-width: 0;
  2428. }
  2429. .firefox .button-grouped.vertical .button:last-child {
  2430. border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  2431. }
  2432. .firefox .afPopup {
  2433. border: solid 1px #aaa;
  2434. padding: 0;
  2435. border-radius: 0;
  2436. -webkit-transform: none;
  2437. transform: none;
  2438. -webkit-transition: none;
  2439. transition: none;
  2440. background: inherit;
  2441. background-color: #373737;
  2442. color: white;
  2443. position: absolute;
  2444. top: 0px !important;
  2445. right: 0px !important;
  2446. bottom: 0px !important;
  2447. left: 0px !important;
  2448. width: 100%;
  2449. }
  2450. .firefox .afPopup > HEADER {
  2451. font-weight: normal;
  2452. font-size: 20px;
  2453. text-align: left;
  2454. margin: 10px 20px;
  2455. margin-top: 140px;
  2456. }
  2457. .firefox .afPopup > DIV {
  2458. font-size: 20px;
  2459. text-align: left;
  2460. padding: 10px;
  2461. margin: 10px 15px;
  2462. border-top: solid 1px #aaa;
  2463. }
  2464. .firefox .afPopup > FOOTER {
  2465. height: 70px;
  2466. position: absolute;
  2467. bottom: 0px;
  2468. background: #2A2A2A;
  2469. }
  2470. .firefox .afPopup > FOOTER > A#cancel {
  2471. margin-left: 10px;
  2472. width: 140px;
  2473. background: #EB3020;
  2474. color: white;
  2475. }
  2476. .firefox .afPopup > FOOTER > A#action {
  2477. margin-right: 10px;
  2478. background: #D8D8D8;
  2479. }
  2480. .firefox #af_actionsheet {
  2481. border: #2c2c2c 1px solid;
  2482. border-top: #2c2c2c 3px solid;
  2483. background: #2c2c2c;
  2484. color: inherit;
  2485. padding: 0px;
  2486. }
  2487. .firefox #af_actionsheet a {
  2488. border-radius: 0;
  2489. background: #424343;
  2490. color: white;
  2491. line-height: 50px;
  2492. margin-bottom: 1px;
  2493. margin: 10px 20px;
  2494. box-shadow: none;
  2495. text-align: left;
  2496. padding-left: 20px;
  2497. font-style: italic;
  2498. font-weight: normal;
  2499. }
  2500. .firefox #af_actionsheet a.cancel {
  2501. margin-bottom: 10px;
  2502. background: #f7f7f7;
  2503. color: black;
  2504. text-align: center;
  2505. padding: 0;
  2506. border-radius: 30px;
  2507. }
  2508. .firefox.light .view header .menuButton:after {
  2509. border-color: black;
  2510. }
  2511. .firefox.light .button {
  2512. background: #eee;
  2513. border-color: #D1D1D1;
  2514. }
  2515. .firefox.light .afPopup {
  2516. background-color: #373737;
  2517. }
  2518. .firefox.light #af_actionsheet {
  2519. border: #bbb 1px solid;
  2520. border-top: #33B5E5 3px solid;
  2521. background: #bbb;
  2522. }
  2523. .firefox.light #af_actionsheet a {
  2524. background: #fff;
  2525. }
  2526. .firefox .collapsed:before,
  2527. .firefox .expanded:before {
  2528. border-color: inherit;
  2529. }
  2530. .firefox .collapsed:after,
  2531. .firefox .expanded:after {
  2532. border-top-color: inherit;
  2533. }
  2534. .firefox select,
  2535. .firefox textarea,
  2536. .firefox input[type="text"],
  2537. .firefox input[type=search],
  2538. .firefox input[type="password"],
  2539. .firefox input[type="datetime"],
  2540. .firefox input[type="datetime-local"],
  2541. .firefox input[type="date"],
  2542. .firefox input[type="month"],
  2543. .firefox input[type="time"],
  2544. .firefox input[type="week"],
  2545. .firefox input[type="number"],
  2546. .firefox input[type="email"],
  2547. .firefox input[type="url"],
  2548. .firefox input[type="tel"],
  2549. .firefox input[type="color"],
  2550. .firefox .input-group {
  2551. background: inherit;
  2552. color: inherit;
  2553. border-radius: 0;
  2554. }
  2555. .firefox input[type="radio"]:not(.toggle):checked + label:before,
  2556. .firefox input[type="checkbox"]:not(.toggle):checked + label:before {
  2557. background: #00CAF2;
  2558. color: white;
  2559. border-color: #00CAF2;
  2560. }
  2561. .firefox .afPopup > FOOTER > A,
  2562. .firefox.light .afPopup > FOOTER > A {
  2563. background: #D8D8D8;
  2564. color: black;
  2565. border-radius: 30px;
  2566. height: 40px;
  2567. line-height: 22px;
  2568. margin-top: 15px;
  2569. font-size: 18px;
  2570. font-style: italic;
  2571. }
  2572. select,
  2573. textarea,
  2574. input[type="text"],
  2575. input[type=search],
  2576. input[type="password"],
  2577. input[type="datetime"],
  2578. input[type="datetime-local"],
  2579. input[type="date"],
  2580. input[type="month"],
  2581. input[type="time"],
  2582. input[type="week"],
  2583. input[type="number"],
  2584. input[type="email"],
  2585. input[type="url"],
  2586. input[type="tel"],
  2587. input[type="color"],
  2588. .input-group {
  2589. width: 100%;
  2590. height: 40px;
  2591. padding: 10px;
  2592. margin-bottom: 10px;
  2593. background: #fff;
  2594. border: 1px solid #ccc;
  2595. border-radius: 5px;
  2596. font-size: 14px;
  2597. font-weight: normal;
  2598. -webkit-appearance: none;
  2599. box-sizing: border-box;
  2600. }
  2601. form {
  2602. position: relative;
  2603. }
  2604. input[type="radio"],
  2605. input[type="checkbox"] {
  2606. display: none;
  2607. }
  2608. input[type="radio"] + label,
  2609. input[type="checkbox"] + label {
  2610. display: inline-block;
  2611. width: 60%;
  2612. float: right;
  2613. position: relative;
  2614. text-align: left;
  2615. padding: 13px 0 0 8px;
  2616. margin-top: 3px;
  2617. }
  2618. input[type="radio"]:not(.toggle) + label:before {
  2619. background-color: #fafafa;
  2620. border: 1px solid #cacece;
  2621. border-radius: 3px;
  2622. display: block;
  2623. position: absolute;
  2624. top: 8px;
  2625. left: -25px;
  2626. height: 28px;
  2627. width: 28px;
  2628. font-size: 13px;
  2629. text-align: center;
  2630. line-height: 28px;
  2631. content: " ";
  2632. }
  2633. input[type="radio"]:checked + label:before {
  2634. background-color: #1eb0e9;
  2635. -webkit-transition: background-color 150ms;
  2636. transition: background-color 150ms;
  2637. }
  2638. input[type="checkbox"] + label:before {
  2639. background-color: #fafafa;
  2640. border: 1px solid #cacece;
  2641. border-radius: 3px;
  2642. display: block;
  2643. position: absolute;
  2644. top: 8px;
  2645. left: -25px;
  2646. height: 28px;
  2647. width: 28px;
  2648. font-size: 13px;
  2649. text-align: center;
  2650. line-height: 28px;
  2651. content: " ";
  2652. }
  2653. input[type="checkbox"]:checked + label:before {
  2654. content: '\00a0\2714';
  2655. padding: 0px;
  2656. display: inline-block;
  2657. background-color: #1eb0e9;
  2658. -webkit-transition: background-color 150ms;
  2659. transition: background-color 150ms;
  2660. }
  2661. input[type="radio"]:after,
  2662. input[type="checkbox"]:after {
  2663. visibility: hidden;
  2664. display: block;
  2665. font-size: 0;
  2666. content: " ";
  2667. clear: both;
  2668. height: 0;
  2669. }
  2670. input[type="search"] {
  2671. border-radius: 20px;
  2672. }
  2673. label {
  2674. float: left;
  2675. width: 33%;
  2676. font-weight: normal;
  2677. font-size: 14px;
  2678. color: inherit;
  2679. text-align: right;
  2680. padding: 15px 18px;
  2681. }
  2682. label + select,
  2683. label + input[type="radio"],
  2684. label + input[type="checkbox"] label + textarea,
  2685. label + input[type="text"],
  2686. label + input[type=search],
  2687. label + input[type="password"],
  2688. label + input[type="datetime"],
  2689. label + input[type="datetime-local"],
  2690. label + input[type="date"],
  2691. label + input[type="month"],
  2692. label + input[type="time"],
  2693. label + input[type="week"],
  2694. label + input[type="number"],
  2695. label + input[type="email"],
  2696. label + input[type="url"],
  2697. label + input[type="tel"],
  2698. label + input[type="color"],
  2699. label + textarea {
  2700. width: 66%;
  2701. }
  2702. textarea {
  2703. height: auto;
  2704. }
  2705. .input-group {
  2706. width: auto;
  2707. height: auto;
  2708. padding: 12px;
  2709. overflow: hidden;
  2710. }
  2711. .input-group input:not([type='button']):not([type='submit']),
  2712. .input-group textarea,
  2713. .input-group select {
  2714. margin-bottom: 0;
  2715. background-color: transparent;
  2716. border: 0;
  2717. border-bottom: 1px solid #ccc;
  2718. border-radius: 0;
  2719. box-shadow: none;
  2720. }
  2721. .input-group input:not([type="submit"]):not([type="button"]):last-child,
  2722. .input-group textarea:last-child,
  2723. .input-group select:last-child {
  2724. border-bottom: none;
  2725. }
  2726. .input-group input[type=button],
  2727. .input-group input[type=submit] {
  2728. margin: 5px;
  2729. }
  2730. input.toggle + label:before,
  2731. input.toggle:checked + label:before {
  2732. content: attr(data-on);
  2733. position: absolute;
  2734. color: #fff;
  2735. left: 5px;
  2736. width: 42px;
  2737. text-align: left;
  2738. z-index: 3;
  2739. top: 0px;
  2740. overflow: hidden;
  2741. background-color: transparent;
  2742. border: none;
  2743. border-radius: 0px;
  2744. text-transform: uppercase;
  2745. display: none;
  2746. height: 30px;
  2747. line-height: 29px !important;
  2748. }
  2749. input.toggle:checked + label:before {
  2750. display: block;
  2751. }
  2752. input.toggle:checked + label:after {
  2753. display: none;
  2754. }
  2755. input.toggle:checked + label {
  2756. background: #1eb0e9;
  2757. line-height: -1em;
  2758. -webkit-transition: background 150ms;
  2759. transition: background 150ms;
  2760. }
  2761. input.toggle:checked + label > span {
  2762. transform: translate3d(37px, 0, 0);
  2763. -webkit-transform: translate3d(37px, 0, 0);
  2764. }
  2765. input.toggle + label:after {
  2766. content: attr(data-off);
  2767. position: absolute;
  2768. color: #505050;
  2769. width: 42px;
  2770. text-align: left;
  2771. z-index: 1;
  2772. top: 0px;
  2773. left: 30px;
  2774. overflow: hidden;
  2775. background-color: transparent;
  2776. border: none;
  2777. border-radius: 0px;
  2778. text-transform: uppercase;
  2779. height: 30px;
  2780. line-height: 29px;
  2781. }
  2782. input.toggle + label {
  2783. position: relative;
  2784. margin: 5px;
  2785. border-radius: 50px;
  2786. display: block;
  2787. height: 30px;
  2788. width: 65px;
  2789. border: 1px solid #ccc;
  2790. left: 33%;
  2791. float: none;
  2792. }
  2793. input.toggle + label > span {
  2794. display: block;
  2795. width: 29px;
  2796. height: 31px;
  2797. background: #ccc;
  2798. border-radius: 50px;
  2799. z-index: 5;
  2800. top: -2px;
  2801. left: 0px;
  2802. position: absolute;
  2803. transition: transform 100ms linear;
  2804. transform: translate3d(0, 0, 0);
  2805. -webkit-transform: translate3d(0, 0, 0);
  2806. -webkit-transition: -webkit-transform 100ms linear;
  2807. }
  2808. .formGroupHead {
  2809. font-size: 18px;
  2810. font-weight: bold;
  2811. color: inherit;
  2812. margin: 16px 0 8px;
  2813. }
  2814. input[type=button],
  2815. input[type=submit],
  2816. button {
  2817. font-size: inherit;
  2818. }
  2819. .grid {
  2820. width: 100%;
  2821. overflow: hidden;
  2822. }
  2823. .col2,
  2824. .col3,
  2825. .col1-3,
  2826. .col2-3 {
  2827. float: none;
  2828. width: 100%;
  2829. }
  2830. .grid:after {
  2831. content: '';
  2832. clear: both;
  2833. }
  2834. @media handheld, only screen and (min-width: 768px) {
  2835. .col2 {
  2836. width: 50%;
  2837. float: left;
  2838. }
  2839. .col3 {
  2840. width: 33.3%;
  2841. float: left;
  2842. }
  2843. .col1-3 {
  2844. width: 33.3%;
  2845. float: left;
  2846. }
  2847. .col2-3 {
  2848. width: 66.6%;
  2849. float: left;
  2850. }
  2851. }
  2852. @font-face {
  2853. font-family: 'IcoMoon';
  2854. src: url(data:application/x-font-woff;
  2855. charset=utf-8;
  2856. base64,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) format('woff'), url(data:application/x-font-ttf;
  2857. charset=utf-8;
  2858. base64,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) format('truetype');
  2859. font-weight: normal;
  2860. font-style: normal;
  2861. }
  2862. .icon:before {
  2863. font-family: 'IcoMoon';
  2864. speak: none;
  2865. font-style: normal;
  2866. font-weight: normal !important;
  2867. font-variant: normal;
  2868. text-transform: none;
  2869. line-height: 1;
  2870. color: inherit;
  2871. position: relative;
  2872. font-size: 1em;
  2873. left: -3px;
  2874. top: 2px;
  2875. }
  2876. li .icon:before {
  2877. position: relative;
  2878. width: 24px;
  2879. height: 100%;
  2880. top: 2px;
  2881. line-height: 0 !important;
  2882. margin-right: 4px;
  2883. }
  2884. .icon.mini:before {
  2885. font-size: .7em;
  2886. }
  2887. .icon.big:before {
  2888. font-size: 1.5em;
  2889. }
  2890. .icon.home:before {
  2891. content: "\5a";
  2892. }
  2893. .icon.pencil:before {
  2894. content: "\5b";
  2895. }
  2896. .icon.picture:before {
  2897. content: "\5c";
  2898. }
  2899. .icon.camera:before {
  2900. content: "\5d";
  2901. }
  2902. .icon.headset:before {
  2903. content: "\5e";
  2904. }
  2905. .icon.paper:before {
  2906. content: "\5f";
  2907. }
  2908. .icon.stack:before {
  2909. content: "\61";
  2910. }
  2911. .icon.folder:before {
  2912. content: "\60";
  2913. }
  2914. .icon.tag:before {
  2915. content: "\62";
  2916. }
  2917. .icon.basket:before {
  2918. content: "\63";
  2919. }
  2920. .icon.phone:before {
  2921. content: "\64";
  2922. }
  2923. .icon.mail:before {
  2924. content: "\65";
  2925. }
  2926. .icon.location:before {
  2927. content: "\66";
  2928. }
  2929. .icon.clock:before {
  2930. content: "\67";
  2931. }
  2932. .icon.calendar:before {
  2933. content: "\68";
  2934. }
  2935. .icon.message:before {
  2936. content: "\69";
  2937. }
  2938. .icon.chat:before {
  2939. content: "\6a";
  2940. }
  2941. .icon.user:before {
  2942. content: "\6b";
  2943. }
  2944. .icon.loading:before {
  2945. content: "\6c";
  2946. }
  2947. .icon.refresh:before {
  2948. content: "\6d";
  2949. }
  2950. .icon.magnifier:before {
  2951. content: "\6e";
  2952. }
  2953. .icon.key:before {
  2954. content: "\6f";
  2955. }
  2956. .icon.settings:before {
  2957. content: "\70";
  2958. }
  2959. .icon.graph:before {
  2960. content: "\71";
  2961. }
  2962. .icon.trash:before {
  2963. content: "\72";
  2964. }
  2965. .icon.download:before {
  2966. content: "\73";
  2967. }
  2968. .icon.upload:before {
  2969. content: "\74";
  2970. }
  2971. .icon.star:before {
  2972. content: "\75";
  2973. }
  2974. .icon.heart:before {
  2975. content: "\76";
  2976. }
  2977. .icon.warning:before {
  2978. content: "\77";
  2979. }
  2980. .icon.add:before {
  2981. content: "\78";
  2982. }
  2983. .icon.remove:before {
  2984. content: "\79";
  2985. }
  2986. .icon.question:before {
  2987. content: "\7a";
  2988. }
  2989. .icon.info:before {
  2990. content: "\7b";
  2991. }
  2992. .icon.error:before {
  2993. content: "\7c";
  2994. }
  2995. .icon.check:before {
  2996. content: "\7d";
  2997. }
  2998. .icon.minimize:before {
  2999. content: "\7e";
  3000. }
  3001. .icon.close:before {
  3002. content: "\e000";
  3003. }
  3004. .icon.up:before {
  3005. content: "\e001";
  3006. }
  3007. .icon.right:before {
  3008. content: "\e002";
  3009. }
  3010. .icon.down:before {
  3011. content: "\e003";
  3012. }
  3013. .icon.left:before {
  3014. content: "\e004";
  3015. }
  3016. .icon.html5:before {
  3017. content: "\e005";
  3018. }
  3019. .icon.css:before {
  3020. content: "\e006";
  3021. }
  3022. .icon.js:before {
  3023. content: "\e007";
  3024. }
  3025. .icon.lamp:before {
  3026. content: "\e008";
  3027. }
  3028. .icon.tools:before {
  3029. content: "\e009";
  3030. }
  3031. .icon.new:before {
  3032. content: "\e00a";
  3033. }
  3034. .icon.wifi:before {
  3035. content: "\e00b";
  3036. }
  3037. .icon.mic:before {
  3038. content: "\e00c";
  3039. }
  3040. .icon.database:before {
  3041. content: "\e00d";
  3042. }
  3043. .icon.bug:before {
  3044. content: "\e00e";
  3045. }
  3046. .icon.busy:before {
  3047. content: "\e00f";
  3048. }
  3049. .icon.target:before {
  3050. content: "\e010";
  3051. }
  3052. .icon.tv:before {
  3053. content: "\e011";
  3054. }
  3055. .icon.cloud:before {
  3056. content: "\e012";
  3057. }
  3058. .icon.pin:before {
  3059. content: "\e013";
  3060. }
  3061. .overlayStatusbar > .view {
  3062. padding-top: 20px;
  3063. }
  3064. .overlayStatusbar {
  3065. background: #f8f8f8;
  3066. }
  3067. .ios7 {
  3068. font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  3069. }
  3070. .ios7 .view header {
  3071. background: #f8f8f8;
  3072. color: inherit;
  3073. border: none;
  3074. border-bottom: 1px solid #c8c7cc;
  3075. }
  3076. .ios7 .view header .button {
  3077. color: #157dfb;
  3078. border-color: transparent;
  3079. font-size: 14px;
  3080. font-weight: normal;
  3081. }
  3082. .ios7 .view header h1 {
  3083. color: inherit;
  3084. text-shadow: none;
  3085. }
  3086. .ios7 .view header .backButton {
  3087. background: #f8f8f8;
  3088. color: #157dfb;
  3089. display: block;
  3090. position: absolute;
  3091. line-height: 44px;
  3092. left: 25px;
  3093. text-overflow: ellipsis;
  3094. font-size: 14px;
  3095. padding: 0;
  3096. text-shadow: none;
  3097. background-color: transparent;
  3098. border: none;
  3099. border-color: transparent;
  3100. height: 44px;
  3101. top: auto;
  3102. border-radius: 0;
  3103. box-shadow: none;
  3104. margin: 0;
  3105. padding-left: 0;
  3106. text-align: center;
  3107. width: 50px;
  3108. padding: 0 !important;
  3109. margin: 0 !important;
  3110. }
  3111. .ios7 .view footer {
  3112. background: #f8f8f8;
  3113. color: black;
  3114. border-top: 1px solid #c8c7cc;
  3115. box-shadow: none;
  3116. }
  3117. .ios7 .view footer > a:not(.button) {
  3118. color: #606060;
  3119. }
  3120. .ios7 .view footer > a.pressed:not(.button) {
  3121. border-radius: 0;
  3122. background: transparent;
  3123. }
  3124. .ios7 .panel {
  3125. background: #eeeeee;
  3126. }
  3127. .ios7 .panel h2 {
  3128. color: inherit;
  3129. }
  3130. .ios7 .menuButton:after {
  3131. border-color: #157dfb;
  3132. }
  3133. .ios7 .list {
  3134. font-weight: normal;
  3135. }
  3136. .ios7 .list li {
  3137. margin-left: 10px;
  3138. }
  3139. .ios7 .list > li > a:after {
  3140. color: #d9d9d9;
  3141. }
  3142. .ios7 .button {
  3143. background-color: transparent;
  3144. box-shadow: none;
  3145. border-radius: 5px;
  3146. border-color: #157dfb;
  3147. color: #157dfb;
  3148. text-shadow: none;
  3149. }
  3150. .ios7 .backButton::before {
  3151. z-index: -1;
  3152. font-size: 22px;
  3153. position: absolute;
  3154. left: -20px;
  3155. text-align: center;
  3156. border-radius: 0;
  3157. border: none;
  3158. border-color: transparent;
  3159. box-shadow: none;
  3160. -webkit-transform: none;
  3161. transform: none;
  3162. font-family: 'chevron';
  3163. speak: none;
  3164. font-style: normal;
  3165. font-weight: normal;
  3166. font-variant: normal;
  3167. text-transform: none;
  3168. line-height: 1;
  3169. -webkit-font-smoothing: antialiased;
  3170. content: "\f054";
  3171. -webkit-transform: rotate(180deg);
  3172. transform: rotate(180deg);
  3173. background-color: transparent;
  3174. }
  3175. .ios7 .backButton::after {
  3176. content: '';
  3177. width: 0;
  3178. height: 0;
  3179. border: none;
  3180. }
  3181. .ios7 .afPopup {
  3182. border: 1px solid #c8c7cc;
  3183. border-radius: 10px;
  3184. padding: 0px;
  3185. text-align: center;
  3186. color: inherit;
  3187. background: #f8f8f8;
  3188. }
  3189. .ios7 .afPopup > HEADER {
  3190. padding: 10px 0;
  3191. }
  3192. .ios7 .afPopup > DIV {
  3193. padding-bottom: 10px;
  3194. }
  3195. .ios7 .afPopup > FOOTER {
  3196. border-top: 1px solid #aaa;
  3197. }
  3198. .ios7 .afPopup > FOOTER > A.center {
  3199. width: 100%!important;
  3200. }
  3201. .ios7 .afPopup .button {
  3202. border: none;
  3203. width: 50%;
  3204. margin: 0;
  3205. background: transparent;
  3206. color: #157dfb;
  3207. padding: 12px 0;
  3208. border-radius: 0;
  3209. }
  3210. .ios7 .afPopup .button.pressed {
  3211. background: transparent;
  3212. }
  3213. .ios7 .afPopup a:not(:first-of-type) {
  3214. border-left: 1px solid #c8c7cc;
  3215. }
  3216. .ios7 .button.pressed {
  3217. font-weight: bold;
  3218. background: white;
  3219. }
  3220. .ios7 #af_actionsheet {
  3221. background-color: transparent;
  3222. color: black;
  3223. padding-left: 10px;
  3224. padding-right: 10px;
  3225. border-top: transparent 1px solid;
  3226. box-shadow: 0px -1px 2px rgba(0, 0, 0, 0);
  3227. }
  3228. .ios7 #af_actionsheet a:first-child {
  3229. border-top-left-radius: 5px;
  3230. border-top-right-radius: 5px;
  3231. }
  3232. .ios7 #af_actionsheet a:nth-last-child(2) {
  3233. border-bottom-left-radius: 5px;
  3234. border-bottom-right-radius: 5px;
  3235. }
  3236. .ios7 #af_actionsheet a.cancel {
  3237. font-weight: bold;
  3238. margin: 9px 0;
  3239. border-radius: 5px;
  3240. background-color: white;
  3241. color: #157dfb;
  3242. }
  3243. .ios7 #af_actionsheet a.red {
  3244. background-color: white;
  3245. color: red;
  3246. }
  3247. .ios7 .button.previous {
  3248. border: none;
  3249. }
  3250. .ios7 .button.next {
  3251. border: none;
  3252. }
  3253. .ios7 .button.previous::after {
  3254. color: #157dfb;
  3255. z-index: -1;
  3256. font-size: 22px;
  3257. position: absolute;
  3258. top: 2px;
  3259. left: -25px;
  3260. text-align: center;
  3261. border-radius: 0;
  3262. border: none;
  3263. border-color: transparent;
  3264. box-shadow: none;
  3265. -webkit-transform: none;
  3266. transform: none;
  3267. font-family: 'chevron';
  3268. speak: none;
  3269. font-style: normal;
  3270. font-weight: normal;
  3271. font-variant: normal;
  3272. text-transform: none;
  3273. line-height: 1;
  3274. -webkit-font-smoothing: antialiased;
  3275. content: "\f054";
  3276. -webkit-transform: rotate(180deg);
  3277. transform: rotate(180deg);
  3278. background-color: transparent;
  3279. }
  3280. .ios7 .button.next::after {
  3281. color: #157dfb;
  3282. z-index: -1;
  3283. font-size: 22px;
  3284. position: absolute;
  3285. top: 6px;
  3286. right: -25px;
  3287. text-align: center;
  3288. border-radius: 0;
  3289. border: none;
  3290. border-color: transparent;
  3291. box-shadow: none;
  3292. -webkit-transform: none;
  3293. transform: none;
  3294. font-family: 'chevron';
  3295. speak: none;
  3296. font-style: normal;
  3297. font-weight: normal;
  3298. font-variant: normal;
  3299. text-transform: none;
  3300. line-height: 1;
  3301. -webkit-font-smoothing: antialiased;
  3302. content: "\f054";
  3303. background-color: transparent;
  3304. }
  3305. .ios7 .button.gray {
  3306. color: #999;
  3307. background-color: transparent;
  3308. }
  3309. .ios7 .button.yellow {
  3310. color: #F1C222;
  3311. background-color: transparent;
  3312. }
  3313. .ios7 .button.red {
  3314. color: #b20000;
  3315. background-color: transparent;
  3316. }
  3317. .ios7 .button.green {
  3318. color: #009C0C;
  3319. background-color: transparent;
  3320. }
  3321. .ios7 .button.orange {
  3322. color: #FF8000;
  3323. background-color: transparent;
  3324. }
  3325. .ios7 .button.black {
  3326. color: black;
  3327. background-color: transparent;
  3328. }
  3329. .ios7 .button.slate {
  3330. color: #171F28;
  3331. background-color: transparent;
  3332. }
  3333. .ios7 .af-badge {
  3334. border: none;
  3335. box-shadow: none;
  3336. font-size: 12px;
  3337. }
  3338. .ios7 input[type="range"] {
  3339. -webkit-appearance: none;
  3340. background-color: #c7c7c7;
  3341. height: 2px;
  3342. position: relative;
  3343. top: -10px;
  3344. margin-top: 15px;
  3345. border-radius: 2px;
  3346. }
  3347. .ios7 input[type="range"]::-webkit-slider-thumb {
  3348. -webkit-appearance: none;
  3349. position: relative;
  3350. z-index: 1;
  3351. width: 25px;
  3352. height: 25px;
  3353. border-radius: 60px;
  3354. border: 1px solid #c7c7c7;
  3355. background: white;
  3356. }
  3357. .ios7 input.toggle:checked + label {
  3358. background: #4cd964;
  3359. line-height: -1em;
  3360. -webkit-transition: background 150ms;
  3361. transition: background 150ms;
  3362. }
  3363. .ios7 input.toggle:checked + label > span {
  3364. transform: translate3d(24px, 0, 0);
  3365. -webkit-transform: translate3d(24px, 0, 0);
  3366. }
  3367. .ios7 input.toggle + label:after {
  3368. content: '';
  3369. }
  3370. .ios7 input.toggle + label {
  3371. position: relative;
  3372. margin: 5px;
  3373. border-radius: 50px;
  3374. display: block;
  3375. height: 28px;
  3376. width: 50px;
  3377. border: 1px solid #c7c7c7;
  3378. left: 33%;
  3379. float: none;
  3380. }
  3381. .ios7 input.toggle + label > span {
  3382. background: white;
  3383. border: 1px solid #c7c7c7;
  3384. top: -1px;
  3385. left: -1px;
  3386. height: 29px;
  3387. }
  3388. .ios7 .button-grouped:not(.vertical) > .button:first-child {
  3389. border-top-left-radius: 6px;
  3390. border-bottom-left-radius: 6px;
  3391. }
  3392. .ios7 .button-grouped:not(.vertical) > .button:last-child {
  3393. border-top-right-radius: 6px;
  3394. border-bottom-right-radius: 6px;
  3395. }
  3396. .ios7 .button-grouped *,
  3397. .ios7 .button-grouped > .button:first-child,
  3398. .ios7 .button-grouped.vertical *,
  3399. .ios7 .button-grouped.vertical > .button:last-child,
  3400. .ios7 header .button-grouped > .button {
  3401. border-color: #157dfb;
  3402. }
  3403. .ios7 .button-grouped > .button {
  3404. border-radius: 0;
  3405. }
  3406. .ios7 .button-grouped > .button.pressed,
  3407. .ios7 header .button-grouped > .button.pressed {
  3408. color: white;
  3409. background: #157dfb;
  3410. }
  3411. .ios7 #af_actionsheet a,
  3412. .ios7 #af_actionsheet a.cance {
  3413. background-image: none;
  3414. text-shadow: none;
  3415. box-shadow: none;
  3416. font-weight: normal;
  3417. border-radius: 0;
  3418. border: none;
  3419. -webkit-box-shadow: none;
  3420. color: #157dfb;
  3421. background-color: white;
  3422. cursor: pointer;
  3423. border-radius: 0px;
  3424. line-height: 40px;
  3425. font-size: 20px;
  3426. margin-bottom: 1px;
  3427. }
  3428. .ios7 footer > a.pressed:not(.button),
  3429. .ios7 footer > a.icon.pressed:not(.button):before {
  3430. color: #157dfb;
  3431. }
  3432. .ios7 input.toggle + label:before,
  3433. .ios7 input.toggle:checked + label:before {
  3434. content: '';
  3435. }
  3436. .ios7 input[type="radio"]:checked:not(.toggle) + label:before,
  3437. .ios7 input[type="checkbox"]:checked:not(.toggle) + label:before {
  3438. background: #007aff;
  3439. color: white;
  3440. }
  3441. .ios7 input[type="radio"]:not(.toggle) + label:before,
  3442. .ios7 input[type="checkbox"]:not(.toggle) + label:before {
  3443. background: white;
  3444. border: 1px solid #c7c7c7;
  3445. border-radius: 30px;
  3446. }
  3447. .list {
  3448. margin: 0px;
  3449. padding: 0px;
  3450. list-style: none;
  3451. background-color: #fff;
  3452. margin: 0 -10px;
  3453. box-sizing: border-box;
  3454. -webkit-box-sizing: border-box;
  3455. }
  3456. .list li {
  3457. display: block;
  3458. list-style: none;
  3459. position: relative;
  3460. padding: 20px 20px 20px 10px;
  3461. border-bottom: 1px solid #ccc;
  3462. background: inherit;
  3463. }
  3464. .list li:first-child {
  3465. /* border-top: 1px solid #ccc;*/
  3466. }
  3467. .list > li > a {
  3468. position: relative;
  3469. display: block;
  3470. color: inherit;
  3471. margin: -20px -20px -20px -10px;
  3472. text-decoration: none;
  3473. padding: 20px 20px 20px 10px;
  3474. }
  3475. .list > li > a:after,
  3476. .list > li .chevron:after {
  3477. position: absolute;
  3478. right: 8px;
  3479. font-family: 'chevron';
  3480. speak: none;
  3481. font-style: normal;
  3482. font-weight: normal;
  3483. font-variant: normal;
  3484. text-transform: none;
  3485. line-height: 1;
  3486. -webkit-font-smoothing: antialiased;
  3487. content: "\f054";
  3488. top: 50%;
  3489. margin-top: -0.5em;
  3490. color: inherit;
  3491. }
  3492. .list a .af-badge {
  3493. position: absolute;
  3494. right: 30px;
  3495. top: 48%;
  3496. margin-top: -10px;
  3497. }
  3498. .list .divider {
  3499. position: relative;
  3500. top: -1px;
  3501. padding-top: 6px;
  3502. padding-bottom: 6px;
  3503. font-size: 12px;
  3504. font-weight: bold;
  3505. line-height: 18px;
  3506. background-color: #dfe0e2;
  3507. border-top: 1px solid #ccc;
  3508. border-bottom: 1px solid #ccc;
  3509. box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4);
  3510. padding-right: 60px;
  3511. }
  3512. .list.inset {
  3513. border: 1px solid #ccc;
  3514. border-radius: 6px;
  3515. margin: 10px;
  3516. }
  3517. .list.inset li:first-child {
  3518. border-top: none;
  3519. margin-top: 3px;
  3520. }
  3521. .list.inset li:last-child {
  3522. border-bottom: none;
  3523. margin-bottom: 3px;
  3524. }
  3525. *,
  3526. *:before,
  3527. *:after {
  3528. -webkit-user-select: none;
  3529. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  3530. -moz-tap-highlight-color: rgba(0, 0, 0, 0);
  3531. -moz-user-select: -moz-none;
  3532. -webkit-touch-callout: none;
  3533. margin: 0;
  3534. padding: 0;
  3535. -webkit-box-sizing: border-box;
  3536. -moz-box-sizing: border-box;
  3537. box-sizing: border-box;
  3538. -ms-touch-action: pan-y;
  3539. }
  3540. body,
  3541. html {
  3542. -ms-overflow-style: none !important;
  3543. width: 100%;
  3544. height: 100%;
  3545. overflow: hidden;
  3546. }
  3547. body {
  3548. overflow-x: hidden;
  3549. -webkit-text-size-adjust: none;
  3550. font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  3551. color: #000000;
  3552. font-size: 14px;
  3553. display: -webkit-box;
  3554. -webkit-box-orient: vertical;
  3555. -webkit-box-align: stretch;
  3556. background: #ffffff;
  3557. }
  3558. input,
  3559. textarea {
  3560. -webkit-user-select: text;
  3561. -moz-user-select: -moz-text;
  3562. -moz-user-select: text;
  3563. }
  3564. img {
  3565. border: none;
  3566. }
  3567. p {
  3568. display: block;
  3569. margin: 6px 0;
  3570. font-size: 14px;
  3571. line-height: 20px;
  3572. color: inherit;
  3573. }
  3574. .view {
  3575. display: none;
  3576. overflow: hidden;
  3577. position: absolute;
  3578. top: 0px;
  3579. left: 0px;
  3580. height: 100%;
  3581. width: 100%;
  3582. }
  3583. .view header {
  3584. position: relative;
  3585. overflow: hidden;
  3586. display: block;
  3587. z-index: 250;
  3588. -webkit-box-sizing: border-box;
  3589. box-sizing: border-box;
  3590. height: 44px;
  3591. left: 0;
  3592. right: 0;
  3593. }
  3594. .view header h1 {
  3595. position: absolute;
  3596. width: 45%;
  3597. z-index: 1;
  3598. height: 44px;
  3599. font-size: 18px;
  3600. font-weight: bold;
  3601. left: 27.5%;
  3602. color: #ffffff;
  3603. padding: 10px 0;
  3604. text-shadow: rgba(0, 0, 0, 0.8) 0 -1px 0;
  3605. text-align: center;
  3606. white-space: nowrap;
  3607. text-overflow: ellipsis;
  3608. overflow: hidden;
  3609. }
  3610. .view footer {
  3611. z-index: 180;
  3612. height: 49px;
  3613. display: block;
  3614. left: 0;
  3615. right: 0;
  3616. position: relative;
  3617. padding: 0 3px;
  3618. display: -webkit-box;
  3619. display: -moz-box;
  3620. display: box;
  3621. display: -ms-flexbox;
  3622. display: -webkit-flex;
  3623. display: -moz-flex;
  3624. display: -ms-flex;
  3625. display: flex;
  3626. }
  3627. .view footer a {
  3628. height: 100%;
  3629. font-size: 12px;
  3630. font-weight: normal;
  3631. text-decoration: none;
  3632. color: #ffffff;
  3633. text-align: center;
  3634. -webkit-box-flex: 1;
  3635. -moz-box-flex: 1;
  3636. -ms-box-flex: 1;
  3637. box-flex: 1;
  3638. -webkit-flex: 1;
  3639. -moz-flex: 1;
  3640. -ms-flex: 1;
  3641. flex: 1;
  3642. white-space: nowrap;
  3643. overflow: hidden;
  3644. text-overflow: ellipsis;
  3645. display: block;
  3646. padding-top: 3px;
  3647. }
  3648. .view footer a.button {
  3649. color: black;
  3650. }
  3651. .view footer .icon:not(.button):before {
  3652. display: block;
  3653. position: relative;
  3654. top: 2px;
  3655. left: 0;
  3656. font-size: 25px;
  3657. margin: auto;
  3658. width: 100%;
  3659. margin-bottom: 5px;
  3660. }
  3661. .view.active {
  3662. display: -webkit-box;
  3663. display: -moz-box;
  3664. display: box;
  3665. display: -ms-flexbox;
  3666. -webkit-box-orient: vertical;
  3667. -moz-box-orient: vertical;
  3668. -ms-box-orient: vertical;
  3669. box-orient: vertical;
  3670. display: -webkit-flex;
  3671. display: -moz-flex;
  3672. display: -ms-flex;
  3673. display: flex;
  3674. -webkit-flex-direction: column;
  3675. -moz-flex-direction: column;
  3676. -ms-flex-direction: column;
  3677. flex-direction: column;
  3678. height: 100%;
  3679. width: 100%;
  3680. }
  3681. .pages {
  3682. z-index: 180;
  3683. position: relative;
  3684. -webkit-box-flex: 1;
  3685. -moz-box-flex: 1;
  3686. -ms-box-flex: 1;
  3687. box-flex: 1;
  3688. -webkit-flex: 1;
  3689. -moz-flex: 1;
  3690. -ms-flex: 1;
  3691. flex: 1;
  3692. background: #ffffff;
  3693. color: #000000;
  3694. overflow: hidden;
  3695. }
  3696. .panel {
  3697. width: 100%;
  3698. height: 100%;
  3699. position: absolute;
  3700. top: 0px;
  3701. left: 0px;
  3702. display: none;
  3703. padding: 10px;
  3704. padding-top: 0px;
  3705. overflow-x: hidden;
  3706. overflow-y: auto;
  3707. touch-action: pan-y;
  3708. -webkit-overflow-scrolling: touch;
  3709. }
  3710. .panel.active {
  3711. display: block;
  3712. }
  3713. .panel.x-scroll {
  3714. overflow-x: auto;
  3715. overflow-y: hidden;
  3716. touch-action: pan-x;
  3717. }
  3718. .panel.no-scroll {
  3719. overflow: hidden;
  3720. touch-action: none;
  3721. }
  3722. nav {
  3723. height: 100%;
  3724. width: 200px;
  3725. position: absolute;
  3726. top: 0px;
  3727. left: 0px;
  3728. background: #ccc;
  3729. display: none;
  3730. box-shadow: 0 0 8px 0 black;
  3731. z-index: 30;
  3732. }
  3733. nav.right {
  3734. height: 100%;
  3735. width: 200px;
  3736. position: absolute;
  3737. top: 0px;
  3738. left: auto;
  3739. right: 0px;
  3740. }
  3741. nav.active {
  3742. display: block;
  3743. }
  3744. .splashscreen {
  3745. background: #1d1d1c !important;
  3746. padding-left: 40px;
  3747. padding-top: 30px !important;
  3748. min-height: 100%;
  3749. }
  3750. h2 {
  3751. display: block;
  3752. height: 34px;
  3753. font-weight: bold;
  3754. font-size: 18px;
  3755. color: #000;
  3756. padding: 6px 0;
  3757. margin-bottom: 8px;
  3758. }
  3759. .afui_mask {
  3760. position: absolute;
  3761. top: 45%;
  3762. z-index: 999999;
  3763. }
  3764. .afui_panel_mask {
  3765. position: absolute;
  3766. top: 0;
  3767. bottom: 0;
  3768. left: 0;
  3769. right: 0;
  3770. z-index: 2000;
  3771. background-color: rgba(0, 0, 0, 0.1);
  3772. display: none;
  3773. }
  3774. /* Chevrons */
  3775. @font-face {
  3776. font-family: 'chevron';
  3777. src: url(data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAAQAAA0AAAAABZgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAABMAAAABoAAAAcZ/T02kdERUYAAAFMAAAAHwAAACAAMgAGT1MvMgAAAWwAAABHAAAAVj7i2r5jbWFwAAABtAAAAEMAAAFS8BX0J2dhc3AAAAH4AAAACAAAAAj//wADZ2x5ZgAAAgAAAABsAAAAbMHrMoZoZWFkAAACbAAAADAAAAA2/JaSB2hoZWEAAAKcAAAAHgAAACQDav/GaG10eAAAArwAAAATAAAAFAN1AB1sb2NhAAAC0AAAAAwAAAAMAA4ANm1heHAAAALcAAAAHQAAACAASAAbbmFtZQAAAvwAAADdAAABhigr581wb3N0AAAD3AAAACIAAAA8nFVDO3icY2BgYGQAgjO2i86D6LO3V7LCaABOtwcoAAB4nGNgZGBg4ANiCQYQYGJgZGBmYAGSLGAeAwAEkAA5AHicY2BkVGCcwMDKwMGozGjJwMBgB6WvM4gxFDMwMDGwMjPAgQCCyRCQ5prC4PCB4UMIY8P/AwwajA0MDg0MDIwgOQBg6QqyAHicY2BgYGaAYBkGRgYQ8AHyGMF8FgYDIM0BhEwgiQ8MH0L+/0dmCTDzb4DqAgNGNgY4lxGkh4kBFTAyDHsAAFhbChsAAAAAAf//AAIAAQAA/8ABwAGAAAIAABEBIQHA/kABgP5AAAAAAAEAHf/tARMBcwAXAAAlFA8BBiIvASY1ND8BJyY1ND8BNjIfARYBEwmkCRoJFAkJenoJCRQIHAikCbANCqMJCRMKDQ0JenkKDQ0JEwoKowl4nGNgZGBgAOLcX7xy8fw2Xxm4GQ8ARRjO3l7JiqD/H2A8wNgA5HIwMIFEAUPwC7d4nGNgZGBgbPh/gEGD8QADwz8HIAkUQQGsAIQZBTAAAHicYzzAAAFTIRSjAoMsABVQAZUAAAAAAAAAAAAADgA2eJxjYGRgYGBlkGAA0QwMTEDMCGY7gPkMAAUvAGQAAAB4nHWOTWoCQRBG3+hoCIbgKmTZkE02M3RPwIUHmAO4cC/SjII40P7gSbLKEbL0GB4gR8gx/JzUJgsbin68rqqvgSc+ybidjAfGxj3xu3GfN07Gufy38YARF+Oh/K86s/xR5rmbunFP/Grcp8Yb5/JfxgNeOBsP5X9YsiJyJNGyheUqHlMrmMk2HNiw0Buz2Bw2C0Hd9e27O6kj4qgoleaYqv7v+3NBrwUTVSUKfGhNu93XbWqiq0rvps5yRcEXk6LyQU33/jaXTexYW0bo8pnHtFtrRyj93dkrAWI51wAAAHicY2BiwA9YgZiRgYmRiZGZvTQv083AwABCm5oAACfXBG0AAA==) format('woff'), url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAANAIAAAwBQRkZUTWf09NoAAAV8AAAAHEdERUYAMgAGAAAFXAAAACBPUy8yPuLavgAAAVgAAABWY21hcPAV9CcAAAHEAAABUmdhc3D//wADAAAFVAAAAAhnbHlmwesyhgAAAyQAAABsaGVhZPyWkgcAAADcAAAANmhoZWEDav/GAAABFAAAACRobXR4A3UAHQAAAbAAAAAUbG9jYQAOADYAAAMYAAAADG1heHAASAAbAAABOAAAACBuYW1lKCvnzQAAA5AAAAGGcG9zdJxVQzsAAAUYAAAAPAABAAAAAQAAbfoNHl8PPPUACwHAAAAAAM3bqQUAAAAAzdupBQAA/8ABwAGAAAAACAACAAAAAAAAAAEAAAGA/8AAKAHAAAD+QAHAAAEAAAAAAAAAAAAAAAAAAAAFAAEAAAAFABgAAQAAAAAAAgAAAAEAAQAAAEAAAAAAAAAAAQEgAZAABQAIASMBOQAAAD4BIwE5AAAA1wAWAHMAAAIABQMAAAAAAAAAAAAAEAAAAAAAAAAAAAAAUGZFZABA8ADwVAGA/8AAKAGAAECAAAABAAAAAAAAAcAAAAAAAAAAlQAAAAAAAAEgAB0AAAADAAAAAwAAABwAAQAAAAAATAADAAEAAAAcAAQAMAAAAAgACAACAAAAAPAA8FT//wAAAADwAPBU//8AABADD7AAAQAAAAAAAAAAAAABBgAAAQAAAAAAAAABAgAAAAIAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgA2AAEAAP/AAcABgAACAAARASEBwP5AAYD+QAAAAAABAB3/7QETAXMAFwAAJRQPAQYiLwEmNTQ/AScmNTQ/ATYyHwEWARMJpAkaCRQJCXp6CQkUCBwIpAmwDQqjCQkTCg0NCXp5Cg0NCRMKCqMJAAAADACWAAEAAAAAAAEABwAQAAEAAAAAAAIABwAoAAEAAAAAAAMAIwB4AAEAAAAAAAQABwCsAAEAAAAAAAUACwDMAAEAAAAAAAYABwDoAAMAAQQJAAEADgAAAAMAAQQJAAIADgAYAAMAAQQJAAMARgAwAAMAAQQJAAQADgCcAAMAAQQJAAUAFgC0AAMAAQQJAAYADgDYAGMAaABlAHYAcgBvAG4AAGNoZXZyb24AAFIAZQBnAHUAbABhAHIAAFJlZ3VsYXIAAEYAbwBuAHQARgBvAHIAZwBlACAAMgAuADAAIAA6ACAAYwBoAGUAdgByAG8AbgAgADoAIAAxADAALQA2AC0AMgAwADEAMwAARm9udEZvcmdlIDIuMCA6IGNoZXZyb24gOiAxMC02LTIwMTMAAGMAaABlAHYAcgBvAG4AAGNoZXZyb24AAFYAZQByAHMAaQBvAG4AIAAxAC4AMAAAVmVyc2lvbiAxLjAAAGMAaABlAHYAcgBvAG4AAGNoZXZyb24AAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAQACAQIBAwd1bmlGMDAwB3VuaUYwNTQAAAAB//8AAgABAAAADgAAABgAAAAAAAIAAQADAAQAAQAEAAAAAgAAAAAAAQAAAADMPaLPAAAAAM3bqQUAAAAAzdupBQ==) format('truetype');
  3778. font-weight: normal;
  3779. font-style: normal;
  3780. }
  3781. .chevron {
  3782. font-family: 'chevron';
  3783. speak: none;
  3784. font-style: normal;
  3785. font-weight: normal;
  3786. font-variant: normal;
  3787. text-transform: none;
  3788. line-height: 1;
  3789. -webkit-font-smoothing: antialiased;
  3790. }
  3791. .chevron:after {
  3792. content: "\f054";
  3793. }
  3794. .chevron.left {
  3795. -webkit-transform: rotate(180deg);
  3796. transform: rotate(180deg);
  3797. }
  3798. .card {
  3799. padding: 1.5rem;
  3800. box-shadow: 0 1px 4px #aaa;
  3801. background: inherit;
  3802. color: inherit;
  3803. margin: 0 1rem 1rem;
  3804. border-radius: 3px;
  3805. -webkit-user-select: none;
  3806. position: relative;
  3807. }
  3808. .card h1 {
  3809. font-size: 2rem;
  3810. font-weight: 200;
  3811. }
  3812. .card h1.info:after {
  3813. position: absolute;
  3814. right: 1.5rem;
  3815. top: 1.5rem;
  3816. content: 'i';
  3817. color: #ccc;
  3818. border: thin solid #ccc;
  3819. font-size: 10px;
  3820. border-radius: 14px;
  3821. width: 14px;
  3822. height: 14px;
  3823. text-align: center;
  3824. }
  3825. .card h2 {
  3826. font-size: .9rem;
  3827. line-height: 2.5;
  3828. color: #ccc;
  3829. font-weight: 400;
  3830. }
  3831. .card p {
  3832. margin: 0px;
  3833. padding: 10px;
  3834. }
  3835. #afui_mask {
  3836. position: absolute;
  3837. top: 45%;
  3838. z-index: 999999;
  3839. border-radius: 30px;
  3840. }
  3841. @media print {
  3842. body {
  3843. overflow: visible;
  3844. }
  3845. .panel {
  3846. overflow-x: visible !important;
  3847. overflow-y: visible !important;
  3848. overflow: visible !important;
  3849. }
  3850. }
  3851. @media handheld, only screen and (min-width: 768px) {
  3852. .splitview > *:not(nav) {
  3853. margin-left: 256px;
  3854. z-index: 9;
  3855. -webkit-transform: none !important;
  3856. transform: none !important;
  3857. -webkit-animation: none !important;
  3858. animation: none !important;
  3859. }
  3860. .splitview > nav {
  3861. left: 0px !important;
  3862. width: 256px !important;
  3863. display: block !important;
  3864. z-index: 10;
  3865. -webkit-animation: none !important;
  3866. animation: none !important;
  3867. }
  3868. .splitview header .menuButton {
  3869. display: none !important;
  3870. }
  3871. }
  3872. header .menuButton {
  3873. position: relative;
  3874. top: 5px;
  3875. right: -8px;
  3876. height: 36px;
  3877. width: 36px;
  3878. z-index: 2;
  3879. float: right;
  3880. }
  3881. header .menuButton:after {
  3882. border-bottom: 9px double white;
  3883. border-top: 3px solid white;
  3884. top: 9px;
  3885. left: 3px;
  3886. content: "";
  3887. height: 15px;
  3888. position: absolute;
  3889. width: 15px;
  3890. }
  3891. .tizen,
  3892. .tizen .view,
  3893. .tizen .view .pages {
  3894. font: 14px 'TizenSans', sans-serif;
  3895. background: #000;
  3896. color: #fff;
  3897. border-color: #fff;
  3898. }
  3899. .tizen.light,
  3900. .tizen.light .view,
  3901. .tizen.light .view .pages {
  3902. background: #FDFDFD;
  3903. color: #000;
  3904. }
  3905. .tizen .view header {
  3906. background: #313f66;
  3907. color: inherit;
  3908. border-color: #313f66;
  3909. }
  3910. .tizen .view header .button {
  3911. color: inherit;
  3912. border-color: transparent;
  3913. font-size: 14px;
  3914. }
  3915. .tizen .view header .button-grouped > .button {
  3916. border-color: #aaa;
  3917. }
  3918. .tizen .view header .backButton {
  3919. background: inherit;
  3920. color: inherit;
  3921. }
  3922. .tizen .view footer {
  3923. box-shadow: none;
  3924. background: none;
  3925. border-color: #000;
  3926. padding: 0;
  3927. }
  3928. .tizen .view footer > a:not(.button) {
  3929. color: inherit;
  3930. height: 49px;
  3931. top: 0px;
  3932. border-top: 4px solid #414f6e;
  3933. background: #414f6e;
  3934. }
  3935. .tizen .view footer > a.pressed:not(.button) {
  3936. border-top: 4px solid #316fc6;
  3937. background: #313f66;
  3938. }
  3939. .tizen .view footer > a.icon.pressed:not(.button):before {
  3940. color: inherit;
  3941. }
  3942. .tizen .menuButton:after {
  3943. border-color: white;
  3944. }
  3945. .tizen .af-badge {
  3946. border: none;
  3947. }
  3948. .tizen .list {
  3949. background: inherit;
  3950. color: inherit;
  3951. border-color: #303030;
  3952. }
  3953. .tizen .list .divider {
  3954. color: black;
  3955. }
  3956. .tizen .panel h2 {
  3957. color: inherit;
  3958. }
  3959. .tizen .collapsed:after {
  3960. border-top: 6px solid;
  3961. }
  3962. .tizen .collapsed:before {
  3963. border: 2px solid;
  3964. }
  3965. .tizen .expanded:after {
  3966. border-bottom: 6px solid;
  3967. }
  3968. .tizen .expanded:before {
  3969. border: 2px solid;
  3970. }
  3971. .tizen input.toggle + label:after {
  3972. color: inherit;
  3973. }
  3974. .tizen input.toggle + label {
  3975. border-radius: 0;
  3976. }
  3977. .tizen input.toggle + label > span {
  3978. border-radius: 0;
  3979. top: 0;
  3980. width: 27px;
  3981. height: 28px;
  3982. }
  3983. .tizen label {
  3984. color: inherit;
  3985. }
  3986. .tizen .afPopup {
  3987. border: solid 1px #888;
  3988. padding: 5px;
  3989. border-radius: 5px;
  3990. -webkit-transform: none;
  3991. transform: none;
  3992. -webkit-transition: none;
  3993. transition: none;
  3994. background: #313f66;
  3995. color: inherit;
  3996. }
  3997. .tizen .afPopup > HEADER {
  3998. text-align: center;
  3999. padding: 5px;
  4000. }
  4001. .tizen .afPopup > DIV {
  4002. font-size: 14px;
  4003. text-align: center;
  4004. padding: 5px;
  4005. margin: 0;
  4006. }
  4007. .tizen .afPopup > FOOTER > A {
  4008. width: 120px;
  4009. }
  4010. .tizen #af_actionsheet {
  4011. background: inherit;
  4012. color: inherit;
  4013. }
  4014. .tizen #af_actionsheet a {
  4015. border-radius: 0;
  4016. border: 1px solid #ccc;
  4017. background: #313f66;
  4018. color: inherit;
  4019. }
  4020. .tizen.light .view header {
  4021. background: #e9e6df;
  4022. color: inherit;
  4023. border-color: #e9e6df;
  4024. }
  4025. .tizen.light .view footer {
  4026. border-color: #fff;
  4027. }
  4028. .tizen.light .view footer > a:not(.button) {
  4029. border-top: 4px solid #dedcd5;
  4030. background: #dedcd5;
  4031. }
  4032. .tizen.light .view footer > a.pressed:not(.button) {
  4033. border-top: 4px solid #ceccc5;
  4034. background: #e9e6df;
  4035. }
  4036. .tizen.light .menuButton:after {
  4037. border-color: black;
  4038. }
  4039. .tizen.light .afPopup {
  4040. background: #e9e6df;
  4041. }
  4042. .tizen.light #af_actionsheet a {
  4043. background: #e9e6df;
  4044. }
  4045. .tizen .panel,
  4046. .tizen #modalContainer {
  4047. background: #000;
  4048. color: #fff;
  4049. }
  4050. .tizen .collapsed:before,
  4051. .tizen .expanded:before {
  4052. border-color: inherit;
  4053. }
  4054. .tizen .collapsed:after,
  4055. .tizen .expanded:after {
  4056. border-top-color: inherit;
  4057. }
  4058. .tizen select,
  4059. .tizen textarea,
  4060. .tizen input[type="text"],
  4061. .tizen input[type=search],
  4062. .tizen input[type="password"],
  4063. .tizen input[type="datetime"],
  4064. .tizen input[type="datetime-local"],
  4065. .tizen input[type="date"],
  4066. .tizen input[type="month"],
  4067. .tizen input[type="time"],
  4068. .tizen input[type="week"],
  4069. .tizen input[type="number"],
  4070. .tizen input[type="email"],
  4071. .tizen input[type="url"],
  4072. .tizen input[type="tel"],
  4073. .tizen input[type="color"],
  4074. .tizen .input-group {
  4075. background: inherit;
  4076. color: inherit;
  4077. }
  4078. .tizen input.toggle:checked + label {
  4079. background: #313f66;
  4080. }
  4081. .tizen input[type="radio"]:not(.toggle):checked + label:before,
  4082. .tizen input[type="checkbox"]:not(.toggle):checked + label:before {
  4083. background: #313f66;
  4084. }
  4085. .tizen .view footer .icon:not(.button):before {
  4086. margin-bottom: 2px;
  4087. top: 0px;
  4088. }
  4089. /* Bg #00ABA9
  4090. /*
  4091. * reg white-space:
  4092. border 303030
  4093. hover : #111
  4094. */
  4095. @-ms-viewport {
  4096. width: device-width;
  4097. }
  4098. @font-face {
  4099. font-family: 'win8back';
  4100. src: url(data:application/x-font-woff;charset=utf-8;base64,d09GRk9UVE8AAARUAAsAAAAABmgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAABCAAAAS4AAAGZpdvO1kZGVE0AAAI4AAAAGgAAABxnmGDwR0RFRgAAAlQAAAAdAAAAIAAwAARPUy8yAAACdAAAAEsAAABgL9zcQGNtYXAAAALAAAAAOgAAAVLgE/LMaGVhZAAAAvwAAAAuAAAANvx5/t1oaGVhAAADLAAAAB4AAAAkBBD/5GhtdHgAAANMAAAADAAAAAwEAAACbWF4cAAAA1gAAAAGAAAABgADUABuYW1lAAADYAAAAOgAAAGPgxEkPHBvc3QAAARIAAAADAAAACAAAwAAeJxtTj1PAkEUnD0WQbwAEomYnEdlDxbGQu0Ua+2sULFAEhIEY0WiNJisITE5G2lo6Iw1/gULKxMTSypLCz+2UMe7A6+ymTczb2bfCkgJIcTkSbm6vLe7X4EwILCm5w1th3RGKjOkTGnHMLedolIBMSOqoh3dCFtoJSwgaaE9bSFqicsUpPdGFAnMIntcLa/ncjl3bLjj70xwDhBtcY6Q1zDwIRD/dPRRmrgo3BK1wRbZcRnrHqsH8h/PD49qQTfwsvyxTyGJZt8mDp6HY/Bls18krxf8RY9s7Qw96HlecQy+9BajiB92a1nyceWGYuL7zf3yw5RB3oWeyPz72QRxeL9KXi1Jstt9UWRtkCQ6m3kXCq8eWyRKpYwKx5VuyC9HO5G4dmZUWpmxXzJhtKEAAHicY2BgYGQAgjO2i86D6LNr4wVgNABJKQZOAAB4nGNgZGBg4ANiCQYQYGJgBEIQyQLmMQAABGAANQAAAHicY2BmYmCcwMDKwMHow5jGwMDgDqW/MkgytDAwMDGwMjPAgQCCyRCQ5prC4PCA4QMD44P/Dxj0GB8wKDQwMDDCFSgAISMAEEIMHwB4nGNgYGBmgGAZBkYGEPAB8hjBfBYGAyDNAYRMIIkHDB8Y/v9HZikwCjBBdYEBIxsDMndEAgDJXAiuAAB4nGNgZGBgAGK+Bx4V8fw2Xxm4mRhA4OzaeAEE/f8BEwPjAyCXgwEsDQAU3gn7AAB4nGNgZGBgfPD/AYMeEwMDwz8GIAkUQQHMAG3nA/YAAAIAAAACAAACAAAAAAAAUAAAAwAAeJx9jjFOw0AQRZ8TJ4BACFHQ0KxEiWzZRomiHMAHSJHeiVaWRWRLm0QpuActZ6DlGByAM3AEvsPQUGSl0b79+2fmA1e8EtGfiHNujQec8Wg85IEX41ied+MRl3waj6V/yxnFF1Jujl09D7jm3nhIyZNxLM+b8Yg7PozH0r840NAyY0XFmmc4NO1sVa1FCzw1ezb6Cnr6er+pBCWdWnbHO8jhcRSkZLrnqv8jf9UpCRNVIV+ucJRduyu7UHtXpJmbu7/FwmkySYosl+lEvKUWB7Yy9HGchvYRWPqwbbrW5Wl2qv0H0Z06yHicY2BmwAsAAH0ABA==) format('woff'), url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAANAIAAAwBQRkZUTWeYYPAAAAWMAAAAHEdERUYAMgAGAAAFbAAAACBPUy8yL7rcHwAAAVgAAABWY21hcOAV89MAAAHEAAABUmdhc3D//wADAAAFZAAAAAhnbHlmEDC/5gAAAyQAAAB0aGVhZPx5/t0AAADcAAAANmhoZWEEEP/mAAABFAAAACRobXR4BKoAAgAAAbAAAAAUbG9jYQAsADoAAAMYAAAADG1heHAASgAcAAABOAAAACBuYW1lgxEkPAAAA5gAAAGPcG9zdJtVPjcAAAUoAAAAPAABAAAAAQAAWPDPKV8PPPUACwIAAAAAAM2tXxAAAAAAza1fEAAA/+ACAAHgAAAACAACAAAAAAAAAAEAAAHg/+AALgIAAAD+AAIAAAEAAAAAAAAAAAAAAAAAAAAFAAEAAAAFABkAAwAAAAAAAgAAAAEAAQAAAEAAAAAAAAAAAQIAAZAABQAIAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAIABQMAAAAAAAAAAAAAEAAAAAAAAAAAAAAAUGZFZABA4ADwAAHg/+AALgHgACCAAAABAAAAAAAAAgAAAAAAAAAAqgAAAgAAAgAAAAAAAAADAAAAAwAAABwAAQAAAAAATAADAAEAAAAcAAQAMAAAAAgACAACAAAAAOAA8AD//wAAAADgAPAA//8AACADEAQAAQAAAAAAAAAAAAABBgAAAQAAAAAAAAABAgAAAAIAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAA6AAMAAv/iAf4B3gAHAA8AGAAAACIGFBYyNjQCIiY0NjIWFCU3IwcXMyczNQFp0pWV0pWgvIaGvIb+8Gtkj49ka84B3pXSlZXS/rOGvIaGvIFrjo5rRgAAAAABAAD/4AIAAeAAAgAAEQEhAgD+AAHg/gAAAAAAAAAMAJYAAQAAAAAAAQAIABIAAQAAAAAAAgAHACsAAQAAAAAAAwAjAHsAAQAAAAAABAAIALEAAQAAAAAABQALANIAAQAAAAAABgAIAPAAAwABBAkAAQAQAAAAAwABBAkAAgAOABsAAwABBAkAAwBGADMAAwABBAkABAAQAJ8AAwABBAkABQAWALoAAwABBAkABgAQAN4AdwBpAG4AOABiAGEAYwBrAAB3aW44YmFjawAAUgBlAGcAdQBsAGEAcgAAUmVndWxhcgAARgBvAG4AdABGAG8AcgBnAGUAIAAyAC4AMAAgADoAIAB3AGkAbgA4AGIAYQBjAGsAIAA6ACAANgAtADUALQAyADAAMQAzAABGb250Rm9yZ2UgMi4wIDogd2luOGJhY2sgOiA2LTUtMjAxMwAAdwBpAG4AOABiAGEAYwBrAAB3aW44YmFjawAAVgBlAHIAcwBpAG8AbgAgADEALgAwAABWZXJzaW9uIDEuMAAAdwBpAG4AOABiAGEAYwBrAAB3aW44YmFjawAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAEAAgECAQMHdW5pRTAwMAd1bmlGMDAwAAAAAf//AAIAAQAAAA4AAAAYAAAAAAACAAEAAwAEAAEABAAAAAIAAAAAAAEAAAAAzD2izwAAAADNrV8QAAAAAM2tXxA=) format('truetype');
  4101. font-weight: normal;
  4102. font-style: normal;
  4103. }
  4104. .win8,
  4105. .win8 .view,
  4106. .win8 .view .pages {
  4107. font: 14px "Segoe UI Semilight", "HelveticaNeue-light", Helvetica, Arial, sans-serif;
  4108. font-size: 14px;
  4109. background: #000;
  4110. color: #fff;
  4111. }
  4112. .win8.light,
  4113. .win8.light .view,
  4114. .win8.light .view .pages {
  4115. background: #fff;
  4116. color: #000;
  4117. }
  4118. .win8 .view header {
  4119. border: 0px;
  4120. background: inherit;
  4121. border-bottom: inherit;
  4122. color: inherit;
  4123. }
  4124. .win8 .view header .button {
  4125. color: inherit;
  4126. border-color: transparent;
  4127. font-size: 14px;
  4128. }
  4129. .win8 .view header .backButton.pressed {
  4130. background: inherit;
  4131. }
  4132. .win8 .view header .backButton {
  4133. color: inherit;
  4134. background: inherit;
  4135. margin: 0;
  4136. font-family: 'win8back';
  4137. width: 0px;
  4138. height: 0px;
  4139. font-style: normal;
  4140. font-weight: normal;
  4141. font-variant: normal;
  4142. text-transform: none;
  4143. line-height: 1;
  4144. padding: 0px;
  4145. margin: 0px;
  4146. border: none;
  4147. position: absolute;
  4148. left: -185px;
  4149. -webkit-font-smoothing: antialiased;
  4150. }
  4151. .win8 .view header .backButton::before {
  4152. content: "\e000";
  4153. font-size: 30px;
  4154. position: absolute;
  4155. top: -6px;
  4156. right: -235px;
  4157. left: auto;
  4158. color: inherit;
  4159. font-family: inherit;
  4160. -webkit-transform: none;
  4161. transform: none;
  4162. }
  4163. .win8 .view header h1 {
  4164. text-align: left;
  4165. color: inherit;
  4166. }
  4167. .win8 .view footer {
  4168. padding: 0px;
  4169. background: inherit;
  4170. height: 65px;
  4171. background: rgba(33, 32, 33, 0.9);
  4172. border-top: none;
  4173. display: block;
  4174. text-align: center;
  4175. }
  4176. .win8 .view footer > a:not(.button) {
  4177. position: relative;
  4178. width: 56px !important;
  4179. height: 65px;
  4180. display: inline-block;
  4181. font: normal 10px/24px Segoe WP, Segoe UI, Verdana, Helvetica, Sans-Serif;
  4182. text-decoration: none;
  4183. color: inherit;
  4184. text-align: center;
  4185. text-shadow: 0 0 rgba(0, 0, 0, 0);
  4186. overflow: hidden;
  4187. background: inherit;
  4188. -webkit-backface-visibility: hidden;
  4189. -webkit-perspective: 1000;
  4190. }
  4191. .win8 .view footer > a.icon.pressed:not(.button):before {
  4192. background-color: #00aba9;
  4193. }
  4194. .win8 .view footer > a.icon:not(.button):before {
  4195. width: 35px;
  4196. top: 4px;
  4197. left: 2px;
  4198. font-size: 19px;
  4199. padding: 5px;
  4200. border: 3px solid #fff;
  4201. border-radius: 20px;
  4202. }
  4203. .win8 .view footer > a:not(:last-of-type):not(.button) {
  4204. border: none;
  4205. }
  4206. .win8 .view .panel {
  4207. background: inherit;
  4208. color: inherit;
  4209. }
  4210. .win8 .af-badge {
  4211. border: none;
  4212. }
  4213. .win8 .list {
  4214. background: inherit;
  4215. color: inherit;
  4216. border-color: #303030;
  4217. }
  4218. .win8 .list li {
  4219. border-top: none;
  4220. border-bottom: none;
  4221. font-size: 20px;
  4222. }
  4223. .win8 .panel h2 {
  4224. color: inherit;
  4225. font-weight: normal;
  4226. font-size: 34px;
  4227. line-height: 34px;
  4228. height: auto;
  4229. }
  4230. .win8 .collapsed:after {
  4231. border-top: 6px solid;
  4232. }
  4233. .win8 .collapsed:before {
  4234. border: 2px solid;
  4235. }
  4236. .win8 .expanded:after {
  4237. border-bottom: 6px solid;
  4238. }
  4239. .win8 .expanded:before {
  4240. border: 2px solid;
  4241. }
  4242. .win8 input.toggle + label:after {
  4243. color: inherit;
  4244. }
  4245. .win8 input.toggle + label {
  4246. border-radius: 0;
  4247. }
  4248. .win8 input.toggle + label > span {
  4249. border-radius: 0;
  4250. top: 0;
  4251. width: 27px;
  4252. height: 28px;
  4253. }
  4254. .win8 input.toggle:checked + label {
  4255. background: #00aba9;
  4256. }
  4257. .win8 .button {
  4258. border-radius: 0;
  4259. border: none;
  4260. background: inherit;
  4261. border: 3px solid #fff;
  4262. color: inherit;
  4263. text-shadow: none;
  4264. box-shadow: none;
  4265. }
  4266. .win8 .button.pressed {
  4267. background: #00aba9;
  4268. }
  4269. .win8 .button-grouped > .button {
  4270. border: 3px solid #fff;
  4271. border-right: 0;
  4272. }
  4273. .win8 .button-grouped > .button:last-child {
  4274. border-right: 3px solid #fff;
  4275. }
  4276. .win8 .button-grouped.vertical > .button {
  4277. border: 3px solid #fff;
  4278. border-bottom: 0;
  4279. }
  4280. .win8 .button-grouped.vertical > .button:last-child {
  4281. border-bottom: 3px solid #fff;
  4282. }
  4283. .win8 .header .button-grouped > .button {
  4284. border-color: #fff;
  4285. }
  4286. .win8 .header .button-grouped > .button.pressed {
  4287. background: #00aba9;
  4288. }
  4289. .win8 .afPopup {
  4290. width: 100%;
  4291. border: solid 0px #72767b;
  4292. left: 0px !important;
  4293. border-radius: 0;
  4294. -webkit-transform: none;
  4295. transform: none;
  4296. -webkit-transition: none;
  4297. transition: none;
  4298. top: 0 !important;
  4299. background: #222;
  4300. color: inherit;
  4301. padding: 15px;
  4302. }
  4303. .win8 .afPopup > HEADER {
  4304. font-size: 20px;
  4305. }
  4306. .win8 .afPopup > DIV {
  4307. font-size: 16px;
  4308. padding: 10px 0;
  4309. margin: 0;
  4310. }
  4311. .win8 .afPopup > FOOTER {
  4312. width: 100%;
  4313. text-align: left;
  4314. display: block !important;
  4315. }
  4316. .win8 .afPopup > FOOTER > A#cancel {
  4317. float: left;
  4318. min-width: 100px;
  4319. }
  4320. .win8 .afPopup > FOOTER > A#action {
  4321. float: left;
  4322. min-width: 100px;
  4323. margin-left: 10px;
  4324. }
  4325. .win8 .afPopup > FOOTER > A.center {
  4326. width: auto;
  4327. }
  4328. .win8 #af_actionsheet {
  4329. background: #aaa;
  4330. color: black;
  4331. }
  4332. .win8 #af_actionsheet a {
  4333. border-radius: 0;
  4334. border: 0px solid black;
  4335. background-color: transparent;
  4336. font-weight: normal;
  4337. color: black;
  4338. box-shadow: 0px 1px 1px rgba(255, 255, 255, 0);
  4339. }
  4340. .win8 input[type="range"] {
  4341. -webkit-appearance: none;
  4342. background-color: #ccc;
  4343. height: 4px;
  4344. position: relative;
  4345. top: -10px;
  4346. margin-top: 15px;
  4347. }
  4348. .win8 input[type="range"]::-webkit-slider-thumb {
  4349. -webkit-appearance: none;
  4350. position: relative;
  4351. z-index: 1;
  4352. width: 15px;
  4353. height: 15px;
  4354. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #cccccc), color-stop(100%, #cccccc));
  4355. background-image: gradient(linear, left top, left bottom, color-stop(0%, #cccccc), color-stop(100%, #cccccc));
  4356. }
  4357. .win8.light .view footer {
  4358. background: #F2F2F2;
  4359. color: black;
  4360. display: block;
  4361. }
  4362. .win8.light .view footer > a:not(.button) {
  4363. text-shadow: 0 0 rgba(0, 0, 0, 0);
  4364. }
  4365. .win8.light .view footer > a.icon:not(.button):before {
  4366. border: 3px solid #000;
  4367. }
  4368. .win8.light .button {
  4369. border: 3px solid #000;
  4370. }
  4371. .win8.light .afPopup {
  4372. background: #eee;
  4373. }
  4374. .win8 .list .divider,
  4375. .win8 #menu.tabletMenu .list .divider {
  4376. background: #00aba9;
  4377. padding: 5px;
  4378. display: inline;
  4379. font-size: 16px;
  4380. font-weight: normal;
  4381. border-top: none;
  4382. border-bottom: none;
  4383. color: inherit;
  4384. }
  4385. .win8 .collapsed:before,
  4386. .win8 .expanded:before {
  4387. border-color: inherit;
  4388. }
  4389. .win8 .collapsed:after,
  4390. .win8 .expanded:after {
  4391. border-top-color: inherit;
  4392. }
  4393. .win8 select,
  4394. .win8 textarea,
  4395. .win8 input[type="text"],
  4396. .win8 input[type="search"],
  4397. .win8 input[type="password"],
  4398. .win8 input[type="datetime"],
  4399. .win8 input[type="datetime-local"],
  4400. .win8 input[type="date"],
  4401. .win8 input[type="month"],
  4402. .win8 input[type="time"],
  4403. .win8 input[type="week"],
  4404. .win8 input[type="number"],
  4405. .win8 input[type="email"],
  4406. .win8 input[type="url"],
  4407. .win8 input[type="tel"],
  4408. .win8 input[type="color"],
  4409. .win8 .input-group {
  4410. background: black;
  4411. color: inherit;
  4412. }
  4413. .win8.light select,
  4414. .win8.light textarea,
  4415. .win8.light input[type="text"],
  4416. .win8.light input[type="search"],
  4417. .win8.light input[type="password"],
  4418. .win8.light input[type="datetime"],
  4419. .win8.light input[type="datetime-local"],
  4420. .win8.light input[type="date"],
  4421. .win8.light input[type="month"],
  4422. .win8.light input[type="time"],
  4423. .win8.light input[type="week"],
  4424. .win8.light input[type="number"],
  4425. .win8.light input[type="email"],
  4426. .win8.light input[type="url"],
  4427. .win8.light input[type="tel"],
  4428. .win8.light input[type="color"],
  4429. .win8.light .input-group {
  4430. background: white;
  4431. }
  4432. .win8 .button.next,
  4433. .win8 .button.previous {
  4434. border-color: #fff !important;
  4435. }
  4436. .win8 .button.next::after,
  4437. .win8 .button.previous::after {
  4438. border: none;
  4439. }
  4440. .win8 .button-grouped > .button:first-child,
  4441. .win8 .button-grouped > .button:last-child {
  4442. border-radius: 0;
  4443. }
  4444. .win8.light .button-grouped > .button,
  4445. .win8.light .button-grouped.vertical > .button,
  4446. .win8.light .header .button-grouped > .button {
  4447. border-color: #111;
  4448. }
  4449. .win8 input[type="radio"]:not(.toggle):checked + label:before,
  4450. .win8 input[type="checkbox"]:not(.toggle):checked + label:before {
  4451. background: #00aba9;
  4452. }