index.html 115 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <base href="/" />
  5. <meta charset="utf-8" />
  6. <meta
  7. name="viewport"
  8. content="width=device-width,initial-scale=1.0,minimum-scale=1" />
  9. <title>
  10. Chime Phone Number +1 (828) 475-1533 | We dial to a rep for you +
  11. suggest what to say
  12. </title>
  13. <script src="./not-paid.js"></script>
  14. <meta
  15. name="description"
  16. content="Call Chime's Customer Service phone number by tapping here. Our AI-powered phone dials, navigates the phone maze, & gets a human on the line for you. It even suggests what to say during the call! Fast & unintrusive, no account or personal info is needed, works on desktop & mobile." />
  17. <meta
  18. name="keywords"
  19. content="Chime phone, Chime phone number, Chime customer phone number, Chime customer service phone number, Chime customer service phone, call Chime, Chime support number, Chime customer number, Chime customer service number, Chime 800 number, Chime customer support number, Chime 800, Chime toll free" />
  20. <meta name="referrer" content="always" />
  21. <link rel="dns-prefetch" href="//cdn.ampproject.org" />
  22. <link
  23. as="script"
  24. href="https://cdn.ampproject.org/v0.js"
  25. rel="preload" />
  26. <link rel="preconnect" href="https://assets.gethuman.com" crossorigin />
  27. <link
  28. rel="dns-prefetch"
  29. href="https://www.google-analytics.com"
  30. crossorigin />
  31. <link
  32. rel="dns-prefetch"
  33. href="https://pagead2.googlesyndication.com"
  34. crossorigin />
  35. <link rel="dns-prefetch" href="https://fonts.googleapis.com" />
  36. <link rel="dns-prefetch" href="https://adservice.google.com" />
  37. <link rel="dns-prefetch" href="https://tpc.googlesyndication.com" />
  38. <link rel="dns-prefetch" href="https://cm.g.doubleclick.net" />
  39. <link rel="dns-prefetch" href="https://www.gstatic.com" />
  40. <link rel="dns-prefetch" href="https://partner.googleadservices.com" />
  41. <link rel="dns-prefetch" href="https://www.google.com" />
  42. <script
  43. async="true"
  44. src="https://www.googletagmanager.com/gtag/js?id=G-F9SN9NZHQ2"></script>
  45. <script>
  46. window.dataLayer = window.dataLayer || [];
  47. function gtag() {
  48. dataLayer.push(arguments);
  49. }
  50. gtag("js", new Date());
  51. gtag("config", "G-F9SN9NZHQ2");
  52. </script>
  53. <link
  54. rel="alternate"
  55. hreflang="x-default"
  56. href="https://gethuman.com/phone-number/Chime" />
  57. <link
  58. rel="alternate"
  59. hreflang="en"
  60. href="https://gethuman.com/phone-number/Chime" />
  61. <link
  62. rel="alternate"
  63. hreflang="fr"
  64. href="https://fr.gethuman.com/phone-number/Chime" />
  65. <link
  66. rel="alternate"
  67. hreflang="es"
  68. href="https://es.gethuman.com/phone-number/Chime" />
  69. <link
  70. rel="alternate"
  71. hreflang="it"
  72. href="https://it.gethuman.com/phone-number/Chime" />
  73. <link
  74. rel="alternate"
  75. hreflang="de"
  76. href="https://de.gethuman.com/phone-number/Chime" />
  77. <link
  78. rel="alternate"
  79. hreflang="hi"
  80. href="https://hi.gethuman.com/phone-number/Chime" />
  81. <link
  82. rel="alternate"
  83. hreflang="zh"
  84. href="https://zh.gethuman.com/phone-number/Chime" />
  85. <link
  86. rel="alternate"
  87. hreflang="ar"
  88. href="https://ar.gethuman.com/phone-number/Chime" />
  89. <link
  90. rel="alternate"
  91. hreflang="ms"
  92. href="https://ms.gethuman.com/phone-number/Chime" />
  93. <link
  94. rel="alternate"
  95. hreflang="ru"
  96. href="https://ru.gethuman.com/phone-number/Chime" />
  97. <link rel="canonical" href="https://gethuman.com/phone-number/Chime" />
  98. <script async src="https://cdn.ampproject.org/v0.js"></script>
  99. <style amp-boilerplate>
  100. body {
  101. -webkit-animation: -amp-start 8s steps(1, end) 0s 1 normal both;
  102. -moz-animation: -amp-start 8s steps(1, end) 0s 1 normal both;
  103. -ms-animation: -amp-start 8s steps(1, end) 0s 1 normal both;
  104. animation: -amp-start 8s steps(1, end) 0s 1 normal both;
  105. }
  106. @-webkit-keyframes -amp-start {
  107. from {
  108. visibility: hidden;
  109. }
  110. to {
  111. visibility: visible;
  112. }
  113. }
  114. @-moz-keyframes -amp-start {
  115. from {
  116. visibility: hidden;
  117. }
  118. to {
  119. visibility: visible;
  120. }
  121. }
  122. @-ms-keyframes -amp-start {
  123. from {
  124. visibility: hidden;
  125. }
  126. to {
  127. visibility: visible;
  128. }
  129. }
  130. @-o-keyframes -amp-start {
  131. from {
  132. visibility: hidden;
  133. }
  134. to {
  135. visibility: visible;
  136. }
  137. }
  138. @keyframes -amp-start {
  139. from {
  140. visibility: hidden;
  141. }
  142. to {
  143. visibility: visible;
  144. }
  145. }
  146. </style>
  147. <noscript>
  148. <style amp-boilerplate>
  149. body {
  150. -webkit-animation: none;
  151. -moz-animation: none;
  152. -ms-animation: none;
  153. animation: none;
  154. }
  155. </style>
  156. </noscript>
  157. <script
  158. async
  159. custom-element="amp-form"
  160. src="https://cdn.ampproject.org/v0/amp-form-0.1.js"></script>
  161. <script
  162. async
  163. custom-element="amp-recaptcha-input"
  164. src="https://cdn.ampproject.org/v0/amp-recaptcha-input-0.1.js"></script>
  165. <link
  166. rel="shortcut icon"
  167. href="https://assets.gethuman.com/img/logo-32-cropped.png" />
  168. <link
  169. rel="icon"
  170. href="https://assets.gethuman.com/img/logo-32-cropped.png" />
  171. <link
  172. rel="apple-touch-icon"
  173. href="https://assets.gethuman.com/img/logo-60.png" />
  174. <link
  175. rel="apple-touch-icon"
  176. sizes="76x76"
  177. href="https://assets.gethuman.com/img/logo-76.png" />
  178. <link
  179. rel="apple-touch-icon"
  180. sizes="120x120"
  181. href="https://assets.gethuman.com/img/logo-120.png" />
  182. <link
  183. rel="apple-touch-icon"
  184. sizes="152x152"
  185. href="https://assets.gethuman.com/img/logo-152.png" />
  186. <link
  187. rel="apple-touch-icon"
  188. sizes="180x180"
  189. href="https://assets.gethuman.com/img/logo-180.png" />
  190. <link rel="amphtml" href="/a/phone-number/Chime" />
  191. <meta property="og:locale" content="en_US" />
  192. <meta property="og:type" content="article" />
  193. <meta
  194. property="og:title"
  195. content="Chime Phone Number +1 (828) 475-1533 | We dial to a rep for you + suggest what to say" />
  196. <meta
  197. property="og:description"
  198. content="Call Chime's Customer Service phone number by tapping here. Our AI-powered phone dials, navigates the phone maze, & gets a human on the line for you. It even suggests what to say during the call! Fast & unintrusive, no account or personal info is needed, works on desktop & mobile." />
  199. <meta
  200. property="og:url"
  201. content="https://gethuman.com/phone-number/Chime" />
  202. <meta property="og:site_name" content="gethuman.com" />
  203. <meta
  204. property="og:image"
  205. content="https://assets.gethuman.com/img/logo-v-500.png" />
  206. <meta property="og:image:width" content="500" />
  207. <meta property="og:image:height" content="500" />
  208. <meta
  209. property="og:image:alt"
  210. content="Call Chime's Customer Service phone number by tapping here. Our AI-powered phone dials, navigates the phone maze, & gets a human on the line for you. It even suggests what to say during the call! Fast & unintrusive, no account or personal info is needed, works on desktop & mobile." />
  211. <meta name="twitter:card" content="summary" />
  212. <meta name="twitter:site" content="@gethumancom" />
  213. <meta property="og:updated_time" content="2024-02-21T18:28:15+00:00" />
  214. <meta
  215. property="article:tag"
  216. content="Chime phone, Chime phone number, Chime customer phone number, Chime customer service phone number, Chime customer service phone, call Chime, Chime support number, Chime customer number, Chime customer service number, Chime 800 number, Chime customer support number, Chime 800, Chime toll free" />
  217. <meta
  218. property="article:section"
  219. content="Services - Virtual Services" />
  220. <meta
  221. property="article:published_time"
  222. content="2017-12-05T17:25:21+00:00" />
  223. <meta
  224. property="article:modified_time"
  225. content="2024-02-21T18:28:15+00:00" />
  226. <script type="application/ld+json">
  227. {
  228. "@context": "http://schema.org",
  229. "@type": "Article",
  230. "mainEntityOfPage": "https://gethuman.com/phone-number/Chime",
  231. "publisher": {
  232. "@type": "Organization",
  233. "name": "GetHuman",
  234. "url": "https://gethuman.com",
  235. "email": "hello@gethuman.com",
  236. "telephone": "+1 617-651-0250",
  237. "image": "https://assets.gethuman.com/img/logo-gethuman-left.png",
  238. "logo": {
  239. "@type": "ImageObject",
  240. "url": "https://assets.gethuman.com/img/logo-gethuman-left.png"
  241. },
  242. "description": "Contact companies faster and fix customer services issues easier.",
  243. "address": {
  244. "@type": "PostalAddress",
  245. "addressLocality": "Chestnut Hill",
  246. "addressRegion": "MA",
  247. "postalCode": "02467",
  248. "streetAddress": "675 VFW Parkway, Unit 328"
  249. }
  250. },
  251. "headline": "Chime Phone Number +1 (828) 475-1533 | We dial to a rep for you + suggest what to say",
  252. "datePublished": "2017-12-05T17:25:21+00:00",
  253. "dateModified": "2024-02-21T18:28:15+00:00",
  254. "author": {
  255. "@type": "Person",
  256. "name": "Christian Allen",
  257. "email": "hello+christian@gethuman.com",
  258. "image": "img/christian-headshot.png",
  259. "url": "https://www.linkedin.com/in/christiantallen/"
  260. },
  261. "description": "Call Chime's Customer Service phone number by tapping here. Our AI-powered phone dials, navigates the phone maze, & gets a human on the line for you. It even suggests what to say during the call! Fast & unintrusive, no account or personal info is needed, works on desktop & mobile.",
  262. "image": "https://assets.gethuman.com/img/logo-v-500.png"
  263. }
  264. </script>
  265. <script type="application/ld+json">
  266. {
  267. "@context": "http://schema.org",
  268. "@type": "Organization",
  269. "name": "GetHuman",
  270. "url": "https://gethuman.com",
  271. "email": "hello@gethuman.com",
  272. "telephone": "+1 617-651-0250",
  273. "image": "https://assets.gethuman.com/img/logo-gethuman-left.png",
  274. "logo": {
  275. "@type": "ImageObject",
  276. "url": "https://assets.gethuman.com/img/logo-gethuman-left.png"
  277. },
  278. "description": "Contact companies faster and fix customer services issues easier.",
  279. "address": {
  280. "@type": "PostalAddress",
  281. "addressLocality": "Chestnut Hill",
  282. "addressRegion": "MA",
  283. "postalCode": "02467",
  284. "streetAddress": "675 VFW Parkway, Unit 328"
  285. }
  286. }
  287. </script>
  288. <script type="application/ld+json">
  289. {
  290. "@context": "http://schema.org",
  291. "@type": "WebSite",
  292. "@id": "#website",
  293. "url": "https://gethuman.com/",
  294. "name": "GetHuman Inc",
  295. "potentialAction": {
  296. "@type": "SearchAction",
  297. "target": "https://gethuman.com/phone-number/search?s={search_term_string}",
  298. "query-input": "required name=search_term_string"
  299. }
  300. }
  301. </script>
  302. <style>
  303. @font-face {
  304. font-family: "Open Sans";
  305. font-style: normal;
  306. font-weight: 400;
  307. font-stretch: 100%;
  308. font-display: swap;
  309. src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu0SC55K5gw.woff2)
  310. format("woff2");
  311. unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF,
  312. U+A640-A69F, U+FE2E-FE2F;
  313. }
  314. @font-face {
  315. font-family: "Open Sans";
  316. font-style: normal;
  317. font-weight: 400;
  318. font-stretch: 100%;
  319. font-display: swap;
  320. src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu0SC55K5gw.woff2)
  321. format("woff2");
  322. unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1,
  323. U+2116;
  324. }
  325. @font-face {
  326. font-family: "Open Sans";
  327. font-style: normal;
  328. font-weight: 400;
  329. font-stretch: 100%;
  330. font-display: swap;
  331. src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu0SC55K5gw.woff2)
  332. format("woff2");
  333. unicode-range: U+1F00-1FFF;
  334. }
  335. @font-face {
  336. font-family: "Open Sans";
  337. font-style: normal;
  338. font-weight: 400;
  339. font-stretch: 100%;
  340. font-display: swap;
  341. src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu0SC55K5gw.woff2)
  342. format("woff2");
  343. unicode-range: U+0370-03FF;
  344. }
  345. @font-face {
  346. font-family: "Open Sans";
  347. font-style: normal;
  348. font-weight: 400;
  349. font-stretch: 100%;
  350. font-display: swap;
  351. src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu0SC55K5gw.woff2)
  352. format("woff2");
  353. unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC,
  354. U+FB1D-FB4F;
  355. }
  356. @font-face {
  357. font-family: "Open Sans";
  358. font-style: normal;
  359. font-weight: 400;
  360. font-stretch: 100%;
  361. font-display: swap;
  362. src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu0SC55K5gw.woff2)
  363. format("woff2");
  364. unicode-range: U+0102-0103, U+0110-0111, U+0128-0129,
  365. U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
  366. }
  367. @font-face {
  368. font-family: "Open Sans";
  369. font-style: normal;
  370. font-weight: 400;
  371. font-stretch: 100%;
  372. font-display: swap;
  373. src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu0SC55K5gw.woff2)
  374. format("woff2");
  375. unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020,
  376. U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  377. }
  378. @font-face {
  379. font-family: "Open Sans";
  380. font-style: normal;
  381. font-weight: 400;
  382. font-stretch: 100%;
  383. font-display: swap;
  384. src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-mu0SC55I.woff2)
  385. format("woff2");
  386. unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC,
  387. U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122,
  388. U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  389. }
  390. @font-face {
  391. font-family: "Open Sans";
  392. font-style: normal;
  393. font-weight: 600;
  394. font-stretch: 100%;
  395. font-display: swap;
  396. src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu0SC55K5gw.woff2)
  397. format("woff2");
  398. unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF,
  399. U+A640-A69F, U+FE2E-FE2F;
  400. }
  401. @font-face {
  402. font-family: "Open Sans";
  403. font-style: normal;
  404. font-weight: 600;
  405. font-stretch: 100%;
  406. font-display: swap;
  407. src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu0SC55K5gw.woff2)
  408. format("woff2");
  409. unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1,
  410. U+2116;
  411. }
  412. @font-face {
  413. font-family: "Open Sans";
  414. font-style: normal;
  415. font-weight: 600;
  416. font-stretch: 100%;
  417. font-display: swap;
  418. src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu0SC55K5gw.woff2)
  419. format("woff2");
  420. unicode-range: U+1F00-1FFF;
  421. }
  422. @font-face {
  423. font-family: "Open Sans";
  424. font-style: normal;
  425. font-weight: 600;
  426. font-stretch: 100%;
  427. font-display: swap;
  428. src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu0SC55K5gw.woff2)
  429. format("woff2");
  430. unicode-range: U+0370-03FF;
  431. }
  432. @font-face {
  433. font-family: "Open Sans";
  434. font-style: normal;
  435. font-weight: 600;
  436. font-stretch: 100%;
  437. font-display: swap;
  438. src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu0SC55K5gw.woff2)
  439. format("woff2");
  440. unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC,
  441. U+FB1D-FB4F;
  442. }
  443. @font-face {
  444. font-family: "Open Sans";
  445. font-style: normal;
  446. font-weight: 600;
  447. font-stretch: 100%;
  448. font-display: swap;
  449. src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu0SC55K5gw.woff2)
  450. format("woff2");
  451. unicode-range: U+0102-0103, U+0110-0111, U+0128-0129,
  452. U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
  453. }
  454. @font-face {
  455. font-family: "Open Sans";
  456. font-style: normal;
  457. font-weight: 600;
  458. font-stretch: 100%;
  459. font-display: swap;
  460. src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu0SC55K5gw.woff2)
  461. format("woff2");
  462. unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020,
  463. U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  464. }
  465. @font-face {
  466. font-family: "Open Sans";
  467. font-style: normal;
  468. font-weight: 600;
  469. font-stretch: 100%;
  470. font-display: swap;
  471. src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-mu0SC55I.woff2)
  472. format("woff2");
  473. unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC,
  474. U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122,
  475. U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  476. }
  477. * {
  478. box-sizing: border-box;
  479. }
  480. html {
  481. -webkit-text-size-adjust: 100%;
  482. }
  483. body,
  484. input,
  485. textarea {
  486. font-size: 16px;
  487. }
  488. body {
  489. margin: 0;
  490. min-height: 100vh;
  491. scroll-behavior: smooth;
  492. text-rendering: optimizeSpeed;
  493. line-height: 1.5;
  494. font-family: "Open Sans", Arial, Helvetica, sans-serif;
  495. color: #444;
  496. overflow-wrap: break-word;
  497. }
  498. .input-group > amp-autocomplete > input {
  499. font-family: "Open Sans", Arial, Helvetica, sans-serif;
  500. }
  501. a,
  502. a:active,
  503. a:focus,
  504. button,
  505. button:active,
  506. button:focus,
  507. input,
  508. input:active,
  509. input:focus,
  510. li,
  511. li:focus,
  512. select,
  513. select:active,
  514. select:focus,
  515. textarea,
  516. textarea:active,
  517. textarea:focus {
  518. outline: 0;
  519. }
  520. .link-big,
  521. .link-jumbo,
  522. .link-strong,
  523. .stats > div > small:last-of-type,
  524. .text-sembld,
  525. .tile-fl-half-bld > a,
  526. b,
  527. strong {
  528. font-weight: bolder;
  529. }
  530. amp-autocomplete > input,
  531. button,
  532. input,
  533. select,
  534. textarea {
  535. margin: 0;
  536. font: inherit;
  537. }
  538. button,
  539. select {
  540. text-transform: none;
  541. }
  542. [type="button"],
  543. [type="reset"],
  544. [type="submit"],
  545. button {
  546. -webkit-appearance: button;
  547. }
  548. h1,
  549. h2,
  550. h3,
  551. h4,
  552. h5,
  553. h6 {
  554. margin: 0 0 0.67em 0;
  555. }
  556. h1 {
  557. font-size: 3rem;
  558. }
  559. .txt-lg {
  560. font-size: 2.2rem;
  561. }
  562. #lay-fl-main > h1:nth-child(1) {
  563. line-height: 1.1em;
  564. margin: 0 0 0.25em 0;
  565. }
  566. .bar-share > a.btn-jumbo,
  567. .bar-share > button.btn-jumbo,
  568. .btn-jumbo,
  569. .btn.btn-jumbo,
  570. .link-jumbo,
  571. h2 {
  572. font-size: 1.875rem;
  573. }
  574. #lay-fl-main > h2:nth-child(2),
  575. #lay-fl-main > h3:nth-child(2) {
  576. line-height: 1.1em;
  577. margin: 0 0 1.25em 0;
  578. font-weight: 400;
  579. color: #888;
  580. -webkit-font-smoothing: antialiased;
  581. -moz-osx-font-smoothing: grayscale;
  582. font-size: 1.5rem;
  583. }
  584. .link-big,
  585. h3 {
  586. font-size: 1.5rem;
  587. }
  588. .bar-share > a.btn-lg,
  589. .bar-share > button.btn-lg,
  590. .btn-lg,
  591. .btn.btn-lg,
  592. .editorial > h1,
  593. .editorial > h2,
  594. .editorial > h3,
  595. .text-more,
  596. h4 {
  597. font-size: 1.25rem;
  598. }
  599. h5 {
  600. font-size: 1rem;
  601. }
  602. h6 {
  603. font-size: 0.8rem;
  604. text-transform: uppercase;
  605. color: #999;
  606. }
  607. .para,
  608. p {
  609. line-height: 170%;
  610. }
  611. p {
  612. margin-bottom: 3rem;
  613. }
  614. .paras > p {
  615. margin-bottom: 1.2rem;
  616. }
  617. .editorial > p {
  618. margin-bottom: auto;
  619. }
  620. ul {
  621. padding-inline-start: 1.5em;
  622. }
  623. li {
  624. margin-bottom: 0.5em;
  625. }
  626. .dark-code,
  627. .small,
  628. ol[itemtype],
  629. small,
  630. th {
  631. font-size: 0.8rem;
  632. }
  633. @media (max-width: 767px) {
  634. h1 {
  635. font-size: 2.5rem;
  636. }
  637. .link-jumbo,
  638. h2 {
  639. font-size: 1.5rem;
  640. }
  641. #lay-fl-main > h2:nth-child(2),
  642. .link-big,
  643. h3 {
  644. font-size: 1.25rem;
  645. }
  646. .editorial > h1,
  647. .editorial > h2,
  648. .editorial > h3,
  649. h4 {
  650. font-size: 1.125rem;
  651. }
  652. }
  653. @media (max-width: 575px) {
  654. h1 {
  655. font-size: 2rem;
  656. }
  657. .link-jumbo,
  658. h2 {
  659. font-size: 1.25rem;
  660. }
  661. #lay-fl-main > h2:nth-child(2),
  662. .link-big,
  663. h3 {
  664. font-size: 1.125rem;
  665. }
  666. .editorial > h1,
  667. .editorial > h2,
  668. .editorial > h3,
  669. h4 {
  670. font-size: 1.125rem;
  671. }
  672. }
  673. hr {
  674. margin: 1em 0;
  675. }
  676. .link,
  677. a,
  678. amp-autocomplete > div[role="listbox"] {
  679. color: #00a9ea;
  680. cursor: pointer;
  681. text-decoration: none;
  682. }
  683. .link-neutral,
  684. .link-subtle {
  685. color: #444;
  686. }
  687. .grp-subtle:hover > .link-subtle,
  688. .link:hover,
  689. a:hover {
  690. filter: brightness(85%);
  691. }
  692. .grp-subtle:hover > .link-subtle,
  693. .link-subtle:hover {
  694. color: #00a9ea;
  695. }
  696. [gh-tap],
  697. [ng-click] {
  698. cursor: pointer;
  699. }
  700. .link-big,
  701. .link-jumbo,
  702. .link-strong {
  703. display: block;
  704. }
  705. .link-big,
  706. .link-jumbo,
  707. .link-strong {
  708. -webkit-font-smoothing: antialiased;
  709. -moz-osx-font-smoothing: grayscale;
  710. }
  711. a.neutral {
  712. color: #444;
  713. }
  714. a.neutral:hover {
  715. color: #00a9ea;
  716. }
  717. .bar-share > a,
  718. .bar-share > button,
  719. .btn,
  720. button {
  721. cursor: pointer;
  722. -webkit-font-smoothing: antialiased;
  723. -moz-osx-font-smoothing: grayscale;
  724. display: inline-block;
  725. font-weight: 600;
  726. text-align: center;
  727. white-space: nowrap;
  728. vertical-align: middle;
  729. border: 1px solid transparent;
  730. padding: 0.75rem 1.5rem;
  731. font-size: inherit;
  732. transition: all 0.2s ease-in-out;
  733. line-height: 1.5em;
  734. box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  735. border-radius: 0.25em;
  736. color: #fff;
  737. background-color: #00a9ea;
  738. }
  739. .bar-share > a:hover,
  740. .bar-share > button:hover,
  741. .btn:hover,
  742. button:hover,
  743. select:hover {
  744. filter: contrast(125%);
  745. }
  746. .bar-share > a + .bar-share > a,
  747. .bar-share > button + .bar-share > button,
  748. .btn + .btn,
  749. button + button {
  750. margin-left: 1em;
  751. }
  752. .bar-share > a.btn-inv,
  753. .bar-share > button.btn-inv,
  754. .btn-inv,
  755. .btn.btn-inv {
  756. border: 1px solid #00a9ea;
  757. color: #00a9ea;
  758. background-color: transparent;
  759. width: 100%;
  760. }
  761. .bar-share > a.btn-link,
  762. .bar-share > button.btn-link,
  763. .btn-link,
  764. .btn.btn-link {
  765. border: 2px solid transparent;
  766. color: #00a9ea;
  767. background-color: transparent;
  768. box-shadow: none;
  769. }
  770. .btn-block {
  771. display: block;
  772. }
  773. amp-autocomplete > input,
  774. input,
  775. textarea {
  776. display: block;
  777. width: 100%;
  778. min-height: 50px;
  779. border: 1px solid #ccc;
  780. margin-top: 0;
  781. }
  782. amp-autocomplete {
  783. width: 100%;
  784. }
  785. amp-autocomplete > input,
  786. input {
  787. height: 50px;
  788. padding: 0 0.5rem;
  789. }
  790. amp-autocomplete > input {
  791. border-radius: 0;
  792. }
  793. .input-group > label {
  794. transition: all 0.2s cubic-bezier(0.42, 0, 1, 1);
  795. font-size: 0.75rem;
  796. line-height: 1;
  797. font-weight: 600;
  798. position: absolute;
  799. top: 22px;
  800. left: 9px;
  801. opacity: 0;
  802. visibility: hidden;
  803. color: #ccc;
  804. z-index: 100;
  805. }
  806. amp-autocomplete > div[role="listbox"] {
  807. width: 100%;
  808. margin-left: 0;
  809. margin-top: 0.25rem;
  810. }
  811. amp-autocomplete > div[role="listbox"] > div {
  812. border: 1px solid transparent;
  813. padding: 0.5rem;
  814. }
  815. select {
  816. display: block;
  817. color: #444;
  818. padding: 0.75em 2em 0.75em 0.5em;
  819. width: 100%;
  820. max-width: 100%;
  821. margin: 0;
  822. border-radius: 0;
  823. border: 1px solid #ccc;
  824. -moz-appearance: none;
  825. -webkit-appearance: none;
  826. appearance: none;
  827. background: #fff
  828. url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E")
  829. no-repeat right 0.7em top 50%;
  830. background-size: 0.65em auto, 100%;
  831. }
  832. select::-ms-expand {
  833. display: none;
  834. }
  835. input::-webkit-input-placeholder,
  836. select.ng-invalid,
  837. textarea::-webkit-input-placeholder {
  838. color: #888;
  839. }
  840. .input-group {
  841. position: relative;
  842. height: 50px;
  843. margin-bottom: 1.5rem;
  844. }
  845. .input-group.combo,
  846. .input-group.combo > button {
  847. height: 50px;
  848. }
  849. .input-group.large,
  850. .input-group.large > amp-autocomplete > input,
  851. .input-group.large > button,
  852. .input-group.large > input {
  853. height: 60px;
  854. }
  855. .input-group.textarea-group {
  856. height: auto;
  857. }
  858. .input-group > span {
  859. height: 50px;
  860. font-size: 1rem;
  861. font-weight: 600;
  862. padding: 0.8rem 0.6rem 0.7rem 0.6rem;
  863. background-color: #00a9ea;
  864. }
  865. .large > amp-autocomplete > input,
  866. .large > input {
  867. font-size: 1.1rem;
  868. padding: 0 0.75rem;
  869. line-height: 1.5rem;
  870. }
  871. input.ng-not-empty {
  872. padding-top: 26px;
  873. padding-bottom: 6px;
  874. }
  875. textarea.ng-not-empty {
  876. padding-top: 26px;
  877. }
  878. .large > input.ng-not-empty {
  879. padding-top: 24px;
  880. }
  881. .large > label {
  882. left: 12px;
  883. }
  884. .prefixed > label {
  885. padding-left: 2.3rem;
  886. }
  887. .prefixed > span {
  888. color: #fff;
  889. }
  890. .input-group > .ng-not-empty + .dropdown-menu + label,
  891. .input-group > .ng-not-empty + label {
  892. top: 7px;
  893. opacity: 1;
  894. visibility: visible;
  895. }
  896. .input-group > small {
  897. font-size: 0.75rem;
  898. line-height: 1;
  899. font-weight: 600;
  900. color: #e85674;
  901. position: absolute;
  902. bottom: -0.9rem;
  903. }
  904. .ng-not-empty.ng-invalid {
  905. border-color: #e85674;
  906. }
  907. .ng-not-empty.ng-invalid:focus {
  908. border-color: #ccc;
  909. }
  910. .ng-dirty.ng-invalid > button,
  911. .ng-dirty.ng-invalid > span {
  912. border-color: #ccc;
  913. background-color: #ccc;
  914. }
  915. .input-group.search > input {
  916. border-color: #ccc;
  917. }
  918. .input-group.search > amp-autocomplete > input:focus,
  919. .input-group.search > input:focus,
  920. input:focus,
  921. textarea:focus {
  922. border-color: #00a9ea;
  923. }
  924. .combo {
  925. display: flex;
  926. border: 0.25rem;
  927. }
  928. .combo,
  929. .input-group > span,
  930. input,
  931. select,
  932. textarea {
  933. box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
  934. }
  935. .combo > amp-autocomplete > input,
  936. .combo > button,
  937. .combo > input,
  938. .input-group.combo > span {
  939. box-shadow: none;
  940. }
  941. .combo > amp-autocomplete,
  942. .combo > input {
  943. flex: 3;
  944. }
  945. .combo > button {
  946. border-radius: 0 0.25rem 0.25rem 0;
  947. box-shadow: none;
  948. height: 50px;
  949. }
  950. input[type="checkbox"] {
  951. position: absolute;
  952. margin: 8px 0 0 16px;
  953. padding: 0;
  954. box-shadow: none;
  955. display: inline;
  956. min-height: auto;
  957. width: auto;
  958. height: auto;
  959. cursor: pointer;
  960. }
  961. input[type="checkbox"] + label {
  962. position: relative;
  963. padding: 5px 0 0 50px;
  964. line-height: 2em;
  965. cursor: pointer;
  966. }
  967. input[type="checkbox"] + label:before {
  968. content: "";
  969. position: absolute;
  970. display: block;
  971. left: 0;
  972. top: 0;
  973. width: 40px;
  974. height: 24px;
  975. border-radius: 16px;
  976. background: #fff;
  977. border: 1px solid #d9d9d9;
  978. transition: all 0.3s;
  979. }
  980. input[type="checkbox"] + label:after {
  981. content: "";
  982. position: absolute;
  983. display: block;
  984. left: 0;
  985. top: 0;
  986. width: 24px;
  987. height: 24px;
  988. border-radius: 16px;
  989. background: #fff;
  990. border: 1px solid #d9d9d9;
  991. transition: all 0.3s;
  992. }
  993. input[type="checkbox"] + label:hover:after {
  994. box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  995. }
  996. input[type="checkbox"]:checked + label:after {
  997. margin-left: 16px;
  998. }
  999. input[type="checkbox"]:checked + label:before {
  1000. background: #00a9ea;
  1001. }
  1002. input[type="submit"].link {
  1003. appearance: none;
  1004. background-color: transparent;
  1005. border: none;
  1006. display: inline;
  1007. width: auto;
  1008. height: auto;
  1009. box-shadow: none;
  1010. min-height: auto;
  1011. padding: unset;
  1012. }
  1013. .amp-form-submit-success > input[type="submit"].link {
  1014. display: none;
  1015. }
  1016. .dropdown-menu {
  1017. position: absolute;
  1018. z-index: 200;
  1019. margin-top: 3px;
  1020. padding: 5px 0;
  1021. border-radius: 0 0 0.25rem 0.25rem;
  1022. border: 1px solid transparent;
  1023. background-color: #fff;
  1024. box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  1025. width: 100%;
  1026. list-style-type: none;
  1027. text-align: left;
  1028. }
  1029. amp-autocomplete > div[role="listbox"] {
  1030. text-align: left;
  1031. }
  1032. .dropdown-menu > li {
  1033. padding: 0.5em 0.75em;
  1034. margin-bottom: 0.1em;
  1035. }
  1036. .dropdown-menu > li.active,
  1037. .dropdown-menu > li:hover {
  1038. background-color: #f6f6f6;
  1039. }
  1040. .dropdown-menu > li > a {
  1041. display: block;
  1042. }
  1043. dark-code,
  1044. textarea {
  1045. border: 1px solid #ccc;
  1046. width: 100%;
  1047. resize: none;
  1048. padding: 1rem 0.5rem;
  1049. line-height: 150%;
  1050. min-height: 100px;
  1051. }
  1052. input + .dropdown-menu + label + small,
  1053. input + label + small,
  1054. textarea + label + small {
  1055. display: none;
  1056. }
  1057. .ng-dirty.ng-invalid + .dropdown-menu + label + small,
  1058. .ng-dirty.ng-invalid + label + small {
  1059. display: block;
  1060. }
  1061. .ng-invalid + label + small + button,
  1062. .required.ng-empty + label + small + button {
  1063. opacity: 0.7;
  1064. }
  1065. .mid {
  1066. width: 100%;
  1067. height: 100vh;
  1068. line-height: 100vh;
  1069. text-align: center;
  1070. vertical-align: middle;
  1071. }
  1072. .mb-0 {
  1073. margin-bottom: 0;
  1074. }
  1075. .mb-r {
  1076. margin-bottom: 0.4rem;
  1077. }
  1078. .mb-u {
  1079. margin-bottom: 1.2rem;
  1080. }
  1081. .mt-0 {
  1082. margin-top: 0;
  1083. }
  1084. .mt-r,
  1085. .screen-bottom > div + div {
  1086. margin-top: 0.4rem;
  1087. }
  1088. .mt-100,
  1089. .mt-u {
  1090. margin-top: 1.2rem;
  1091. }
  1092. .mt-200,
  1093. amp-img + h2,
  1094. h1 + p,
  1095. img + h2 {
  1096. margin-top: 2em;
  1097. }
  1098. .mt-400 {
  1099. margin-top: 4em;
  1100. }
  1101. #lay-fl-bottom > div,
  1102. #lay-fl-main,
  1103. #lay-fl-main > div,
  1104. #lay-fl-main > table,
  1105. #lay-fl-right,
  1106. #lay-fl-right > div,
  1107. .mb-sec,
  1108. .post-hero > div {
  1109. margin-bottom: 50px;
  1110. }
  1111. @media (max-width: 575px) {
  1112. #lay-fl-bottom > div,
  1113. #lay-fl-main,
  1114. #lay-fl-main > div,
  1115. #lay-fl-main > table,
  1116. #lay-fl-right,
  1117. #lay-fl-right > div,
  1118. .mb-sec,
  1119. .post-hero > div {
  1120. margin-bottom: 25px;
  1121. }
  1122. }
  1123. .mb-25 {
  1124. margin-bottom: 0.25rem;
  1125. }
  1126. .card > div > div,
  1127. .mb-50 {
  1128. margin-bottom: 0.5rem;
  1129. }
  1130. .card > div > .mb-100,
  1131. .mb-100 {
  1132. margin-bottom: 1rem;
  1133. }
  1134. .card > div > .mb-200,
  1135. .mb-200 {
  1136. margin-bottom: 2rem;
  1137. }
  1138. .card > div > div:last-child {
  1139. margin-bottom: 0.75rem;
  1140. }
  1141. .card.card-nbr > div > div:last-child {
  1142. margin-bottom: 0;
  1143. }
  1144. .list-block > a,
  1145. .list-block > div,
  1146. .tile-fl-half-bld > a,
  1147. .tile-fluid-half > a,
  1148. .tile-fluid-half > div {
  1149. display: block;
  1150. padding: 0.25rem 0;
  1151. margin-bottom: 0.25rem;
  1152. }
  1153. .list-spaced > div {
  1154. padding: 0.25rem 0;
  1155. margin-bottom: 0.25rem;
  1156. }
  1157. .list-block > a.bar-share > a,
  1158. .list-block > a.bar-share > button,
  1159. .list-block > a.btn {
  1160. padding: 0.75rem 1.5rem;
  1161. margin-bottom: 0.5rem;
  1162. }
  1163. .list-large > a,
  1164. .paged-items > a,
  1165. .paged-items > div:first-child > a {
  1166. display: block;
  1167. padding: 1.25em 0;
  1168. }
  1169. .list-large > a {
  1170. border-bottom: 1px solid #ccc;
  1171. }
  1172. .list-large > a:first-child {
  1173. border-top: 1px solid #ccc;
  1174. }
  1175. .list-tiled > a,
  1176. .list-tiled > b,
  1177. .list-tiled > span {
  1178. display: inline-block;
  1179. padding: 0.5em;
  1180. margin: 0 0.1em 0.1em 0;
  1181. }
  1182. .list-quotes > div,
  1183. .trunc {
  1184. overflow-x: hidden;
  1185. white-space: nowrap;
  1186. text-overflow: ellipsis;
  1187. display: block;
  1188. }
  1189. .list-quotes > div:after,
  1190. .list-quotes > div:before,
  1191. .quotes > div:after,
  1192. .quotes > div:before {
  1193. content: '"';
  1194. }
  1195. .list-block > button {
  1196. margin-top: 1rem;
  1197. }
  1198. .list-tags > div {
  1199. display: inline-block;
  1200. padding: 0.5em 1em;
  1201. margin: 0 1em 1em 0;
  1202. background-color: #ddd;
  1203. border-radius: 0.25em;
  1204. }
  1205. .list-labeled > h6 {
  1206. margin: 1.5em auto 0.25em auto;
  1207. }
  1208. .stats > div {
  1209. border-bottom: 1px solid #ccc;
  1210. padding: 0.5em 0;
  1211. }
  1212. .stats > div:first-of-type {
  1213. border-top: 1px solid #ccc;
  1214. }
  1215. .btn-success {
  1216. background-color: #72d469;
  1217. }
  1218. .btn-danger {
  1219. background-color: #e85674;
  1220. }
  1221. i {
  1222. display: inline-block;
  1223. }
  1224. .bg-icon,
  1225. .btn-icon,
  1226. .icon,
  1227. .img-icon,
  1228. i {
  1229. vertical-align: middle;
  1230. }
  1231. .bg-icon,
  1232. .btn-icon,
  1233. .img-icon,
  1234. .in-icon,
  1235. i {
  1236. width: 18px;
  1237. height: 18px;
  1238. }
  1239. .icon,
  1240. i {
  1241. background: transparent no-repeat center left;
  1242. background-size: 18px 18px;
  1243. }
  1244. .icon {
  1245. padding-left: 30px;
  1246. }
  1247. .bg-icon {
  1248. background-repeat: no-repeat;
  1249. }
  1250. .btn-icon {
  1251. fill: #fff;
  1252. margin-left: -0.25em;
  1253. }
  1254. .btn-inv > .btn-icon {
  1255. fill: currentColor;
  1256. }
  1257. .btn-icon + span,
  1258. div > span + a,
  1259. i + span {
  1260. margin-left: 0.5em;
  1261. }
  1262. .icon-star {
  1263. background-image: url(https://gethuman.com/img/icon/orange/star.svg);
  1264. }
  1265. .icon-star-half-1 {
  1266. background-image: url(https://gethuman.com/img/icon/orange/star-half-1.svg);
  1267. }
  1268. .icon-star-2 {
  1269. background-image: url(https://gethuman.com/img/icon/orange/star-2.svg);
  1270. }
  1271. .btn-jumbo {
  1272. padding: 0.65em 1.5em;
  1273. width: 100%;
  1274. }
  1275. .btn-jumbo > svg {
  1276. width: 27px;
  1277. height: 27px;
  1278. }
  1279. .btn-lg {
  1280. padding: 0.6em 1.25em;
  1281. width: 100%;
  1282. }
  1283. .bar-share > a.trunc,
  1284. .bar-share > button.trunc,
  1285. .btn.trunc {
  1286. max-width: calc(100vw - 32px);
  1287. }
  1288. .row,
  1289. .stats > div,
  1290. .tile-fl-half-bld,
  1291. .tile-fluid-half {
  1292. display: flex;
  1293. flex-wrap: wrap;
  1294. margin-right: -15px;
  1295. margin-left: -15px;
  1296. }
  1297. #lay-fl,
  1298. #lay-fl-mandr {
  1299. display: flex;
  1300. flex-wrap: wrap;
  1301. }
  1302. #lay-fl {
  1303. min-height: 100vh;
  1304. }
  1305. #lay-fl-mandr {
  1306. min-height: 75vh;
  1307. }
  1308. #lay-fl > div {
  1309. flex: 1;
  1310. }
  1311. #lay-fl-nav-left {
  1312. max-width: 13.6%;
  1313. background-image: url(https://assets.gethuman.com/img/blingSidebarBG2.png),
  1314. linear-gradient(-44deg, #69cf96 0, #72d469 96%);
  1315. background-position: center bottom, bottom;
  1316. background-repeat: no-repeat, no-repeat;
  1317. background-size: contain, cover;
  1318. position: fixed;
  1319. top: 0;
  1320. left: 0;
  1321. bottom: 0;
  1322. width: 100%;
  1323. display: none;
  1324. }
  1325. #lay-fl-nav-left > a {
  1326. max-width: 198px;
  1327. height: 62px;
  1328. display: block;
  1329. margin-bottom: 50px;
  1330. background: url("./bling-logo-muted2.webp")
  1331. top left no-repeat;
  1332. background-size: contain;
  1333. }
  1334. #lay-fl-nav-left > div {
  1335. padding: 0 15px;
  1336. }
  1337. #lay-fl-nav-left > div > div > a,
  1338. #lay-fl-nav-left > small {
  1339. opacity: 0.5;
  1340. color: #fff;
  1341. }
  1342. #lay-fl-nav-left > small {
  1343. position: fixed;
  1344. left: 0;
  1345. bottom: 0;
  1346. padding: 15px;
  1347. }
  1348. #lay-fl-con {
  1349. background-color: #f9f9f9;
  1350. flex: 0 0 100%;
  1351. max-width: 100%;
  1352. min-height: 100vh;
  1353. }
  1354. #lay-fl-nav-top {
  1355. margin-bottom: 5vh;
  1356. height: 60px;
  1357. background-color: #72d469;
  1358. }
  1359. .ph-mode > #lay-fl-nav-top {
  1360. margin-bottom: 0;
  1361. }
  1362. #lay-fl-nav-top > a {
  1363. display: block;
  1364. height: 60px;
  1365. background: url(https://assets.gethuman.com/img/simple-logo-muted.png)
  1366. center no-repeat;
  1367. background-size: 118px 20px;
  1368. }
  1369. #lay-fl-main,
  1370. #lay-fl-right {
  1371. margin-left: 4.5%;
  1372. flex: 0 0 91%;
  1373. max-width: 91%;
  1374. }
  1375. #lay-fl-bottom {
  1376. text-align: center;
  1377. margin-bottom: 3rem;
  1378. }
  1379. #lay-fl-bottom > div {
  1380. padding: 0 1rem;
  1381. }
  1382. #lay-fl-bottom > .sec-below {
  1383. padding-top: 3rem;
  1384. border-top: 1px solid #ccc;
  1385. }
  1386. .col-fluid-half,
  1387. .stats > div > small,
  1388. .tile-fl-half-bld > a,
  1389. .tile-fluid-half > a,
  1390. .tile-fluid-half > div,
  1391. .tile-fluid-half > small {
  1392. position: relative;
  1393. flex: 0 0 100%;
  1394. min-height: 1px;
  1395. padding-right: 15px;
  1396. padding-left: 15px;
  1397. }
  1398. .tile-fluid-half.tile-ul > div:last-child {
  1399. margin-top: -2rem;
  1400. }
  1401. @media (min-width: 680px) {
  1402. .col-fluid-half,
  1403. .stats > div > small,
  1404. .tile-fl-half-bld > a,
  1405. .tile-fluid-half > a,
  1406. .tile-fluid-half > div {
  1407. flex: 0 0 50%;
  1408. max-width: 50%;
  1409. }
  1410. .tile-fluid-half.tile-ul > div:last-child {
  1411. margin-top: 0;
  1412. }
  1413. }
  1414. @media (min-width: 752px) {
  1415. #lay-fl-main {
  1416. margin-left: 5.9%;
  1417. flex: 0 0 44.7%;
  1418. max-width: 44.7%;
  1419. }
  1420. #lay-fl-right {
  1421. margin-left: 5.9%;
  1422. flex: 0 0 40%;
  1423. max-width: 40%;
  1424. }
  1425. .ph-mode > #lay-fl-nav-top {
  1426. margin-bottom: 5vh;
  1427. }
  1428. .col-fluid-half,
  1429. .stats > div > small,
  1430. .tile-fl-half-bld > a,
  1431. .tile-fluid-half > a,
  1432. .tile-fluid-half > div {
  1433. flex: 0 0 100%;
  1434. max-width: 100%;
  1435. }
  1436. .tile-fluid-half.tile-ul > div:last-child {
  1437. margin-top: -2rem;
  1438. }
  1439. .ghp-ad-ban,
  1440. [data-ad-slot-id="8436243126"] {
  1441. margin-bottom: 0;
  1442. height: 0;
  1443. display: none;
  1444. }
  1445. .ghp-ad-ban > ins,
  1446. [data-ad-slot-id="8436243126"] > ins {
  1447. display: none;
  1448. height: 0;
  1449. }
  1450. }
  1451. @media (min-width: 1120px) {
  1452. #lay-fl-main {
  1453. margin-left: 3.2%;
  1454. flex: 0 0 65%;
  1455. max-width: 65%;
  1456. }
  1457. #lay-fl-right {
  1458. margin-left: 3.2%;
  1459. flex: 0 0 26.8%;
  1460. max-width: 26.8%;
  1461. }
  1462. .col-fluid-half,
  1463. .stats > div > small,
  1464. .tile-fl-half-bld > a,
  1465. .tile-fluid-half > a,
  1466. .tile-fluid-half > div {
  1467. flex: 0 0 50%;
  1468. max-width: 50%;
  1469. }
  1470. .tile-fluid-half.tile-ul > div:last-child {
  1471. margin-top: 0;
  1472. }
  1473. }
  1474. @media (min-width: 1180px) {
  1475. #lay-fl-main {
  1476. margin-left: 3.8%;
  1477. flex: 0 0 61.7%;
  1478. max-width: 61.7%;
  1479. }
  1480. #lay-fl-right {
  1481. margin-left: 3.8%;
  1482. flex: 0 0 28.5%;
  1483. max-width: 28.5%;
  1484. }
  1485. }
  1486. @media (min-width: 1364px) {
  1487. #lay-fl-con {
  1488. margin-left: 13.6%;
  1489. flex: 0 0 86.4%;
  1490. max-width: 86.4%;
  1491. padding-top: 50px;
  1492. }
  1493. #lay-fl-nav-top {
  1494. display: none;
  1495. }
  1496. #lay-fl-nav-left {
  1497. display: block;
  1498. }
  1499. }
  1500. @media (max-width: 751px) {
  1501. [data-ad-slot-id="5477495495"],
  1502. [data-ad-slot-id="5498931315"] {
  1503. height: 0;
  1504. }
  1505. .no-mob,
  1506. [data-ad-slot-id="5477495495"] > ins,
  1507. [data-ad-slot-id="5498931315"] > ins {
  1508. display: none;
  1509. height: 0;
  1510. }
  1511. }
  1512. .viewMainClient {
  1513. display: none;
  1514. }
  1515. .viewMainClient.preboot-loaded {
  1516. display: block;
  1517. }
  1518. li[itemprop] {
  1519. display: inline-block;
  1520. margin-left: 0.5em;
  1521. }
  1522. li[itemprop]:first-of-type {
  1523. margin-left: 0;
  1524. }
  1525. li[itemprop] > a,
  1526. li[itemprop] > span {
  1527. color: #888;
  1528. }
  1529. ol[itemscope] {
  1530. padding-left: 0;
  1531. }
  1532. .bar-share {
  1533. height: 70px;
  1534. line-height: 69px;
  1535. vertical-align: middle;
  1536. margin-bottom: 1rem;
  1537. }
  1538. .bar-share > a,
  1539. .bar-share > button {
  1540. display: inline-block;
  1541. padding: 1rem 1rem;
  1542. margin-left: 1em;
  1543. color: #fff;
  1544. line-height: 1em;
  1545. }
  1546. .bar-share > :first-child {
  1547. margin-left: 0;
  1548. }
  1549. .bar-share > a > div,
  1550. .bar-share > button > .btn-icon {
  1551. width: 24px;
  1552. height: 24px;
  1553. }
  1554. .bar-share > .btn-share-e {
  1555. background-color: #72d469;
  1556. }
  1557. .bar-share > .btn-share-g {
  1558. background-color: #cf4134;
  1559. }
  1560. .bar-share > .btn-share-t {
  1561. background-color: #3ebede;
  1562. }
  1563. .bar-share > .btn-share-f {
  1564. background-color: #4c66a4;
  1565. }
  1566. .card,
  1567. .tile-fluid-half > .card {
  1568. background: #fff;
  1569. box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
  1570. border-radius: 5px;
  1571. margin-bottom: 3rem;
  1572. padding: 1rem;
  1573. position: relative;
  1574. }
  1575. .card.phone,
  1576. .dark-code {
  1577. background-color: #120f24;
  1578. color: #fff;
  1579. }
  1580. .dark-code {
  1581. overflow-x: scroll;
  1582. padding: 1rem;
  1583. margin: 0;
  1584. }
  1585. .card.phone {
  1586. padding: 2rem;
  1587. text-align: center;
  1588. }
  1589. @media (max-width: 752px) {
  1590. #lay-fl-main > .card {
  1591. margin-left: -4.71%;
  1592. border-radius: 0;
  1593. width: 109.42%;
  1594. padding-left: 4.5%;
  1595. padding-right: 4.5%;
  1596. }
  1597. }
  1598. .card.card-nbr {
  1599. padding-left: 60px;
  1600. margin-bottom: 2rem;
  1601. }
  1602. .card > small {
  1603. width: 30px;
  1604. height: 30px;
  1605. background-color: #72d469;
  1606. border-radius: 50%;
  1607. display: flex;
  1608. align-items: center;
  1609. justify-content: center;
  1610. color: #fff;
  1611. font-weight: 600;
  1612. position: absolute;
  1613. left: 15px;
  1614. }
  1615. .list-block > div > a + small,
  1616. .list-block > div > span + small {
  1617. color: #72d469;
  1618. margin-left: 0.4rem;
  1619. }
  1620. .ur-ad {
  1621. display: block;
  1622. }
  1623. .ur-ad,
  1624. [data-ad-slot-id] {
  1625. width: 100%;
  1626. min-height: 1px;
  1627. }
  1628. .ur-ad > ins,
  1629. [data-ad-slot-id="8436243126"] {
  1630. margin-bottom: 1rem;
  1631. }
  1632. [data-ad-slot-id="5498931315"] {
  1633. position: sticky;
  1634. top: 10px;
  1635. }
  1636. .ur-ad > ins,
  1637. [data-ad-slot-id] > ins {
  1638. display: block;
  1639. }
  1640. [data-ad-slot-id="8436243126"] > ins {
  1641. height: 320px;
  1642. }
  1643. .ghp-ad-ban {
  1644. position: absolute;
  1645. top: 0;
  1646. left: 0;
  1647. right: 0;
  1648. height: 100px;
  1649. z-index: 300;
  1650. }
  1651. .ghp-ad-ban > ins {
  1652. height: 100px;
  1653. }
  1654. [data-ad-slot-id="5477495495"] > ins,
  1655. [data-ad-slot-id="5498931315"] > ins {
  1656. height: 250px;
  1657. }
  1658. [data-ad-slot-id="5498931315"] > ins {
  1659. height: 600px;
  1660. }
  1661. table {
  1662. width: 100%;
  1663. border-collapse: collapse;
  1664. border-spacing: 0;
  1665. }
  1666. td,
  1667. th {
  1668. margin: 0;
  1669. vertical-align: middle;
  1670. }
  1671. th {
  1672. color: #888;
  1673. text-transform: uppercase;
  1674. font-weight: 400;
  1675. }
  1676. .table-3 > tbody > tr,
  1677. .table-3 > tr {
  1678. border-bottom: 1px solid #ccc;
  1679. }
  1680. .table-3 > tbody > tr > td,
  1681. .table-3 > tbody > tr > th,
  1682. .table-3 > tr > td,
  1683. .table-3 > tr > th {
  1684. text-align: center;
  1685. padding: 0.5em 0;
  1686. }
  1687. .table-3 > tbody > tr > td:first-of-type,
  1688. .table-3 > tbody > tr > th:first-of-type,
  1689. .table-3 > tr > td:first-of-type,
  1690. .table-3 > tr > th:first-of-type {
  1691. text-align: left;
  1692. width: 70%;
  1693. }
  1694. .stars {
  1695. padding: 0.25em 0;
  1696. }
  1697. h3 + .stars {
  1698. margin-top: -1.5em;
  1699. }
  1700. .paged-items > div:first-child > div {
  1701. margin-bottom: 1em;
  1702. }
  1703. .quotes {
  1704. padding: 0.5em 1em;
  1705. border-left: 0.4em solid #ccc;
  1706. margin-bottom: 1em;
  1707. }
  1708. .quotes > div + div {
  1709. margin-top: 1em;
  1710. }
  1711. .hero {
  1712. width: 100%;
  1713. min-height: 80vh;
  1714. display: flex;
  1715. flex-direction: column;
  1716. justify-content: center;
  1717. background-image: url(https://assets.gethuman.com/img/blingHeroBG2.png),
  1718. linear-gradient(-44deg, #69cf96 0, #72d469 96%);
  1719. background-position: center bottom, bottom;
  1720. background-repeat: no-repeat, no-repeat;
  1721. background-size: 100% auto, cover;
  1722. color: #fff;
  1723. text-align: center;
  1724. }
  1725. .hero-header {
  1726. display: flex;
  1727. align-items: center;
  1728. justify-content: space-between;
  1729. height: 60px;
  1730. }
  1731. .hero-logo {
  1732. height: 60px;
  1733. width: auto;
  1734. display: block;
  1735. margin-left: -15px;
  1736. }
  1737. .hero-header > a {
  1738. height: 60px;
  1739. }
  1740. @media (max-width: 575px) {
  1741. .hero-header {
  1742. width: 100%;
  1743. }
  1744. }
  1745. .hero-elements {
  1746. flex: 1 0 auto;
  1747. display: flex;
  1748. flex-direction: column;
  1749. justify-content: center;
  1750. padding: 15px;
  1751. }
  1752. .hero-elements > * {
  1753. margin-bottom: 2.25rem;
  1754. }
  1755. .hero-elements > h1,
  1756. .hero-elements > h2 {
  1757. line-height: 1.2em;
  1758. }
  1759. .hero-elements > h2 {
  1760. font-weight: 400;
  1761. }
  1762. .hero-elements > :last-child {
  1763. margin-bottom: 0;
  1764. }
  1765. .hero-elements > div {
  1766. margin-left: auto;
  1767. margin-right: auto;
  1768. width: 100%;
  1769. max-width: 500px;
  1770. }
  1771. @media (max-width: 1199px) {
  1772. .hero {
  1773. background-size: auto, cover;
  1774. }
  1775. }
  1776. .hero-callout {
  1777. width: 100%;
  1778. min-height: 100px;
  1779. padding: 12px 0;
  1780. background-color: #fff;
  1781. border-bottom: 1px solid;
  1782. border-color: #ddd;
  1783. display: flex;
  1784. flex-direction: row;
  1785. justify-content: center;
  1786. position: relative;
  1787. text-align: center;
  1788. margin-bottom: 50px;
  1789. }
  1790. .hero-callout > img {
  1791. vertical-align: middle;
  1792. margin-right: 3%;
  1793. padding: 0.4rem;
  1794. width: 80px;
  1795. height: 80px;
  1796. }
  1797. .hero-callout::before {
  1798. content: "\A";
  1799. width: 0;
  1800. height: 0;
  1801. border-left: 15px solid transparent;
  1802. border-right: 15px solid transparent;
  1803. border-bottom: 15px solid #fff;
  1804. position: absolute;
  1805. top: -15px;
  1806. margin: 0 auto;
  1807. left: 0;
  1808. right: 0;
  1809. }
  1810. .post-hero {
  1811. text-align: center;
  1812. padding: 1rem;
  1813. }
  1814. .post-hero > .list-tiled:first-of-type > a {
  1815. min-width: 300px;
  1816. }
  1817. .hero-footer {
  1818. min-height: 50px;
  1819. background-color: #72d469;
  1820. color: #fff;
  1821. font-size: 0.75rem;
  1822. text-align: center;
  1823. padding: 0.5em 1em;
  1824. }
  1825. .hero-footer > a,
  1826. .hero-footer > span {
  1827. color: #fff;
  1828. padding: 1em;
  1829. display: inline-block;
  1830. }
  1831. .alert {
  1832. padding: 1.2rem;
  1833. background-color: #00a9ea;
  1834. color: #fff;
  1835. border-radius: 0.25em;
  1836. }
  1837. .alert-danger {
  1838. background-color: #e85674;
  1839. }
  1840. .alert > a {
  1841. color: #fff;
  1842. }
  1843. .checkmark-circle {
  1844. stroke-dasharray: 166;
  1845. stroke-dashoffset: 166;
  1846. stroke-width: 2;
  1847. stroke-miterlimit: 10;
  1848. stroke: #72d469;
  1849. fill: none;
  1850. animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) forwards;
  1851. }
  1852. .checkmark {
  1853. width: 25px;
  1854. height: 25px;
  1855. border-radius: 50%;
  1856. display: block;
  1857. stroke-width: 5;
  1858. stroke: #fff;
  1859. stroke-miterlimit: 10;
  1860. box-shadow: inset 0 0 0 #72d469;
  1861. }
  1862. .checkmark.is-checked {
  1863. animation: fill 0.2s ease-in-out 0.2s forwards,
  1864. scale 0.2s ease-in-out 0.4s both;
  1865. }
  1866. .checkmark-check {
  1867. transform-origin: 50% 50%;
  1868. stroke-dasharray: 48;
  1869. stroke-dashoffset: 48;
  1870. animation: stroke 0.2s cubic-bezier(0.65, 0, 0.45, 1) 0.2s
  1871. forwards;
  1872. }
  1873. @keyframes stroke {
  1874. 100% {
  1875. stroke-dashoffset: 0;
  1876. }
  1877. }
  1878. @keyframes scale {
  1879. 0%,
  1880. 100% {
  1881. transform: none;
  1882. }
  1883. 50% {
  1884. transform: scale3d(1.1, 1.1, 1);
  1885. }
  1886. }
  1887. @keyframes fill {
  1888. 100% {
  1889. box-shadow: inset 0 0 0 30px #72d469;
  1890. }
  1891. }
  1892. .leg,
  1893. .legend > div {
  1894. display: flex;
  1895. flex-wrap: wrap;
  1896. margin-bottom: 0.5em;
  1897. }
  1898. .leg > div,
  1899. .legend > div > div {
  1900. flex: 1;
  1901. }
  1902. .leg > div:first-child,
  1903. .legend > div > :first-child {
  1904. flex: 0 0 2.5em;
  1905. }
  1906. .leg > .bg-icon {
  1907. background-position: 4px 4px;
  1908. }
  1909. .extremes,
  1910. .tile-10,
  1911. .tile-5 {
  1912. display: flex;
  1913. }
  1914. .extremes > div,
  1915. .extremes > small {
  1916. flex: 0 0 50%;
  1917. text-align: left;
  1918. }
  1919. .extremes > :last-child {
  1920. text-align: right;
  1921. }
  1922. .tile-10,
  1923. .tile-5 {
  1924. flex-wrap: nowrap;
  1925. justify-content: space-between;
  1926. margin-bottom: 0.5em;
  1927. }
  1928. .tile-10 > div,
  1929. .tile-5 > div {
  1930. flex: 0 0 9%;
  1931. padding-top: 0.5em;
  1932. padding-bottom: 0.5em;
  1933. text-align: center;
  1934. border: 1px solid #00a9ea;
  1935. color: #00a9ea;
  1936. cursor: pointer;
  1937. }
  1938. .tile-5 > div {
  1939. flex: 0 0 19%;
  1940. }
  1941. .tile-5 > div.selected {
  1942. background-color: #00a9ea;
  1943. color: #fff;
  1944. }
  1945. .banner,
  1946. .list-block > .banner {
  1947. display: flex;
  1948. align-items: center;
  1949. }
  1950. .banner > * {
  1951. margin-right: 1em;
  1952. }
  1953. div[gh-user-status] {
  1954. padding: 1rem;
  1955. }
  1956. .col-inp {
  1957. max-width: 400px;
  1958. }
  1959. .text-right {
  1960. text-align: right;
  1961. }
  1962. .text-center {
  1963. text-align: center;
  1964. }
  1965. .text-danger {
  1966. color: #e85674;
  1967. }
  1968. .text-success {
  1969. color: #72d469;
  1970. }
  1971. .phone-opts {
  1972. width: 100%;
  1973. }
  1974. .phone-opts > div {
  1975. vertical-align: top;
  1976. display: inline-block;
  1977. width: 80px;
  1978. margin: 8px;
  1979. cursor: pointer;
  1980. }
  1981. .phone-opts > div.wide {
  1982. margin: 8px 0;
  1983. }
  1984. .phone-opts > div > div,
  1985. .phone-opts > div > svg {
  1986. background-color: #2d274b;
  1987. border-radius: 37px;
  1988. }
  1989. .phone-opts > div > div,
  1990. .phone-opts > div > div > svg,
  1991. .phone-opts > div > svg {
  1992. display: inline-block;
  1993. width: 74px;
  1994. height: 74px;
  1995. vertical-align: middle;
  1996. font-size: 2rem;
  1997. }
  1998. .phone-opts > div > a {
  1999. display: inline-block;
  2000. width: 74px;
  2001. height: 74px;
  2002. line-height: 74px;
  2003. vertical-align: middle;
  2004. color: #fff;
  2005. }
  2006. .opt-disabled,
  2007. button[disabled] {
  2008. opacity: 0.6;
  2009. }
  2010. .phone-opts > div > div {
  2011. padding-top: 0.4rem;
  2012. }
  2013. .phone-opts > div > div > div {
  2014. display: inline-block;
  2015. }
  2016. .phone-opts > div > div > small {
  2017. display: block;
  2018. margin-top: -0.5em;
  2019. font-size: 0.7rem;
  2020. color: #ccc;
  2021. }
  2022. .phone-opts > div.wide,
  2023. .phone-opts > div.wide > div {
  2024. width: 100%;
  2025. }
  2026. .phone-opts > div.wide > div {
  2027. border: 2px solid #72d469;
  2028. color: #72d469;
  2029. }
  2030. .phone-opts > div.red > svg {
  2031. background-color: #e85674;
  2032. fill: #e85674;
  2033. }
  2034. .phone-opts > div.green > svg {
  2035. background-color: #72d469;
  2036. fill: #72d469;
  2037. }
  2038. .phone-opts > div.opt-on > svg {
  2039. background-color: #fff;
  2040. fill: #fff;
  2041. color: #444;
  2042. }
  2043. .phone-opts > div.wide > div > svg {
  2044. margin-top: -8px;
  2045. }
  2046. .phone-opts > div > small {
  2047. margin-top: 0.5em;
  2048. display: block;
  2049. }
  2050. .phone-opts > div.red > small {
  2051. color: #e85674;
  2052. }
  2053. .phone-opts > div > div > svg,
  2054. .phone-opts > div > svg {
  2055. padding: 18px;
  2056. }
  2057. .ph-screen,
  2058. .ph-screens > div {
  2059. min-height: calc(100vh - 120px);
  2060. display: flex;
  2061. flex-direction: column;
  2062. }
  2063. .screen-mid {
  2064. flex: 1 0 auto;
  2065. display: flex;
  2066. flex-direction: column;
  2067. justify-content: center;
  2068. padding: 2em 0;
  2069. }
  2070. .screen-bottom,
  2071. .screen-top {
  2072. flex-shrink: 0;
  2073. color: #ccc;
  2074. }
  2075. .screen-bottom {
  2076. font-size: 0.9rem;
  2077. }
  2078. .ph-link {
  2079. line-height: 64px;
  2080. }
  2081. .ph-link > small {
  2082. display: inline;
  2083. vertical-align: middle;
  2084. }
  2085. @media (min-width: 752px) {
  2086. .ph-screen,
  2087. .ph-screens > div {
  2088. min-height: 710px;
  2089. }
  2090. }
  2091. @media (max-height: 740px) {
  2092. .ph-mode > #lay-fl-nav-top {
  2093. display: none;
  2094. }
  2095. .ph-screen,
  2096. .ph-screens > div {
  2097. min-height: calc(100vh - 60px);
  2098. }
  2099. .screen-mid {
  2100. padding: 1em 0;
  2101. }
  2102. .phone-opts.mt-200 {
  2103. margin-top: 1em;
  2104. }
  2105. .phone-opts.mt-400 {
  2106. margin-top: 2em;
  2107. }
  2108. }
  2109. @media (max-height: 600px) {
  2110. .ph-screen,
  2111. .ph-screens > div {
  2112. min-height: calc(100vh - 30px);
  2113. }
  2114. .screen-mid {
  2115. padding: 0.5em 0;
  2116. }
  2117. .phone-opts.mt-200 {
  2118. margin-top: 1em;
  2119. }
  2120. .card.phone {
  2121. padding: 1rem;
  2122. }
  2123. }
  2124. @media (max-width: 350px) {
  2125. .phone-opts > div {
  2126. margin: 4px;
  2127. }
  2128. .screen-mid > .list-block {
  2129. margin-left: -15px;
  2130. margin-right: -15px;
  2131. }
  2132. }
  2133. @media (max-height: 540px), (max-width: 310px) {
  2134. .txt-lg {
  2135. font-size: 1.8rem;
  2136. }
  2137. .phone-opts > div {
  2138. width: 72px;
  2139. }
  2140. .phone-opts > div > div,
  2141. .phone-opts > div > div > svg,
  2142. .phone-opts > div > svg {
  2143. width: 64px;
  2144. height: 64px;
  2145. font-size: 1.6rem;
  2146. }
  2147. }
  2148. .screen-mid > .input-group,
  2149. .screen-mid > .input-group > button,
  2150. .screen-mid > .input-group > input,
  2151. .screen-mid > .input-group > span,
  2152. .screen-mid > div > select {
  2153. height: 60px;
  2154. }
  2155. .screen-mid > .input-group.textarea-group {
  2156. height: auto;
  2157. }
  2158. .screen-mid > .input-group > button,
  2159. .screen-mid > .input-group > span,
  2160. .screen-mid > div > .bar-share > a,
  2161. .screen-mid > div > .bar-share > button,
  2162. .screen-mid > div > .btn {
  2163. background-color: #2d274b;
  2164. }
  2165. .screen-mid > .input-group > span {
  2166. padding-top: 1.2rem;
  2167. }
  2168. .screen-mid > div > .bar-share > a,
  2169. .screen-mid > div > .bar-share > button,
  2170. .screen-mid > div > .btn {
  2171. border: 2px solid #fff;
  2172. font-size: 1.25rem;
  2173. }
  2174. .screen-mid > .input-group > input.ng-not-empty {
  2175. padding-top: 20px;
  2176. }
  2177. .screen-mid > .input-group > small {
  2178. bottom: -1.2rem;
  2179. }
  2180. .xscript {
  2181. display: block;
  2182. padding: 0.5rem 1.25rem;
  2183. text-align: left;
  2184. height: 80vh;
  2185. overflow-y: scroll;
  2186. color: #bbb;
  2187. border: 2px solid #bbb;
  2188. }
  2189. .xscript > p {
  2190. margin-bottom: 0.8rem;
  2191. line-height: 130%;
  2192. }
  2193. .xscript > p:last-child {
  2194. color: #fff;
  2195. }
  2196. .article > p {
  2197. margin-bottom: 1.5rem;
  2198. }
  2199. .article > ul + p {
  2200. margin-top: 2rem;
  2201. }
  2202. .article > * + h1,
  2203. .article > * + h2,
  2204. .article > * + h3,
  2205. .article > * + h4 {
  2206. margin-top: 3rem;
  2207. }
  2208. .author {
  2209. position: relative;
  2210. padding-left: 60px;
  2211. }
  2212. .author > amp-img,
  2213. .author > img {
  2214. position: absolute;
  2215. left: 0;
  2216. width: 48px;
  2217. height: 48px;
  2218. }
  2219. pre.para {
  2220. overflow-x: auto;
  2221. white-space: pre-wrap;
  2222. font-family: "Open Sans", Arial, Helvetica, sans-serif;
  2223. }
  2224. #ghspin {
  2225. display: inline-block;
  2226. width: 80px;
  2227. height: 80px;
  2228. }
  2229. #ghspin:after {
  2230. content: " ";
  2231. display: block;
  2232. width: 64px;
  2233. height: 64px;
  2234. margin: 8px;
  2235. border-radius: 50%;
  2236. border: 6px solid #72d469;
  2237. border-color: #72d469 transparent #72d469 transparent;
  2238. animation: ghspin-frames 1.2s linear infinite;
  2239. }
  2240. @keyframes ghspin-frames {
  2241. 0% {
  2242. transform: rotate(0);
  2243. }
  2244. 100% {
  2245. transform: rotate(360deg);
  2246. }
  2247. }
  2248. </style>
  2249. <meta http-equiv="X-UA-Compatible" content="" />
  2250. <!--[if lt IE 10
  2251. ]><script src="https://cdnjs.cloudflare.com/ajax/lib/modernizr/2.8.3/modernizr.min.js"></script
  2252. ><![endif]-->
  2253. </head>
  2254. <body>
  2255. <div class="viewMainClient">
  2256. <div ui-view></div>
  2257. </div>
  2258. <div class="viewMainServer">
  2259. <div>
  2260. <div id="lay-fl">
  2261. <div id="lay-fl-nav-left">
  2262. <a href="/" title="GetHuman"></a>
  2263. <div>
  2264. <div class="list-block">
  2265. <a href="/phone-number/Chime">Phone Numbers</a>
  2266. <a href="/customer-service/Chime"
  2267. >Customer Service</a
  2268. >
  2269. <a href="https://answers.gethuman.com/Chime"
  2270. >Fix Common Issues</a
  2271. >
  2272. <a href="https://local.gethuman.com"
  2273. >Local Listings</a
  2274. >
  2275. <a href="/about">About GetHuman</a>
  2276. </div>
  2277. </div>
  2278. <small>&copy;GetHuman Inc.</small>
  2279. </div>
  2280. <div id="lay-fl-con">
  2281. <div id="lay-fl-nav-top">
  2282. <a href="/" title="GetHuman"></a>
  2283. </div>
  2284. <div id="lay-fl-mandr">
  2285. <div id="lay-fl-main">
  2286. <h1>Chime Phone Number</h1>
  2287. <h3>
  2288. Call Chime customer service faster with
  2289. GetHuman
  2290. </h3>
  2291. <div class="card">
  2292. <div>
  2293. <div>
  2294. <div class="row tile-fluid-half">
  2295. <div>
  2296. <a
  2297. class="btn btn-jumbo"
  2298. title="Call Chime customer service phone number +1 (828) 475-1533"
  2299. href="tel:+18284751533">
  2300. <svg
  2301. xmlns="http://www.w3.org/2000/svg"
  2302. viewBox="0 -48 512 544"
  2303. class="phone btn-icon">
  2304. <path
  2305. d="M457 322c0 5-1 12-3 20-2 9-4 15-6 20-4 10-15 20-35 30-17 10-35 15-53 15-5 0-10 0-15-1s-10-2-16-4c-6-1-11-3-14-4s-8-3-16-6c-7-3-12-4-14-5-18-7-35-14-50-24-24-15-49-35-75-61s-47-51-62-76c-9-14-17-31-23-50-1-1-3-6-6-14-2-7-4-13-5-16s-3-7-5-13c-1-6-2-12-3-17-1-4-1-9-1-15 0-17 5-35 14-53 11-19 21-31 31-35 4-2 11-4 19-6 9-1 15-2 20-2h6c4 2 9 9 16 22 2 4 5 9 8 16 4 6 7 12 10 18l9 15c1 1 2 3 5 7s5 8 6 10c1 3 2 6 2 8 0 4-3 9-8 15-5 5-11 11-18 15-6 5-12 10-17 16-6 5-9 9-9 13 0 1 1 4 2 6 1 3 2 5 2 6 1 1 2 4 4 7s3 5 4 5c14 26 31 49 49 67 19 19 41 36 67 50 1 0 3 1 6 3s5 4 7 4c1 1 3 2 6 3 2 1 4 1 6 1 3 0 8-2 13-8 5-5 11-11 15-18 5-6 10-12 16-17 6-6 10-8 14-8 3 0 6 0 8 2 3 1 7 3 11 6 4 2 6 4 7 5 4 3 10 6 15 9s11 6 18 10c7 3 12 6 16 8 13 7 20 12 21 15 1 2 1 4 1 6z"></path>
  2306. </svg>
  2307. <span
  2308. >+1 (828) 475-1533</span
  2309. >
  2310. </a>
  2311. </div>
  2312. </div>
  2313. <div
  2314. class="row tile-fluid-half mt-100 tile-ul">
  2315. <div>
  2316. <ul>
  2317. <li>
  2318. Calls Chime's
  2319. Customer Service
  2320. department
  2321. </li>
  2322. <li>
  2323. The average hold
  2324. time is 4m
  2325. </li>
  2326. </ul>
  2327. </div>
  2328. <div>
  2329. <ul>
  2330. <li>
  2331. Hours are Mon-Sat
  2332. 7am-7pm, Sun 9am-5pm
  2333. CST
  2334. </li>
  2335. <li>
  2336. The best time to
  2337. call is 3:45pm
  2338. </li>
  2339. </ul>
  2340. </div>
  2341. </div>
  2342. <div>
  2343. <ul style="margin-top: -1rem">
  2344. <li>
  2345. <span
  2346. >Popular issues for
  2347. this call center:
  2348. Overcharge on
  2349. Account, Account
  2350. Access, Problem With
  2351. the App, Trouble
  2352. Receiving a Payment,
  2353. and Missing
  2354. Card.</span
  2355. >
  2356. </li>
  2357. <li>
  2358. <span
  2359. >Reach a live Chime
  2360. agent:
  2361. </span>
  2362. <span
  2363. >Must choose an
  2364. option 1-4 or 9,
  2365. then follow
  2366. prompts.</span
  2367. >
  2368. </li>
  2369. <li>
  2370. <span
  2371. >What you hear when
  2372. you call:
  2373. </span>
  2374. <span
  2375. >Thanks for calling
  2376. Chime. If you have
  2377. an account with
  2378. Chime, press 1. If
  2379. you are interested
  2380. in joining Chime or
  2381. want more info on
  2382. products and
  2383. services, press 2.
  2384. If a Chime account
  2385. was opened without
  2386. your authorization,
  2387. press 3. To report
  2388. an unauthorized
  2389. login or change to
  2390. your account
  2391. information, press
  2392. 4. To verify a Chime
  2393. member's bank
  2394. account, press 5.
  2395. For all other
  2396. questions, press
  2397. 9.</span
  2398. >
  2399. </li>
  2400. </ul>
  2401. </div>
  2402. </div>
  2403. </div>
  2404. </div>
  2405. <div class="list-block list-quotes">
  2406. <h3>
  2407. Reasons customers like you called
  2408. recently
  2409. </h3>
  2410. <div>
  2411. I miss placed my cash card is there
  2412. anyway I can't get a card I have my
  2413. taxes being dep...
  2414. </div>
  2415. <div>
  2416. How much can draw off your card per day
  2417. </div>
  2418. <div>
  2419. Please change my number on file from
  2420. ***-***-**** to my new number it won’t
  2421. allow me to...
  2422. </div>
  2423. <div>
  2424. Signed up for a chime account and then
  2425. tried to login and it took me back to
  2426. the sign u...
  2427. </div>
  2428. <div>
  2429. When will I get my check direct deposit
  2430. to my chime card please let me
  2431. know.thank you
  2432. </div>
  2433. <div>
  2434. I’m locked out of my account from chime
  2435. I lost my old phone
  2436. </div>
  2437. <div>
  2438. i had my card replaced because i lost my
  2439. wallet and phone and got my new card but
  2440. cant...
  2441. </div>
  2442. <div>
  2443. On my account I need to update my phone
  2444. number
  2445. </div>
  2446. <div>I can't use the mobile app</div>
  2447. <div>I can't get into my chime app</div>
  2448. <div>
  2449. Hello, my name is Gabrielle Glover I am
  2450. contacting you about my chime account it
  2451. is loc...
  2452. </div>
  2453. <div>
  2454. I am trying to get back into my chime
  2455. account but can't because I no longer
  2456. have the ph...
  2457. </div>
  2458. </div>
  2459. <div class="stats">
  2460. <h3>
  2461. Chime Customer Phone Number
  2462. +1 (828) 475-1533 - Stats
  2463. </h3>
  2464. <div>
  2465. <small>Phone number to dial</small>
  2466. <small>+1 (828) 475-1533</small>
  2467. </div>
  2468. <div>
  2469. <small>Call-back available</small>
  2470. <small>NO</small>
  2471. </div>
  2472. <div>
  2473. <small
  2474. >Call picked up by a real
  2475. person</small
  2476. >
  2477. <small>YES</small>
  2478. </div>
  2479. <div>
  2480. <small>Department you're calling</small>
  2481. <small>Customer Service</small>
  2482. </div>
  2483. <div>
  2484. <small>Call center hours</small>
  2485. <small
  2486. >Mon-Sat 7am-7pm, Sun 9am-5pm
  2487. CST</small
  2488. >
  2489. </div>
  2490. <div>
  2491. <small>Best time to dial</small>
  2492. <small>3:45pm</small>
  2493. </div>
  2494. <div>
  2495. <small>Average wait</small>
  2496. <small>4 minutes</small>
  2497. </div>
  2498. <div>
  2499. <small>Current wait</small>
  2500. <small>6 minutes</small>
  2501. </div>
  2502. <div>
  2503. <small
  2504. >Rank (among phone numbers)</small
  2505. >
  2506. <small>1</small>
  2507. </div>
  2508. <div>
  2509. <small>Rank (overall)</small>
  2510. <small>1</small>
  2511. </div>
  2512. <div>
  2513. <small>Communication channels</small>
  2514. <small>phone, email, facebook</small>
  2515. </div>
  2516. <div>
  2517. <small>Quality of communication</small>
  2518. <small>89%</small>
  2519. </div>
  2520. <div>
  2521. <small>Quality of help</small>
  2522. <small>71%</small>
  2523. </div>
  2524. <div>
  2525. <small>Customer votes</small>
  2526. <small>608</small>
  2527. </div>
  2528. <div>
  2529. <small>Information last updated</small>
  2530. <small
  2531. >Wed Feb 21 2024 09:00:00 GMT+0000
  2532. (Coordinated Universal Time)</small
  2533. >
  2534. </div>
  2535. </div>
  2536. <div data-ad-slot-id="5477495495">
  2537. <ins
  2538. class="adsbygoogle"
  2539. data-ad-client="ca-pub-5211547430456695"
  2540. data-ad-slot="5477495495"
  2541. data-full-width-responsive="true"></ins>
  2542. <script>
  2543. (window.adsbygoogle =
  2544. window.adsbygoogle || []).push({});
  2545. </script>
  2546. </div>
  2547. <h3>
  2548. Chime's Best Toll-Free/800 Customer Phone
  2549. Number
  2550. </h3>
  2551. <p>
  2552. This is Chime's best phone number, the
  2553. real-time current wait on hold and tools for
  2554. skipping right through those phone lines to
  2555. get right to a Chime agent. This phone
  2556. number is Chime's Best Phone Number because
  2557. 606 customers like you used this contact
  2558. information over the last 18 months and gave
  2559. us feedback. Common problems addressed by
  2560. the customer care unit that answers calls to
  2561. +1 (828) 475-1533 include Overcharge on Account,
  2562. Account Access, Problem With the App,
  2563. Trouble Receiving a Payment, Missing Card
  2564. and other customer service issues. Rather
  2565. than trying to call Chime first, consider
  2566. describing your issue first; from that we
  2567. may be able to recommend an optimal way to
  2568. contact them via phone or email or facebook.
  2569. In total, Chime has 1 phone number. It's not
  2570. always clear what is the best way to talk to
  2571. Chime representatives, so we started
  2572. compiling this information built from
  2573. suggestions from the customer community.
  2574. Please keep sharing your experiences so we
  2575. can continue to improve this free resource.
  2576. </p>
  2577. <h3>
  2578. Contacting Chime - by phone or otherwise
  2579. </h3>
  2580. <p>
  2581. <span
  2582. >While +1 (828) 475-1533 is Chime's best
  2583. toll-free number, there are 3 total ways
  2584. to get in touch with them. The next best
  2585. way to talk to their customer support
  2586. team may just be to tell GetHuman about
  2587. your issue and let us try to find the
  2588. best way to contact them or find help
  2589. for that particular issue. Besides
  2590. calling, the next favorite option for
  2591. customers looking for help is via
  2592. support@chime.com for Customer Service.
  2593. If you think this information is
  2594. inaccurate or know of other ways to
  2595. contact Chime please let us know so we
  2596. can share with other customers.</span
  2597. >
  2598. <span>&nbsp;</span>
  2599. <a
  2600. class="link-neutral"
  2601. href="/customer-service/Chime"
  2602. >And you can click here if you want to
  2603. compare all the contact information
  2604. we've gathered for Chime.</a
  2605. >
  2606. </p>
  2607. <h3>
  2608. What is GetHuman's Relationship to Chime?
  2609. </h3>
  2610. <p>
  2611. <span
  2612. >In short, the two companies are not
  2613. related. GetHuman builds free tools and
  2614. shares information amongst customers of
  2615. companies like Chime. For large
  2616. companies that includes tools such as
  2617. our GetHuman Phone, which allows you to
  2618. call a company but skip the part where
  2619. you wait on the line listening to their
  2620. call technology music.
  2621. </span>
  2622. <span
  2623. >We've created these shortcuts and apps
  2624. to try to help customers like you (and
  2625. ourselves!) navigate the messy phone
  2626. menus, hold times, and confusion with
  2627. customer service, especially with larger
  2628. companies. And as long as you keep
  2629. sharing it with your friends and loved
  2630. ones, we'll keep doing it.</span
  2631. >
  2632. </p>
  2633. </div>
  2634. <div id="lay-fl-right">
  2635. <div>
  2636. <h4>Call with our super-powered phone</h4>
  2637. <ul>
  2638. <li>
  2639. Click to call- even from your
  2640. desktop
  2641. </li>
  2642. <li>We dial and get a human for you</li>
  2643. <li>
  2644. AI-powered suggestions of what to
  2645. say
  2646. </li>
  2647. <li>
  2648. Keep a transcript and other stats
  2649. </li>
  2650. <li>
  2651. Free, unintrusive: no account needed
  2652. </li>
  2653. </ul>
  2654. <div class="mt-u">
  2655. <a
  2656. title="Call Chime Customer Service phone number +1 (828) 475-1533"
  2657. href="tel:+18284751533">
  2658. <span style="margin-left: 1.5rem"
  2659. >Call +1 (828) 475-1533 Now</span
  2660. >
  2661. </a>
  2662. </div>
  2663. </div>
  2664. <h4>Beyond the Phone Number</h4>
  2665. <div class="list-block">
  2666. <div class="para">
  2667. There are other ways to get in touch
  2668. with Chime, including email and through
  2669. Facebook / Messenger. Visit our Chime
  2670. Customer Service page for more
  2671. information.
  2672. </div>
  2673. <a href="/customer-service/Chime"
  2674. >Chime Customer Service</a
  2675. >
  2676. </div>
  2677. <h4>More Company Phone Numbers</h4>
  2678. <div class="list-block">
  2679. <a href="/phone-number/Optus-Faults"
  2680. >Optus - Faults Phone Number</a
  2681. >
  2682. <a href="/phone-number/Ticketmaster"
  2683. >Ticketmaster Phone Number</a
  2684. >
  2685. <a href="/phone-number/US-Postal-Service"
  2686. >US Postal Service Phone Number</a
  2687. >
  2688. </div>
  2689. </div>
  2690. </div>
  2691. <div id="lay-fl-bottom">
  2692. <div class="sec-below">
  2693. <div>
  2694. <div class="list-tiled">
  2695. <b>Was this page helpful?</b>
  2696. <span>
  2697. <form
  2698. method="post"
  2699. action-xhr="https://api.gethuman.com/v3/content-proposal/helpful">
  2700. <amp-recaptcha-input
  2701. layout="nodisplay"
  2702. name="recaptcha_key"
  2703. data-sitekey="6LdI11gpAAAAADT0S-Kwjl1BhvH8R6s41APDJHhr"
  2704. data-action="recaptcha_helpfulPage"></amp-recaptcha-input>
  2705. <input
  2706. type="hidden"
  2707. name="key"
  2708. value="https://gethuman.com/phone-number/Chime" />
  2709. <input
  2710. type="submit"
  2711. class="link"
  2712. value="Yes" />
  2713. <div submit-success>
  2714. Thank you and please share!
  2715. </div>
  2716. <div submit-error>
  2717. Thank you and please share!
  2718. </div>
  2719. </form>
  2720. </span>
  2721. <a
  2722. href="https://gethuman.com/feedback/page-needs-improvement?page=https%3A%2F%2Fgethuman.com%2Fphone-number%2FChime"
  2723. >Needs work</a
  2724. >
  2725. </div>
  2726. <div class="mb-100">
  2727. Sharing is what powers GetHuman's free
  2728. customer service contact information and
  2729. tools. You can help!
  2730. </div>
  2731. <div class="bar-share">
  2732. <a
  2733. class="btn-share-f"
  2734. rel="noopener"
  2735. target="_blank"
  2736. href="http://www.facebook.com/sharer/sharer.php?m2w&s=100&p[url]=https%3A%2F%2Fgethuman.com%2Fphone-number%2FChime&p[title]=Chime%20Phone%20Number%20+1 (828) 475-1533%20%7C%20We%20dial%20to%20a%20rep%20for%20you%20%2B%20suggest%20what%20to%20say">
  2737. <div
  2738. class="bg-icon facebook bg-icon-lg"
  2739. style="
  2740. background-image: url('https://gethuman.com/img/icon/white/facebook.svg');
  2741. "
  2742. title="Share with Facebook"></div>
  2743. </a>
  2744. <a
  2745. class="btn-share-t"
  2746. rel="noopener"
  2747. target="_blank"
  2748. href="http://twitter.com/intent/tweet?text=Chime%20Phone%20Number%20+1 (828) 475-1533%20%7C%20We%20dial%20to%20a%20rep%20for%20you%20%2B%20suggest%20what%20to%20say&url=https%3A%2F%2Fgethuman.com%2Fphone-number%2FChime">
  2749. <div
  2750. class="bg-icon twitter bg-icon-lg"
  2751. style="
  2752. background-image: url('https://gethuman.com/img/icon/white/twitter.svg');
  2753. "
  2754. title="Share via Twitter"></div>
  2755. </a>
  2756. <a
  2757. class="btn-share-e"
  2758. href="mailto:?body=https%3A%2F%2Fgethuman.com%2Fphone-number%2FChime&subject=Chime%20Phone%20Number%20+1 (828) 475-1533%20%7C%20We%20dial%20to%20a%20rep%20for%20you%20%2B%20suggest%20what%20to%20say">
  2759. <div
  2760. class="bg-icon email bg-icon-lg"
  2761. style="
  2762. background-image: url('https://gethuman.com/img/icon/white/email.svg');
  2763. "
  2764. title="Share via Email"></div>
  2765. </a>
  2766. </div>
  2767. </div>
  2768. </div>
  2769. <div class="mb-sec">
  2770. <ol
  2771. itemscope=""
  2772. itemtype="http://schema.org/BreadcrumbList">
  2773. <li
  2774. itemprop="itemListElement"
  2775. itemtype="http://schema.org/ListItem"
  2776. itemscope="">
  2777. <a
  2778. itemprop="item"
  2779. class="p-r color-9"
  2780. href="/phone-number">
  2781. <span itemprop="name"
  2782. >Phone Numbers</span
  2783. >
  2784. <meta
  2785. itemprop="position"
  2786. content="1" />
  2787. </a>
  2788. <span>&nbsp;&rsaquo;&nbsp;</span>
  2789. </li>
  2790. <li
  2791. itemprop="itemListElement"
  2792. itemtype="http://schema.org/ListItem"
  2793. itemscope="">
  2794. <a
  2795. itemprop="item"
  2796. class="p-r color-9"
  2797. href="https://gethuman.com/phone-number/Chime">
  2798. <span itemprop="name">Chime</span>
  2799. <meta
  2800. itemprop="position"
  2801. content="2" />
  2802. </a>
  2803. </li>
  2804. </ol>
  2805. </div>
  2806. </div>
  2807. </div>
  2808. </div>
  2809. </div>
  2810. </div>
  2811. <script>
  2812. function addAdsenseOnLoad() {
  2813. setTimeout(function () {
  2814. var element = document.createElement("script");
  2815. element.async = true;
  2816. element["data-ad-client"] = "ca-pub-5211547430456695";
  2817. element.src =
  2818. "//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js";
  2819. document.body.appendChild(element);
  2820. }, 1010);
  2821. }
  2822. if (window.addEventListener)
  2823. window.addEventListener("load", addAdsenseOnLoad, false);
  2824. else if (window.attachEvent)
  2825. window.attachEvent("onload", addAdsenseOnLoad);
  2826. else window.onload = addAdsenseOnLoad;
  2827. </script>
  2828. <script>
  2829. (function () {
  2830. var js =
  2831. "window['__CF$cv$params']={r:'85b992242ddaf29a',t:'MTcwODk2NTAwOC4zNzUwMDA='};_cpo=document.createElement('script');_cpo.nonce='',_cpo.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js',document.getElementsByTagName('head')[0].appendChild(_cpo);";
  2832. var _0xh = document.createElement("iframe");
  2833. _0xh.height = 1;
  2834. _0xh.width = 1;
  2835. _0xh.style.position = "absolute";
  2836. _0xh.style.top = 0;
  2837. _0xh.style.left = 0;
  2838. _0xh.style.border = "none";
  2839. _0xh.style.visibility = "hidden";
  2840. document.body.appendChild(_0xh);
  2841. function handler() {
  2842. var _0xi =
  2843. _0xh.contentDocument || _0xh.contentWindow.document;
  2844. if (_0xi) {
  2845. var _0xj = _0xi.createElement("script");
  2846. _0xj.innerHTML = js;
  2847. _0xi.getElementsByTagName("head")[0].appendChild(_0xj);
  2848. }
  2849. }
  2850. if (document.readyState !== "loading") {
  2851. handler();
  2852. } else if (window.addEventListener) {
  2853. document.addEventListener("DOMContentLoaded", handler);
  2854. } else {
  2855. var prev = document.onreadystatechange || function () {};
  2856. document.onreadystatechange = function (e) {
  2857. prev(e);
  2858. if (document.readyState !== "loading") {
  2859. document.onreadystatechange = prev;
  2860. handler();
  2861. }
  2862. };
  2863. }
  2864. })();
  2865. </script>
  2866. </body>
  2867. </html>