-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
541 lines (524 loc) · 31.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
<!DOCTYPE html>
<html><head>
<link rel="stylesheet" href="index.css">
<script src="index.js"></script>
</head>
<body>
<div class="grid-container">
<div class="grid-item grid-sidebar-first" style="
grid-row-start: 1;
grid-row-end: 6;
background-color: rgb(255, 255, 255);
left: 0;
/* top: 0; */
border: 0;
position: sticky;
z-index: 1003;
">
<p class="alignleft big-font">CANCER<br><span>NAVIGATOR</span></p>
<p class="alignleft small-font">
CancerNavigator@goinvo.com<br>
<br>
Licensed by
<a href="https://www.goinvo.com" style="color: #5B5756">GoInvo</a>
under Creative Commons Attribution v4.
</p></div>
<!--Titles-->
<div class="grid-item" style="top: 0; background-color: #BCDADD; border-bottom: none; padding-top: 20px;"><b>Initial Suspicion</b></div>
<div class="grid-item" style="top: 0; background-color: #BCDADD; border-bottom: none; padding-top: 20px;"><b>Diagnostic Tests</b></div>
<div class="grid-item" style="top: 0; background-color: #BCDADD; border-bottom: none; padding-top: 20px;"><b>Consent, Share Data</b></div>
<div class="grid-item" style="top: 0; background-color: #BCDADD; border-bottom: none; padding-top: 20px;"><b>PCP Consultation</b></div>
<div class="grid-item" style="top: 0; background-color: #BCDADD; border-bottom: none; padding-top: 20px;"><b>Diagnostics</b></div>
<div class="grid-item" style="top: 0; background-color: #BCDADD; border-bottom: none; padding-top: 20px;"><b>Results, Dx, Consult</b></div>
<div class="grid-item" style="top: 0; background-color: #BCDADD; border-bottom: none; padding-top: 20px;"><b>Select Facility</b> </div>
<div class="grid-item" style="top: 0; background-color: #BCDADD; border-bottom: none; padding-top: 20px;"><b>Assemble Care Team</b></div>
<div class="grid-item" style="top: 0; background-color: #BCDADD; border-bottom: none; padding-top: 20px;"><b>Patient Forms</b></div>
<div class="grid-item" style="top: 0; background-color: #BCDADD; border-bottom: none; padding-top: 20px;"><b>Tracking Costs</b></div>
<div class="grid-item" style="top: 0; background-color: #BCDADD; border-bottom: none; padding-top: 20px;"><b>New Patient Ingest</b></div>
<div class="grid-item" style="top: 0; background-color: #BCDADD; border-bottom: none; padding-top: 20px;"><b>Results, Dx, Consult Rd 2</b></div>
<div class="grid-item" style="top: 0; background-color: #BCDADD; border-bottom: none; padding-top: 20px;"><b>Build Care Plan</b></div>
<div class="grid-item" style="top: 0; background-color: #BCDADD; border-bottom: none; padding-top: 20px;"><b>Treatment</b></div>
<div class="grid-item" style="top: 0; background-color: #BCDADD; border-bottom: none; padding-top: 20px;"><b>Trials, Research</b></div>
<div class="grid-item" style="top: 0; background-color: #BCDADD; border-bottom: none; padding-top: 20px;"><b>Remission</b></div>
<div class="grid-item" style="top: 0; background-color: #BCDADD; border-bottom: none; padding-top: 20px;"><b>Payment</b></div>
<div class="grid-item" style="top: 0; background-color: #BCDADD; border-bottom: none; padding-top: 20px;"><b>Transition to Adult Care</b></div>
<div class="grid-item" style="top: 0; background-color: #BCDADD; border-bottom: none; padding-top: 20px;"><b>Routine Checkups</b></div>
<div class="grid-item" style="top: 0; background-color: #BCDADD; border-bottom: none; padding-top: 20px;"><b>Palliative Care</b></div>
<div class="grid-item" style="top: 0; background-color: #BCDADD; border-bottom: none; padding-top: 20px;"><b>End of Life</b></div>
<!--Time Stamp-->
<div class="grid-item" style="top: 55px; background-color: #BCDADD; border-top: none; margin-top: -5px; padding-top:0px; padding-bottom:20px; font-weight: 100;">Start</div>
<div class="grid-item" style="top: 55px; background-color: #BCDADD; border-top: none; margin-top: -5px; padding-top:0px; padding-bottom:20px; font-weight: 100;">2 weeks</div>
<div class="grid-item" style="top: 55px; background-color: #BCDADD; border-top: none; margin-top: -5px; padding-top:0px; padding-bottom:20px; font-weight: 100;">5 min</div>
<div class="grid-item" style="top: 55px; background-color: #BCDADD; border-top: none; margin-top: -5px; padding-top:0px; padding-bottom:20px; font-weight: 100;">72 hours</div>
<div class="grid-item" style="top: 55px; background-color: #BCDADD; border-top: none; margin-top: -5px; padding-top:0px; padding-bottom:20px; font-weight: 100;">3 days</div>
<div class="grid-item" style="top: 55px; background-color: #BCDADD; border-top: none; margin-top: -5px; padding-top:0px; padding-bottom:20px; font-weight: 100;">1 week</div>
<div class="grid-item" style="top: 55px; background-color: #BCDADD; border-top: none; margin-top: -5px; padding-top:0px; padding-bottom:20px; font-weight: 100;">1 week</div>
<div class="grid-item" style="top: 55px; background-color: #BCDADD; border-top: none; margin-top: -5px; padding-top:0px; padding-bottom:20px; font-weight: 100;">24 hours</div>
<div class="grid-item" style="top: 55px; background-color: #BCDADD; border-top: none; margin-top: -5px; padding-top:0px; padding-bottom:20px; font-weight: 100;">15 min</div>
<div class="grid-item" style="top: 55px; background-color: #BCDADD; border-top: none; margin-top: -5px; padding-top:0px; padding-bottom:20px; font-weight: 100;">30 min</div>
<div class="grid-item" style="top: 55px; background-color: #BCDADD; border-top: none; margin-top: -5px; padding-top:0px; padding-bottom:20px; font-weight: 100;">1 hr</div>
<div class="grid-item" style="top: 55px; background-color: #BCDADD; border-top: none; margin-top: -5px; padding-top:0px; padding-bottom:20px; font-weight: 100;">2 days</div>
<div class="grid-item" style="top: 55px; background-color: #BCDADD; border-top: none; margin-top: -5px; padding-top:0px; padding-bottom:20px; font-weight: 100;">1 week+</div>
<div class="grid-item" style="top: 55px; background-color: #BCDADD; border-top: none; margin-top: -5px; padding-top:0px; padding-bottom:20px; font-weight: 100;">1 month+</div>
<div class="grid-item" style="top: 55px; background-color: #BCDADD; border-top: none; margin-top: -5px; padding-top:0px; padding-bottom:20px; font-weight: 100;">1 week+</div>
<div class="grid-item" style="top: 55px; background-color: #BCDADD; border-top: none; margin-top: -5px; padding-top:0px; padding-bottom:20px; font-weight: 100;">1 month+</div>
<div class="grid-item" style="top: 55px; background-color: #BCDADD; border-top: none; margin-top: -5px; padding-top:0px; padding-bottom:20px; font-weight: 100;">1 day - mo+</div>
<div class="grid-item" style="top: 55px; background-color: #BCDADD; border-top: none; margin-top: -5px; padding-top:0px; padding-bottom:20px; font-weight: 100;">18 y.o.</div>
<div class="grid-item" style="top: 55px; background-color: #BCDADD; border-top: none; margin-top: -5px; padding-top:0px; padding-bottom:20px; font-weight: 100;">1 per month</div>
<div class="grid-item" style="top: 55px; background-color: #BCDADD; border-top: none; margin-top: -5px; padding-top:0px; padding-bottom:20px; font-weight: 100;">Undefined</div>
<div class="grid-item" style="top: 55px; background-color: #BCDADD; border-top: none; margin-top: -5px; padding-top:0px; padding-bottom:20px; font-weight: 100;">End</div>
<!--Patient & Family-->
<div class="pf tooltip"><b>Patient & Family</b>
<span class="tooltiptext">Patient experiences continued symptoms.</span>
</div>
<div class="grid-item"></div>
<div class="pf tooltip"><b>Patient & Family</b>
<span class="tooltiptext">Patient & family consent to health record access and release.</span>
</div>
<div class="pf tooltip">
<span class="tooltiptext">Patient & family visit PCP.</span>
</div>
<div class="pf tooltip">
<span class="tooltiptext">Patient & family go to appointment to receive testing.</span>
</div>
<div class="pf tooltip">
<span class="tooltiptext">Patient & family obtain access to test results.</span>
</div>
<div class="pf tooltip">
<span class="tooltiptext">Patient & family selects facility, doctor, and availability.</span>
</div>
<div class="pf tooltip">
<span class="tooltiptext">Patient can request a change at any time.</span>
</div>
<div class="grid-item"></div>
<div class="pf tooltip"><b>Patient & Family</b>
<span class="tooltiptext">Patient sets up preferred payment schedule.</span>
</div>
<div class="pf tooltip">
<span class="tooltiptext">Patient prepares for the appointment by reading through literacy module and going through checklist of questions to ask.</span>
</div>
<div class="pf tooltip">
<span class="tooltiptext">Patient meets clinician and discusses next steps.</span>
</div>
<div class="pf tooltip">
<span class="tooltiptext">Patient & family discuss treatment options with clinician, coordinator, and peers.</span>
</div>
<div class="pf tooltip">
<span class="tooltiptext">Patient & family request a second opinion.</span>
</div>
<div class="pf tooltip">
<span class="tooltiptext">If eligible, patient consider options for clinical trial.</span>
</div>
<div class="pf tooltip">
<span class="tooltiptext">Patient finishes treatment and reviews post-treatment procedures with clinician.</span>
</div>
<div class="pf tooltip">
<span class="tooltiptext">Patient follows payment plan accordingly.</span>
</div>
<div class="pf tooltip">
<span class="tooltiptext">Patient schedules initial appointment with adult LTFU or PCP. Patient begins to take on more active role in each routine visit with less parental involvement.</span>
</div>
<div class="pf tooltip">
<span class="tooltiptext">Patient continues routine check-ups, diagnostics, and testing.</span>
</div>
<div class="pf tooltip">
<span class="tooltiptext">Patient and family selects type of palliative care with recommendation with clinician.</span>
</div>
<div class="pf tooltip">
<span class="tooltiptext">Patient prepares for end of life.</span>
</div>
<!--Clinicians-->
<div class="grid-item"></div>
<div class="cl tooltip"><b>Clinicians</b>
<span class="tooltiptext">PCP suspects cancer based on test results and refers patient & family to patient navigator.</span>
</div>
<div class="grid-item"></div>
<div class="cl tooltip"><b>Clinicians</b>
<span class="tooltiptext">PCP explains results and orders further testing.</span>
</div>
<div class="cl tooltip">
<span class="tooltiptext">Clinicians conduct testing.</span>
</div>
<div class="cl tooltip">
<span class="tooltiptext">PCP suspects cancer based on test results and refers patient & family to patient navigator.</span>
</div>
<div class="grid-item" style="border: none"></div>
<div class="grid-item" style="border: none" id="pink" ></div>
<div class="grid-item" style="border: none" id="pink" ></div>
<div class="grid-item" style="border: none" id="pink" ></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="cl tooltip"><b>Clinicians</b>
<span class="tooltiptext">Clinician accepts and schedules appointment within 72 hours of request.</span>
</div>
<div class="cl tooltip">
<span class="tooltiptext">Oncologist communicates treatment plan to patient and family, taking into consideration culturally appropriate care.</span>
</div>
<div class="cl tooltip">
<span class="tooltiptext">If patient qualifies, clinician recommends options for receiving treatment through clinical trials.</span>
</div>
<div class="cl tooltip">
<span class="tooltiptext">Clinician plans post-treatment check-ins and creates remission care plan.</span>
</div>
<div class="cl tooltip">
<span class="tooltiptext">Patient finishes treatment and reviews post-treatment procedures with clinician.</span>
</div>
<div class="grid-item"></div>
<div class="cl tooltip"><b>Clinicians</b>
<span class="tooltiptext">PCP refers patient to adult oncologist and long term followup clinic (LTFU).</span>
</div>
<div class="cl tooltip">
<span class="tooltiptext">LTFU clinician will review patient medical history then schedule long-term routine checkups and testing.</span>
</div>
<div class="cl tooltip">
<span class="tooltiptext">Clinician works with patient and family to determine type of care.</span>
</div>
<div class="grid-item" style="border-left: none"></div>
<!--Hospital Administrator-->
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="ha tooltip"><b>Hospital Admin</b>
<span class="tooltiptext">Book appointment time for patient and clinician.</span>
</div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="ha tooltip"><b>Hospital Admin</b>
<span class="tooltiptext">Admin works with coordinator to share records and create a patient facility account.</span>
</div>
<div class="ha tooltip">
<span class="tooltiptext">Reach out to care team on behalf of patient to ensure they are up to speed.</span>
</div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="ha tooltip"><b>Hospital Admin</b>
<span class="tooltiptext">Admin helps patient and family select payment plan and schedule.</span>
</div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="ha tooltip"><b>Hospital Admin</b>
<span class="tooltiptext">Admin ensures successful payment transaction and manages hospital bills with insurance companies.</span>
</div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<!--Digital Navigation Tool--><div class="grid-item"></div>
<div class="grid-item" style="
/* grid-row-start: 5; */
/* grid-row-end: 6; */
border-top: 1px solid #96BFC2;
position: sticky;
left: 0;
z-index: 1005;
background-color: rgb(255, 255, 255);">
<div style="margin-left:10px;"><b>Digital Navigation Tool</b><br>
Mobile application for facility referral, record sharing, and care logistics
</div>
</div>
<div class="dnt tooltip"
style="/*position: sticky;*/ left: 0; /* z-index: 1000; */"><b>Digital Navigation Tool</b>
<span class="tooltiptext">Generates list of recommended testing based on symptoms and routine test results.</span>
</div>
<div class="dnt tooltip">
<span class="tooltiptext">Concierge connects patients to oncology options for official diagnosis.</span>
</div>
<div class="dnt tooltip">
<span class="tooltiptext">Request consent for patient health record access and release.</span>
</div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="dnt tooltip"><b>Digital Navigation Tool</b>
<span class="tooltiptext">Diagnostics engine automatically receives symptoms and test results.</span>
</div>
<div class="dnt tooltip">
<span class="tooltiptext">Generate a list of local and nearby testing centers.</span>
</div>
<div class="dnt tooltip">
<span class="tooltiptext">Care team information and roles shown on app, with ability to change care team.</span>
</div>
<div class="dnt tooltip">
<span class="tooltiptext">Patient fill out questionnaire electronically on app. Available in different languages.</span>
</div>
<div class="grid-item"></div>
<div class="dnt tooltip"><b>Digital Navigation Tool</b>
<span class="tooltiptext">Navigator schedules appointment with oncologist.</span>
</div>
<div class="dnt tooltip">
<span class="tooltiptext">App shows medical summary, transcription from the meeting, and a to-do list.</span>
</div>
<div class="dnt tooltip">
<span class="tooltiptext">Patient navigator explains treatment plan details, risks, and lifestyle changes.</span>
</div>
<div class="dnt tooltip">
<span class="tooltiptext">Patient navigator aids patient & family through the treatment details and provides resources for support with life changes.</span>
</div>
<div class="dnt tooltip">
<span class="tooltiptext">Generates list of clinical trials that the patient is eligible for</span>
</div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="dnt tooltip"><b>Digital Navigation Tool</b>
<span class="tooltiptext">Facilitate sharing of records and scheduling appointment.</span>
</div>
<div class="dnt tooltip">
<span class="tooltiptext">Appointment reminders and details about the visit.</span>
</div>
<div class="dnt tooltip">
<span class="tooltiptext">Support telehealth care and additional resources the patient needs.</span>
</div>
<div class="dnt tooltip">
<span class="tooltiptext">Facilitate transfer or deletion of records to loved one.</span>
</div>
<!--Patient Navigator-->
<div class="grid-item" style="
/* grid-row-start: 5; */
/* grid-row-end: 6; */
border-top: 1px solid #96BFC2;
position: sticky;
left: 0;
background-color: rgb(255, 255, 255);">
<div style="margin-left:10px;"><b>Patient Navigator</b><br>
Designated patient advocate who arranges logistics, emotional support, & resources on eligibility
</div>
</div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="pn tooltip" style="padding-top: 30px; padding-bottom: 20px"><b>Patient Navigator</b>
<span class="tooltiptext">Coordinator ensures records are shared successfully.</span>
</div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="pn tooltip" style="padding-top: 30px; padding-bottom: 20px"><b>Patient Navigator</b>
<span class="tooltiptext">Meets with clinician to understand diagnosis and reaches out to patient & family.</span>
</div>
<div class="pn tooltip">
<span class="tooltiptext">With patient & family, coordinator discuss SDOH needs and care preferences.</span>
</div>
<div class="pn tooltip">
<span class="tooltiptext">On-call services available for patient questions or urgent needs.</span>
</div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="pn tooltip" style="padding-top: 30px; padding-bottom: 20px"><b>Patient Navigator</b>
<span class="tooltiptext">Coordinator helps ensure patient understands and explain anything that was confusing in the appointment.</span>
</div>
<div class="pn tooltip">
<span class="tooltiptext">Coordinator discusses next steps with patient.</span>
</div>
<div class="pn tooltip">
<span class="tooltiptext">Connect oncologist with other clinicians for a second opinion.</span>
</div>
<div class="pn tooltip">
<span class="tooltiptext">On-call services available for patient questions or urgent needs.</span>
</div>
<div class="grid-item"></div>
<div class="pn tooltip" style="padding-top: 30px; padding-bottom: 20px"><b>Patient Navigator</b>
<span class="tooltiptext">Develop wellness reintegration plan (schooling, mental health, physical health, socialization, counseling).</span>
</div>
<div class="grid-item"></div>
<div class="pn tooltip" style="padding-top: 30px; padding-bottom: 20px"><b>Patient Navigator</b>
<span class="tooltiptext">Coordinator helps patient find facility, share records, schedule appointment.</span>
</div>
<div class="pn tooltip">
<span class="tooltiptext">Navigator reminds patient of any recommended annual screening and testing.</span>
</div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none;"></div>
<!--Financial Navigator-->
<div class="grid-item" style="
/* grid-row-start: 5; */
/* grid-row-end: 6; */
border-top: 1px solid #96BFC2;
position: sticky;
left: 0;
z-index: 1005;
background-color: rgb(255, 255, 255);">
<div style="margin-left:10px;"><b>Financial Navigator</b><br>
A service that breaks down costs transparency, determine eligibility for financial aid
</div>
</div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="fn tooltip" style="padding-top: 30px; padding-bottom: 20px"><b>Financial Navigator</b>
<span class="tooltiptext">Identify facilities and clinicians based on health insurance coverage.</span>
</div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="fn tooltip" style="padding-top: 30px; padding-bottom: 20px"><b>Financial Navigator</b>
<span class="tooltiptext">Diagnosis and testing costs are made transparent.</span>
</div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="fn tooltip" style="padding-top: 30px; padding-bottom: 20px"><b>Financial Navigator</b>
<span class="tooltiptext">Break down estimated treatment costs and financial assistance programs that patient may be eligible for.</span>
</div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="fn tooltip" style="border-left: none; border-right:none"><b>Financial Navigator</b>
<span class="tooltiptext">Work on generating a list of requirements for prior authorization and getting insurance approval for patient.</span>
</div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="fn tooltip" style="padding-top: 30px; padding-bottom: 20px"><b>Financial Navigator</b>
<span class="tooltiptext">Manage treatment payment plan. Medical itemized costs managed by an advocacy group with medical billing experience to ensure treatments are fully reimbursed by their medical insurance.</span>
</div>
<div class="fn tooltip">
<span class="tooltiptext">Support for obtaining individual health insurance (required by age of 26).</span>
</div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none;"></div>
<!--SDOH Accomodations-->
<div class="grid-item" style="
/* grid-row-start: 5; */
/* grid-row-end: 6; */
border-top: 1px solid #96BFC2;
position: sticky;
left: 0;
z-index: 1005;
background-color: rgb(255, 255, 255);">
<div style="margin-left:10px;"><b>SDOH Accommodations</b><br>
Free transportation and lodging as needed for patients traveling for care
</div>
</div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="sdoh tooltip" style="padding-top: 25px; padding-bottom: 20px"><b>SDOH Accom.</b>
<span class="tooltiptext">If traveling or relocating for care, navigator provides patient and family with resources for housing and transportation.</span>
</div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="sdoh tooltip" style="padding-top: 25px; padding-bottom: 20px"><b>SDOH Accom.</b>
<span class="tooltiptext">Break down estimated treatment costs and financial aid that patient may be eligible for</span>
</div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="sdoh tooltip" style="padding-top: 25px; padding-bottom: 20px"><b>SDOH Accom.</b>
<span class="tooltiptext">If traveling or relocating for care, Patient navigator provides patient and family with resources for housing and transportation.</span>
</div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none;"></div>
<!--Patient Education-->
<div class="grid-item" style="
/* grid-row-start: 5; */
/* grid-row-end: 6; */
border-top: 1px solid #96BFC2;
position: sticky;
left: 0;
z-index: 1000;
background-color: rgb(255, 255, 255);">
<div style="margin-left:10px;"><b>Patient Education</b><br>
Resources to help patients further their understanding of their health
</div>
</div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="pe tooltiptop" style="padding-top: 25px; padding-bottom: 20px"><b>Patient Education</b>
<span class="tooltiptoptext">Patient literacy resources with patient & family about treatment.</span>
</div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="pe tooltiptop" style="padding-top: 25px; padding-bottom: 20px"><b>Patient Education</b>
<span class="tooltiptoptext">Instructions avoid medical jargon and English slang for easier comprehension.</span>
</div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="pe tooltiptop" style="padding-top: 25px; padding-bottom: 20px"><b>Patient Education</b>
<span class="tooltiptoptext">Instructions avoid medical jargon and English slang for easier comprehension.</span>
</div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="pe tooltiptop" style="padding-top: 25px; padding-bottom: 20px"><b>Patient Education</b>
<span class="tooltiptoptext">Patient modules on survivorship and transition to adult care including: knowledge of cancer history, treatment exposures.long term risks. recommended surveillance</span>
</div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none;"></div>
<!--Standard Health Record-->
<div class="grid-item" style="
/* grid-row-start: 5; */
/* grid-row-end: 6; */
border-top: 1px solid #96BFC2;
position: sticky;
left: 0;
z-index: 1005;
background-color: rgb(255, 255, 255);">
<div style="margin-left:10px;"><b>Standard Health Record</b><br>
A longitudinal, shareable electronic health record
</div>
</div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="shr tooltiptop"><b>Standard Health Record</b>
<span class="tooltiptoptext">Request consent for patient health record access and release.</span>
</div>
<div class="shr tooltiptop">
<span class="tooltiptoptext">Health records electronically shared to provider before appointment.</span>
</div>
<div class="shr tooltiptop">
<span class="tooltiptoptext">Patient history health records are retrieved.</span>
</div>
<div class="shr tooltiptop">
<span class="tooltiptoptext">Health records updated with new diagnosis information. Send official diagnosis data to state cancer registry</span>
</div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="grid-item" style="border-left: none; border-right:none"></div>
<div class="shr tooltiptop"><b>Standard Health Record</b>
<span class="tooltiptoptext">Patient questionnaire uploaded.</span>
</div>
<div class="shr tooltiptop">
<span class="tooltiptoptext">Record autofills electronic patient questionnaire, which patient then confirms.</span>
</div>
<div class="shr tooltiptop">
<span class="tooltiptoptext">Patient ingest forms uploaded.</span>
</div>
<div class="shr tooltiptop">
<span class="tooltiptoptext">Medical summaries uploaded.</span>
</div>
<div class="grid-item"></div>
<div class="shr tooltiptop"><b>Standard Health Record</b>
<span class="tooltiptoptext">Continually update health records after each check-in and treatment session. Send official treatment data to state cancer registry</span>
</div>
<div class="shr tooltiptop">
<span class="tooltiptoptext">Send official treatment data to state cancer registry</span>
</div>
<div class="shr tooltiptop">
<span class="tooltiptoptext">Send official treatment data to state cancer registry</span>
</div>
<div class="shr tooltiptop">
<span class="tooltiptoptext">Send official treatment data to state cancer registry</span>
</div>
<div class="shr tooltiptop">
<span class="tooltiptoptext">Once patient reaches 18yo, patient must give written permission for family or anyone else to see their medical records.</span>
</div>
<div class="shr tooltiptop">
<span class="tooltiptoptext">Medical summaries are uploaded.</span>
</div>
<div class="shr tooltiptop">
<span class="tooltiptoptext">Prepare legal documents for advance directives, living will, healthcare proxy</span>
</div>
<div class="shr tooltiptop">
<span class="tooltiptoptext">Medical documents are transferred to loved ones. Decide if you want to do a body donation upon passing.</span>
</div>
</div>
</body>