-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct-banner.html
2385 lines (2014 loc) · 122 KB
/
product-banner.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
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html class="no-js" dir="ltr" lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head prefix="og: http://ogp.me/ns#">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta charset="utf-8" />
<title>Public Health Infobase - Canada.ca</title>
<meta content="width=device-width,initial-scale=1" name="viewport" />
<link rel="schema.dcterms" href="http://purl.org/dc/terms/" />
<link rel="canonical" href="https://www.canada.ca/en.html" />
<meta name="description" content="Get quick, easy access to all Government of Canada services and information." />
<meta name="keywords"
content="Employment; Workplace; Citizenship; Immigration; Travel; Businesses; Industry; Benefits; Health; Taxes; Environment; Natural resources; Security; Arts; Culture; Heritage; Safety; Transport; Infrastructures; Foreign affairs; Currency; Finance; Sciences; Innovation" />
<meta name="author" content="Service Canada" />
<meta name="dcterms.title" content="Home" />
<meta name="dcterms.description"
content="Get quick, easy access to all Government of Canada services and information." />
<meta name="dcterms.creator" content="Service Canada" />
<meta name="dcterms.language" title="ISO639-2/T" content="eng" />
<meta name="dcterms.subject" title="gccore"
content="Employment; Workplace; Citizenship; Immigration; Travel; Businesses; Industry; Benefits; Health; Taxes; Environment; Natural resources; Security; Arts; Culture; Heritage; Safety; Transport; Infrastructures; Foreign affairs; Currency; Finance; Sciences; Innovation" />
<meta name="dcterms.issued" title="W3CDTF" content="2013-12-13" />
<meta name="dcterms.modified" title="W3CDTF" content="2022-01-13" />
<meta name="dcterms.spatial" content="Canada" />
<meta name="dcterms.identifier" content="Service_Canada" />
<script src="//assets.adobedtm.com/be5dfd287373/abb618326704/launch-3eac5e076135.min.js"></script>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css"
integrity="sha256-mUZM63G8m73Mcidfrv5E+Y61y7a12O5mW4ezU3bxqW4=" crossorigin="anonymous" />
<link rel="stylesheet" href="https://www.canada.ca/etc/designs/canada/wet-boew/css/theme.min.css" />
<link href="https://www.canada.ca/etc/designs/canada/wet-boew/assets/favicon.ico" rel="icon" type="image/x-icon" />
<noscript>
<link rel="stylesheet" href="https://www.canada.ca/etc/designs/canada/wet-boew/css/noscript.min.css" />
<link rel="stylesheet" href="https://cdn.datatables.net/1.10.22/css/jquery.dataTables.min.css">
</noscript>
<script>!function (a) { var e = "https://s.go-mpulse.net/boomerang/", t = "addEventListener"; if ("False" == "True") a.BOOMR_config = a.BOOMR_config || {}, a.BOOMR_config.PageParams = a.BOOMR_config.PageParams || {}, a.BOOMR_config.PageParams.pci = !0, e = "https://s2.go-mpulse.net/boomerang/"; if (window.BOOMR_API_key = "KBFUZ-C9D7G-RB8SX-GRGEN-HGMC9", function () { function n(e) { a.BOOMR_onload = e && e.timeStamp || (new Date).getTime() } if (!a.BOOMR || !a.BOOMR.version && !a.BOOMR.snippetExecuted) { a.BOOMR = a.BOOMR || {}, a.BOOMR.snippetExecuted = !0; var i, _, o, r = document.createElement("iframe"); if (a[t]) a[t]("load", n, !1); else if (a.attachEvent) a.attachEvent("onload", n); r.src = "javascript:void(0)", r.title = "", r.role = "presentation", (r.frameElement || r).style.cssText = "width:0;height:0;border:0;display:none;", o = document.getElementsByTagName("script")[0], o.parentNode.insertBefore(r, o); try { _ = r.contentWindow.document } catch (O) { i = document.domain, r.src = "javascript:var d=document.open();d.domain='" + i + "';void(0);", _ = r.contentWindow.document } _.open()._l = function () { var a = this.createElement("script"); if (i) this.domain = i; a.id = "boomr-if-as", a.src = e + "KBFUZ-C9D7G-RB8SX-GRGEN-HGMC9", BOOMR_lstart = (new Date).getTime(), this.body.appendChild(a) }, _.write("<bo" + 'dy onload="document._l();">'), _.close() } }(), "".length > 0) if (a && "performance" in a && a.performance && "function" == typeof a.performance.setResourceTimingBufferSize) a.performance.setResourceTimingBufferSize(); !function () { if (BOOMR = a.BOOMR || {}, BOOMR.plugins = BOOMR.plugins || {}, !BOOMR.plugins.AK) { var e = "" == "true" ? 1 : 0, t = "", n = "vzz7b3nydfeosyprvuha-f-3e115c04f-clientnsv4-s.akamaihd.net", i = "false" == "true" ? 2 : 1, _ = { "ak.v": "32", "ak.cp": "368225", "ak.ai": parseInt("231651", 10), "ak.ol": "0", "ak.cr": 21, "ak.ipv": 4, "ak.proto": "h2", "ak.rid": "16f3a722", "ak.r": 32593, "ak.a2": e, "ak.m": "dscb", "ak.n": "essl", "ak.bpcip": "174.115.240.0", "ak.cport": 50151, "ak.gh": "209.148.205.76", "ak.quicv": "", "ak.tlsv": "tls1.3", "ak.0rtt": "", "ak.csrc": "-", "ak.acc": "", "ak.t": "1643228430", "ak.ak": "hOBiQwZUYzCg5VSAfCLimQ==zepcwCFdybQaPzLP439e8SVagwK8MeXsI3o3C7oAgFDspxmfedOLXNq48uydNobb3fNDMJ8J/dD9I3OxvasvxKMhNF/tfhBGTmi0MEkPcsowRH1xA4yinO+bhjmfZynTdREGCUtbt18qysP5Z6kt8iqRR735+psK/7O00dxaMafYa8yqG0hFvLj0BECj3wzf4Ab7Kyj5v/Hc7rM0fhAz/wq4/9YdfKDm2uZNfpl7unmmOhd3I0rFKT/6wpi+Eayr5TuxyCTWkbkVvzzUKcg8jPHf8Er10jr5BbHvQgnC2gq0bBSCUvDF1siRlkVPVhsFymulyc8wifVns5dybGe5K0iXrpX8b4FGQm1F75k6c4i5SpSUIcblgDFP6mFywhFRTQkpblFE++axkHoHxz31kmgecjzY03v9JZdXMD170Rc=", "ak.pv": "635", "ak.dpoabenc": "", "ak.tf": i }; if ("" !== t) _["ak.ruds"] = t; var o = { i: !1, av: function (e) { var t = "http.initiator"; if (e && (!e[t] || "spa_hard" === e[t])) _["ak.feo"] = void 0 !== a.aFeoApplied ? 1 : 0, BOOMR.addVar(_) }, rv: function () { var a = ["ak.bpcip", "ak.cport", "ak.cr", "ak.csrc", "ak.gh", "ak.ipv", "ak.m", "ak.n", "ak.ol", "ak.proto", "ak.quicv", "ak.tlsv", "ak.0rtt", "ak.r", "ak.acc", "ak.t", "ak.tf"]; BOOMR.removeVar(a) } }; BOOMR.plugins.AK = { akVars: _, akDNSPreFetchDomain: n, init: function () { if (!o.i) { var a = BOOMR.subscribe; a("before_beacon", o.av, null, null), a("onbeacon", o.rv, null, null), o.i = !0 } return this }, is_complete: function () { return !0 } } } }() }(window);</script>
</head>
<style type="text/css">
/* breadcrumbs */
#wb-bc li:before {
color: #333;
content: "\f054";
font-family: "Font Awesome 5 Free";
font-size: .7em;
font-weight: 900;
}
#wb-bc li:first-child a {
padding-lef: 8px;
}
}
#wb-bc a {
padding: 5px 0px;
}
/* end breadcrumbs */
/*h1 */
h1 {
border-bottom: none;
}
h1#wb-cont::after {
content: ""; /* This is necessary for the pseudo element to work. */
display: block; /* This will put the pseudo element on its own line. */
width: 70px; /* Change this to whatever width you want to have before hover. */
padding-bottom: 8px; /* This creates some space between the element and the border. */
border-bottom: .18em solid #af3c43; /* This creates the border. Replace black with whatever color you want. */
}
h1 span.stacked {
display: flex;
flex-direction: column-reverse;
margin-left: -9999px;
}
h1 span.stacked span:nth-child(1) {
margin-top: -1.1em;
}
h1 span.stacked span:nth-child(1), h1 span.stacked span:nth-child(2) {
margin-left: 9999px;
}
h1 span.stacked span:nth-child(2) {
font-size: 26px;
color: #555;
font-weight: 500;
margin-bottom: 0.17em;
}
.global-footer h3 {
color: white;
}
.icon {
min-height: 0px;
}
/* .wayfinder {
border-right: 1px solid white;
margin-right: 60px;
} */
.wayfinder {
border-right: 1px solid white;
}
.btn-contact {
background-color: #ccc;
border-radius: 0;
color: #26374a !important;
font-weight: bold !important;
margin-bottom: 16px;
}
#wb-info .landscape2 {
background: #e3e3e3;
}
/* .provisional.contributors {
font-size: 16px;
font-weight: 600;
} */
.provisional.from {
font-size: 17px;
margin-top: 3px;
}
.provisional.contributors ul {
margin-block-start: 0em;
margin-block-end: 0em;
margin-inline-start: 0px;
margin-inline-end: 0px;
padding-inline-start: 0px;
}
.blue-header {
background-color: #26374A;
color: #FFF;
}
.fa-tachometer-alt {
color: white;
}
.fa-chart-bar {
color: white;
}
.fa-chart-pie{
color: white;
}
.btn-block {
background-color: #FFF;
border : 5 px;
}
.btn-default {
border-radius: 30px;
font-weight: bold;
background-color: #FFF;
}
.accordion {
background-color: #fff;
color: #444;
cursor: pointer;
padding: 12px;
width: 100%;
text-align: left;
border: none;
outline: none;
transition: 0.4s;
font-weight: bold;
}
.active, .accordion:hover {
background-color: #ccc;
}
.panel {
padding: 0 18px;
background-color: white;
display: none;
overflow: hidden;
}
.accordion:after {
content: '\02795'; /* Unicode character for "plus" sign (+) */
font-size: 13px;
color: #444;
float: right;
}
.active:after {
content: "\2796"; /* Unicode character for "minus" sign (-) */
}
#archived{
display:none;
}
#printText{
display: none;
}
table.dataTable thead .sorting_asc, table.dataTable thead .sorting_desc {
background-color: #103d65;
}
.dataTables_wrapper .dataTables_paginate {
/* float: right; */
clear:both;
text-align: center;
padding-top: 0.25em;
width: 100%;
}
.dataTables_wrapper .dataTables_info:after {
content: none;
font-size: 1.2em;
line-height: 1em;
padding: 0 .25em;
}
.bar {
fill: #015B7E;
stroke: #015B7E;
}
.axis {
stroke: #D8D8D8;
}
text {
/* fill: #6c686f; */
fill:black;
}
.tick>line,
.domain {
stroke: #ccc;
}
.x-axis-title,
.y-axis-title {
font-size: 0.8em;
}
.x-axis .tick line {
stroke: black;
}
.x-axis,
.y-axis {
font-size: 12px;
}
label {
display: inline;
}
.CanadaMapRow {
font-weight:bold;
}
.line {
fill: none;
stroke-width: 3px;
}
.chart rect {
stroke:black;
stroke-width:0.09px;
}
.boxes {
text-align: center;
display: flex;
flex-wrap: wrap;
justify-content: center;
padding-left: 1px;
padding-right: 1px;
height: 10%;
}
.boxes a, .boxes a:visited, .boxes a:focus {
text-decoration: none;
color: black;
}
.innerBox {
flex: 0 0 48.5%;
border: 3px solid #ccc;
border-radius: 10px;
margin-left: 0px;
margin-right: 8px;
text-decoration: none;
color: black;
margin-bottom: 5px;
}
.innerBox:hover {
border: 3px solid #000;
border-radius: 10px;
box-shadow: 2px 2px;
}
.innerBox div {
padding-left: 3px;
padding-right: 3px;
}
.boxes p {
font-size: 20px;
margin-top: 5px;
margin-bottom: 5px;
}
.boxes p.h2 {
font-size: 30px;
margin-top: 5px;
}
#box4 {
flex: 0 0 97.5%;
}
#graphHospital text, #graphHospitalBySex text {
font-size: 16px;
}
#probable-exposure .y-axis, #probable-exposure .x-axis, #probable-exposure #legend{
font-size:16px;
}
td#ratetests {
min-width: 80px;
}
td#numtests {
min-width: 113px;
}
.CanadaMapRow>td {
background-color: #bfbfbf;
}
.hradd {
display: none;
}
.navbuttons {
padding:0px;
}
.navbuttons .btn-group{
padding:20px 0px;
}
.mapNotesText ol {
margin-bottom: 0px;
}
@media only screen and (max-width: 800px) {
#probable-exposure .y-axis, #probable-exposure .x-axis, #probable-exposure #legend{
font-size:18px;
}
#graphHospital text, #graphHospitalBySex text {
font-size: 18px;
}
.x-axis-title, .y-axis-title {
font-size: 1.1em!important;
}
.innerBox {
flex: 0 0 97.5%;
}
.boxes a, .boxes a:visited, .boxes a:focus {
text-decoration: none;
color: black;
}
#txtTotal{
white-space:nowrap;
}
#dataTable {
font-size: 12px;
}
#dataTable2 {
font-size: 12px;
}
#dataTableb {
font-size: 12px;
}
.navbuttons a {
padding:10px 0px !important;
/*font-size:16px !important;*/
}
}
@media only screen and (max-width: 991px) {
#mainImg {
margin-bottom: 20px;
}
#textarea {
margin-top: 20px;
}
#dataTable {
font-size: 13px;
}
#dataTable2 {
font-size: 13px;
}
#dataTableb {
font-size: 13px;
}
#box1, #box2, #box3{
flex: 0 0 97.5%;
}
#box1, #box2, #box3{
flex: 0 0 97.5%;
}
}
@media only screen and (min-width: 991px) {
.pathText {
display: none;
}
#textarea {
margin-top: 50px;
/*height:185px;*/
}
#dataTable {
font-size: 14px!important;
}
#dataTable2 {
font-size: 14px!important;
}
#dataTableb {
font-size: 14px!important;
}
}
.page-break { display: none; }
@media print {
#tiles{
display:none;
}
#printText{
display: inline;
}
#dataTable2_length,#dataTable2_filter,#dataTable2_paginate{
display: none;
}
body {
font-family: Helvetica, Arial,sans-serif;
font-size: 16px;
line-height: 1.4375;
color: #333;
background-color: #fff;
}
main {
font-size: 20px;
line-height: 1.65em;
}
.chart rect {
stroke:none;
}
#wb-bc, #fig2-noprint, #onthispage, #updateDetails, .btn, #mapInstruct, hr, #figure3-dropdown, #trendData, #epiCurveDetails, #fig2table, #figure3-header, #fig4table {
display: none !important;
}
h1 {
margin-top:20px;
}
details[open] {
border:none;
}
summary{
opacity:0;
}
.figure3-title-print, #graphHospitalBySex, #graphHospital, #chart1, #chart2, #chart3, #chart4, .fig2-print, .legendG, .demographics, #graphHospitalizations, #graphICU, #graphDeath, #figure1b-textdescript {
display:inline-block !important;
}
.page-break { display: block; page-break-before: always; }
.CanadaMapRow>td {
background-color: #bfbfbf;
font-weight:bold;
}
#smallMultiple{
break-inside: avoid;
}
.printBR {
display: inline-block !important;
}
.noprintBR {
display: none !important;
}
#dataTable {
font-size: 11px!important;
}
#dataTable2 {
font-size: 12px!important;
}
#dataTableb {
font-size: 12px!important;
}
.boxes p {
font-size: 17px;
}
.keybox10 p {
font-size: 15px;
}
.noprintSpacing {
margin-bottom: 0px;
}
.printSpacing5 {
margin-bottom: 5px;
}
#COVID_HOSP_DIVSMALL {
display:none;
}
#COVID_HOSP_DIV {
display:inline!important;
}
.col-print-1 {width:8%; float:left;}
.col-print-2 {width:16%; float:left;}
.col-print-3 {width:25%; float:left;}
.col-print-4 {width:33%; float:left;}
.col-print-5 {width:42%; float:left;}
.col-print-6 {width:50%; float:left;}
.col-print-7 {width:58%; float:left;}
.col-print-8 {width:66%; float:left;}
.col-print-9 {width:75%; float:left;}
.col-print-10 {width:83%; float:left;}
.col-print-11 {width:92%; float:left;}
.col-print-12 {width:100%; float:left;}
}
@page {
margin-left: 7.8mm;
margin-right: 7.8mm;
margin-top: 7.8mm;
margin-bottom: 4.8mm;
}
.figure3-title-print{
display:none;
}
.fig2-print {
display: none;
}
#graphHospitalBySex{
display:none;
}
#newCases>thead>tr>th,#newCases>tbody>tr>td {
text-align:right;
}
#newCases>thead>tr>th:first-child,#newCases>tbody>tr>td:first-child {
text-align:left;
}
.printBR {
display: none;
}
#tiles .outerPanel {
display: inline-block;
margin-bottom: 15px;
padding: 20px 15px 10px 15px;
width: 100%;
background-color:#e1e4e7;
}
#tiles .innerPanel {
text-decoration: none;
color: black;
font-size: 18px;
}
#tiles .innerPanelText {
text-decoration: none;
color: black;
font-size: 18px;
}
@media (min-width: 768px) {
#tiles .outerPanel {
width: 32%;
}
}
#COVID_HOSP_DIV {
display:none;
}
@media (min-width: 1200px) {
#tiles .outerPanel {
width: 24.6%;
}
#COVID_HOSP_DIVSMALL {
display:none;
}
#COVID_HOSP_DIV {
display:inline;
}
}
ul.no-bullets {
list-style-type: none; /* Remove bullets */
padding: 0; /* Remove padding */
margin: 0; /* Remove margins */
margin-bottom: 15px;
/*font-size: 18px;*/
}
.h1banner{
font-size: 28px;
margin-top: : 0;
}
.cm-facet-form-search {
font-family: Noto Sans;
font-style: normal;
font-weight: bold;
font-size: 20px;
line-height: 27px;
color: #26374A;
padding-left: 15px;
padding-top: 9px;
padding-bottom: 25px;
margin-left: auto;
margin-right: auto;
text-align: center;
}
.cm-facet-form-search-inner {
position: relative;
display: inline-block;
}
.cm-facet-form-search #cm_text_search {
background-image: url(../images/211818_search_icon.png);
background-repeat: no-repeat;
background-position: 3%;
color: #000000;
font-family: Noto Sans;
font-style: normal;
font-weight: normal;
font-size: 15px;
line-height: 20px;
padding-left: 65px;
padding-right: 240px;
height: 60px;
width: 650px;
border-radius: 50px;
border: 0.5px solid rgba(78, 91, 115, 0.5);
box-shadow: 0px 8px 16px rgb(38 55 74 / 10%);
}
.cm-facet-form-search .btn-primary {
font-family: Noto Sans;
font-style: normal;
font-weight: bold;
font-size: 18px;
line-height: 25px;
background-color: #26374A;
border: 2px solid #FFFFFF;
border-radius: 0;
color: #FFFFFF;
position: absolute;
right: 10px;
top: 7px;
padding: 1px 12px 1px 12px;
height: 45px;
border-radius: 50px;
width: 174px;
display: inline;
}
.cm-facet-form-search .btn-clear-search {
font-family: Noto Sans;
font-style: normal;
font-weight: bold;
font-size: 18px;
line-height: 25px;
background-color: #26374A;
border: 2px solid #FFFFFF;
border-radius: 0;
color: #FFFFFF;
position: absolute;
right: 185px;
top: 7px;
padding: 1px 12px 1px 12px;
height: 45px;
border-radius: 50px;
width: 45px;
display: none;
}
.app-name {
float: left;
font-size: 28px;
margin-bottom: 20px;
margin-top: 8px;
padding: 5px;
font-weight: bold;
line-height: 1.1;
}
.topnav input[type=text] {
float: right;
padding: 6px;
border: none;
margin-top: 8px;
margin-right: 16px;
margin-bottom: 20px;
font-size: 17px;
width:100%;
}
</style>
<body>
<nav aria-label="Skip links">
<ul id="wb-tphp">
<li class="wb-slc">
<a class="wb-sl" href="#wb-cont">
Skip to main content
</a>
</li>
<li class="wb-slc">
<a class="wb-sl" href="#wb-info">
Skip to "About this site"
</a>
</li>
</ul>
</nav>
<div class="dialog-off-canvas-main-canvas" data-off-canvas-main-canvas>
<header class="navbar navbar-default" id="navbar" style="background-color: white !important; margin-bottom: 0px;">
<div id="wb-bnr" class="container">
<div class="row">
<section id="wb-lng" class="col-xs-3 col-sm-12 pull-right text-right mrgn-bttm-md">
<h2 class="wb-inv">Language selection</h2>
<div class="region region-language-toggle">
<section
class="language-switcher-language-url block block-wxt-library block-wxt-language-blocklanguage-interface clearfix"
id="block-aafctheme-languageswitcher" data-block-plugin-id="wxt_language_block:language_interface">
<div class="hidden">WxT Language switcher</div>
<ul class="links list-inline mrgn-bttm-0">
<li><a href="/fr" class="language-link" lang="fr" hreflang="fr"
data-drupal-link-system-path="<front>"><span class="hidden-xs">Français</span><abbr
title="Français" class="visible-xs h3 mrgn-tp-sm mrgn-bttm-0 text-uppercase">fr</abbr></a></li>
</ul>
</section>
</div>
</section>
<div class="region col-xs-9 col-sm-4 region-banner">
<div class="brand" property="publisher" typeof="GovernmentOrganization">
<a href="https://canada.ca/en.html" property="url">
<img id="header-logo" src='https://agriculture.canada.ca/libraries/theme-gcweb/assets/sig-blk-en.svg'
alt="Government of Canada" property="logo" />
<span class="wb-inv"> /
<span lang="fr">Gouvernement du Canada</span>
</span>
</a>
<meta property="name" content="Government of Canada">
<meta property="areaServed" typeof="Country" content="Canada">
<link property="logo" href="https://agriculture.canada.ca/libraries/theme-gcweb/assets/wmms-blk.svg">
</div>
</div>
<div class="region pull-right col-xs-12 col-sm-7 col-md-6 col-lg-6 mrgn-bttm-md region-search">
<section id="block-customsearchblockform"
class="pull-right block block-block-content block-block-contentac4e5499-76c7-40e4-8421-44879378417c clearfix"
data-block-plugin-id="block_content:ac4e5499-76c7-40e4-8421-44879378417c">
</section>
</div>
</div>
</div>
</header>
<div class="container-fluid">
<div class="row">
<div class="highlighted">
<div class="region region-highlighted">
<div data-drupal-messages-fallback class="hidden"></div>
</div>
</div>
<main property="mainContentOfPage" class="col-md-12 main-container container js-quickedit-main-content">
<section>
<nav id="wb-bc" property="breadcrumb" aria-labelledby="breadcrumbTitle">
<h2 id="breadcrumbTitle">You are here</h2>
<div class="container">
<ol class="breadcrumb" style="font-size:16px; margin-left: -16px;">
<li><a href="https://www.canada.ca/en.html">Canada.ca</a></li>
<li><a href="https://www.canada.ca/en/services/health.html">Health</a></li>
<li><a href="https://www.canada.ca/en/services/health/science-research-data.html">Science, research and data</a></li>
</ol>
</div>
</nav>
<section class="blue-header well well-sm brdr-0 mrgn-bttm-0">
<div class="container topnav">
<div class="row">
<div class="col-md-4">
<h2 class="app-name">Health Infobase</h2>
</div>
<div class="col-md-8">
<input type="text" placeholder="Search the Health Infobase">
</div>
</div>
<button type="button" class="btn btn-default mrgn-bttm-sm" onclick="all_topics()">All topics</button>
<button type="button" class="btn btn-default mrgn-bttm-sm " onclick="covid19()"><img src="./img/covid.png" width="25" height="25"/> COVID-19</button>
<button type="button" class="btn btn-default mrgn-bttm-sm" onclick="opioids()"><img src="./img/opioids.png" width="25" height="25"/> Opioids</button>
<button type="button" class="btn btn-default mrgn-bttm-sm" onclick="cancer()"><img src="./img/Cancer.png" width="25" height="25"/> Cancer</button>
<button type="button" class="btn btn-default mrgn-bttm-sm" onclick="vaccines()"><img src="./img/vaccine.png" width="25" height="25"/> Vaccines</button>
<button type="button" class="btn btn-default mrgn-bttm-sm" onclick="kids()"><img src="./img/kids.png" width="25" height="25"/> Children</button>
<button type="button" class="btn btn-default mrgn-bttm-sm" onclick="injuries()"><img src="./img/injury.png" width="25" height="25"/> Injuries</button>
</div>
</section>
<div class="container">
<h1 property="name" id="wb-cont" dir="ltr" class="gc-thickline">COVID-19 epidemiology update</h1>
<p class="mrgn-bttm-sm">Summary of COVID-19 cases, hospitalizations and deaths, testing and variants of concern across Canada and over time.</p>
<!--<section id="archived" class="alert alert-warning wb-inview" data-inview="archived-bnr"><h2>Update your bookmarks</h2><p>This page now contains information that used to be on the COVID-19 Situational Awareness Dashboard.</p>-->
<!-- <p>A downloadable .csv data file is located at the bottom right of the <a href="#a2">map of Canada</a>. Please update your bookmarks.</p>-->
<!--</section>-->
<div class="col-md-12 navbuttons">
<div class="btn-group btn-group-lg btn-group-justified">
<a class="btn btn-primary active" role="button" href="#">Current update</a>
<!--<a class="btn btn-default" role="button" href="/covid-19/vaccination-coverage/technical-notes.html">Understanding the data</a>-->
<a class="btn btn-default" role="button" href="/covid-19/archive/">Archived reports</a>
</div>
</div>
<h2>Current update</h2>
<p>Updated: <span class="updateTime3"></span></p>
<p>This summary of COVID-19 cases across Canada contains detailed data about the spread of the virus over time and in different regions of the country. Includes breakdowns by age and sex or gender. Provides an overview of testing, variants of concern, cases following vaccination and severe illness and outcomes.</p>
<p><strong>Update schedule</strong>: We update all sections of this page every Friday, except for 'Cases following vaccination', which we update on Tuesdays.</p>
<!-- <section class="alert alert-info">
<h3>Changes to update schedule</h3>
<p>On June 10, 2022, we changed this page to reflect current reporting by the provinces and territories. We’ve switched from daily to weekly updates for cases, deaths and laboratory tests in the following sections: Key updates, Current situation and National overview.</p>
</section> -->
<div id="onthispage">
<h2>On this page</h2>
<ul>
<li><a href="#a1">Key COVID-19 updates</a></li>
<li><a href="#a2">Current situation</a></li>
<li><a href="#a3">National overview</a></li>
<li><a href="#VOC">COVID-19 variants in Canada</a></li>
<li><a href="#detailedCases">Detailed case information</a>
<ul>
<li><a href="#a4">Epidemic curve</a></li>
<li><a href="#a5">Demographics</a></li>
<li><a href="#a9">Cases following vaccination </a></li>
<li><a href="#a7">Severe illness and outcomes</a></li>
</ul>
</li>
<li><a href="#a8">Provincial, territorial and international reporting</a></li>
<li><a href="#tiles">Additional COVID-19 data resources</a></li>
<!--<li><a href="#a2">Epidemic Curve</a></li>-->
<!--<li><a href="#a3">Demographics</a></li>-->
<!--<li><a href="#a4">Symptoms and severity</a></li>-->
<!--<li><a href="#a5">Probable exposure setting</a></li>-->
<!--<li><a href="#a6">Provincial and territorial reporting</a></li>-->
<!--<span class="badge">New</span>-->
</ul>
</div>
<h2 id="a1">Key COVID-19 updates <small>(Last data update <span class="updateTime3"></span>)</small></h2>
<div class='boxes col-md-12' style="">
<!--<svg class="totalCases" tabindex="0">-->
<div id="box1" class="innerBox col-md-3 col-sm-12">
<div class="col-md-6 col-sm-6 col-xs-6 mrgn-tp-msm mrgn-bttm-sm">
<a href="#newCases" id="keybox1" class="keyboxA"><div class="mrgn-tp-lg mrgn-bttm-lg">
<p>Weekly change in cases</p>
<p class="h2"><span class="newCases">{Weekly cases}</span></p>
</div></a>
</div>
<div class="col-md-6 col-sm-6 col-xs-6 mrgn-tp-msm mrgn-bttm-sm">
<a href="#a2" data-figure="1" data-type-stat="num" data-type-measure="cases_total" id="keybox2"><div class="mrgn-tp-lg mrgn-bttm-lg">
<p>Total cases</p>
<p class="h2"><span class="totalCases">{Total cases}</span></p>
</div></a>
</div>
</div>
<!--<div id="box1" class="innerBox col-md-12 col-sm-12">-->
<!-- <div class="col-md-6 col-xs-6 col-print-3 mrgn-tp-msm mrgn-bttm-sm">-->
<!-- <a href="#a2" data-figure="1" data-type-stat="num" data-type-measure="tests" id="keybox1"><div class="mrgn-tp-lg mrgn-bttm-lg">-->
<!-- <p>People in hospital today</p>-->