body {
  background: #0B101A;
  color: #AAAAAA;
  margin: 0;
  padding: 0;
  font-family: Sans-Serif;
  font-size: 14px;
}
body.-show-discontinued .bc19-o-discontinued {
  display: inherit !important;
}
body.-show-discontinued .bc19-o-discontinued.-has-counters {
  display: flex !important;
}
a:link,
a:visited {
  color: lightblue;
  font-weight: bold;
  text-decoration: none;
}
#deaths_by_age_graph .bc19-c-bar-graph__bar,
#mortality_by_age_graph .bc19-c-bar-graph__bar {
  background: #A81010;
}
#report-timestamp-container {
  font-size: 90%;
  margin-bottom: 1.5em;
  margin-top: 0.5em;
}
/* Billboard.js theme overrides */
.bb path,
.bb line {
  fill: none;
  stroke: #999;
}
.bb text {
  fill: #555;
}
.bb-axis-y text,
.bb-axis-y2 text {
  fill: #999;
}
.bb-grid line {
  stroke: #333;
}
.bb-tooltip {
  background: #333;
  border-color: #333;
  box-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.5);
}
.bb-tooltip td {
  background: black;
  border-left-color: #333;
}
.bb-tooltip td:first-child {
  border-right-color: #333;
}
.bb-tooltip th {
  background: #222;
  color: #EEE;
}
/*
 * Bar graph.
 */
.bc19-c-bar-graph {
  display: grid;
  margin: 0;
  padding: 1em;
}
.bc19-c-bar-graph.-is-horiz {
  grid-template-columns: 7em auto min-content min-content;
  align-items: center;
}
.bc19-c-bar-graph.-is-horiz .bc19-c-bar-graph__bar {
  border-radius: 0 10px 10px 0;
  padding-right: 5px;
  margin: 5px 0;
  grid-row: auto;
  grid-column: 2;
  min-width: max-content;
}
.bc19-c-bar-graph.-is-horiz .bc19-c-bar-graph__label {
  grid-column: 1;
  grid-row: auto;
  text-align: right;
}
.bc19-c-bar-graph.-is-horiz .bc19-c-bar-graph__pct {
  grid-column: 3;
  grid-row: auto;
  margin-left: 1em;
  text-align: right;
  white-space: nowrap;
}
.bc19-c-bar-graph.-is-horiz .bc19-c-bar-graph__rel-value {
  grid-column: 4;
  grid-row: auto;
  margin-left: 1em;
  text-align: right;
  white-space: nowrap;
}
.bc19-c-bar-graph__bar {
  background: #4783EF;
  box-sizing: border-box;
  color: white;
  font-size: 70%;
  grid-area: bar;
  margin: 5px;
  padding: 3px;
  text-align: right;
  white-space: nowrap;
}
.bc19-c-bar-graph__group {
  margin: 0 0.5rem;
}
.bc19-c-bar-graph__label {
  font-size: 90%;
  grid-area: label;
  margin: 5px;
}
.bc19-c-bar-graph__pct {
  font-size: 70%;
  color: #999;
}
.bc19-c-bar-graph__rel-value {
  font-size: 70%;
}
.bc19-c-bar-graph__rel-value.-is-down {
  color: #26ab26;
}
.bc19-c-bar-graph__rel-value.-is-down::before {
  content: "▼ ";
  font-size: 80%;
  vertical-align: middle;
}
.bc19-c-bar-graph__rel-value.-is-up {
  color: red;
}
.bc19-c-bar-graph__rel-value.-is-up::before {
  content: "▲ ";
  font-size: 80%;
}
.bc19-c-bar-graph__subtitle {
  color: #777;
  font-size: 80%;
  font-style: italic;
  font-weight: normal;
  grid-column: 4 span;
  margin: 0 0 1em 0;
  padding: 0;
}
.bc19-c-bar-graph__title {
  color: #777;
  font-size: 120%;
  font-weight: normal;
  grid-column: 4 span;
  margin: 0 0 0.5em 0;
  padding: 0;
}
/*
 * Counter graph.
 */
.bc19-c-counter {
  display: inline-flex;
  flex-direction: column;
  gap: 0.5em;
  margin: 1.5em;
  text-align: center;
  vertical-align: top;
  white-space: nowrap;
}
.bc19-c-counter.-up-is-bad .bc19-c-counter__relative.-is-down .bc19-c-counter__relative-value,
.bc19-c-counter__relative.-is-up .bc19-c-counter__relative-value {
  color: #26ab26;
}
.bc19-c-counter.-up-is-bad .bc19-c-counter__relative.-is-up .bc19-c-counter__relative-value,
.bc19-c-counter__relative.-is-down .bc19-c-counter__relative-value {
  color: red;
}
.bc19-c-counter.-is-good .bc19-c-counter__value {
  color: #26ab26;
}
.bc19-c-counter.-is-bad .bc19-c-counter__value {
  color: red;
}
.bc19-c-counter.-is-text-value .bc19-c-counter__value {
  font-size: 300%;
}
.bc19-c-counter__relative {
  color: #777;
  font-size: 95%;
  line-height: 1.5em;
  vertical-align: bottom;
  white-space: nowrap;
}
.bc19-c-counter__relative.-is-unchanged .bc19-c-counter__relative-value::before,
.bc19-c-counter__relative.-is-up .bc19-c-counter__relative-value::before {
  content: "▲ ";
}
.bc19-c-counter__relative.-is-down .bc19-c-counter__relative-value::before {
  content: "▼ ";
}
.bc19-c-counter__relative.-is-unchanged {
  color: lightgrey;
}
.bc19-c-counter__relative-value {
  margin-right: 0.2em;
  font-weight: bold;
}
.bc19-c-counter__relative-value::before {
  display: inline;
  font-size: 60%;
}
.bc19-c-counter__title {
  color: #777;
  font-size: 120%;
  font-weight: normal;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.bc19-c-counter__value {
  font-size: 500%;
}
.bc19-c-notice {
  color: #DD0000;
  margin: 2em 0;
  padding: 0;
}
/*
 * Timeline graph
 */
.bc19-c-timeline-graph {
  margin: 1em 0 0 0;
  padding: 0 1em 0 0;
}
.bc19-c-timeline-graph + .bc19-c-timeline-graph {
  margin-top: 2em;
}
.bc19-c-timeline-graph .bb-xgrid-line.-is-severity-very-low line,
.bc19-c-timeline-graph .bb-ygrid-line.-is-severity-very-low line {
  stroke: green;
  stroke-dasharray: 3 3;
}
.bc19-c-timeline-graph .bb-xgrid-line.-is-severity-very-low text,
.bc19-c-timeline-graph .bb-ygrid-line.-is-severity-very-low text {
  fill: green;
  font-size: 12px;
}
.bc19-c-timeline-graph .bb-xgrid-line.-is-severity-low line,
.bc19-c-timeline-graph .bb-ygrid-line.-is-severity-low line {
  stroke: blue;
  stroke-dasharray: 3 3;
}
.bc19-c-timeline-graph .bb-xgrid-line.-is-severity-low text,
.bc19-c-timeline-graph .bb-ygrid-line.-is-severity-low text {
  fill: blue;
  font-size: 12px;
}
.bc19-c-timeline-graph .bb-xgrid-line.-is-severity-medium line,
.bc19-c-timeline-graph .bb-ygrid-line.-is-severity-medium line {
  stroke: rgba(0, 153, 0, 0.4);
  stroke-dasharray: 3 3;
}
.bc19-c-timeline-graph .bb-xgrid-line.-is-severity-medium text,
.bc19-c-timeline-graph .bb-ygrid-line.-is-severity-medium text {
  fill: #009900;
  font-size: 12px;
}
.bc19-c-timeline-graph .bb-xgrid-line.-is-severity-high line,
.bc19-c-timeline-graph .bb-ygrid-line.-is-severity-high line {
  stroke: rgba(255, 165, 0, 0.5);
  stroke-dasharray: 3 3;
}
.bc19-c-timeline-graph .bb-xgrid-line.-is-severity-high text,
.bc19-c-timeline-graph .bb-ygrid-line.-is-severity-high text {
  fill: #B57500;
  font-size: 12px;
}
.bc19-c-timeline-graph .bb-xgrid-line.-is-severity-critical line,
.bc19-c-timeline-graph .bb-ygrid-line.-is-severity-critical line {
  stroke: rgba(255, 0, 0, 0.4);
  stroke-dasharray: 3 3;
}
.bc19-c-timeline-graph .bb-xgrid-line.-is-severity-critical text,
.bc19-c-timeline-graph .bb-ygrid-line.-is-severity-critical text {
  fill: #ae0000;
  font-size: 12px;
}
.bc19-c-timeline-graph .bb-xgrid-line.-is-severity-extreme line,
.bc19-c-timeline-graph .bb-ygrid-line.-is-severity-extreme line {
  stroke: rgba(191, 39, 153, 0.6);
  stroke-dasharray: 3 3;
}
.bc19-c-timeline-graph .bb-xgrid-line.-is-severity-extreme text,
.bc19-c-timeline-graph .bb-ygrid-line.-is-severity-extreme text {
  fill: #BF2799;
  font-size: 12px;
}
.bc19-c-timeline-graph .bb-xgrid-line line,
.bc19-c-timeline-graph .bb-ygrid-line line {
  stroke: rgba(0, 0, 0, 0.15);
  stroke-dasharray: 3;
}
.bc19-c-timeline-graph .bb-xgrid-line text,
.bc19-c-timeline-graph .bb-ygrid-line text {
  fill: #AA3333;
  font-size: 11px;
  background: white;
  opacity: 0.8;
  stroke-width: 3;
  stroke: white;
  stroke-opacity: 0.1;
}
.bc19-c-timeline-graph .bb-xgrid-line text:hover,
.bc19-c-timeline-graph .bb-ygrid-line text:hover {
  opacity: 1;
  stroke-opacity: 0;
}
.bc19-c-timeline-graph .bb-graph-svg {
  width: 100%;
}
.bc19-c-timeline-graph__title {
  color: #777;
  font-size: 120%;
  font-weight: normal;
  margin: 0 0 0.5em 0;
  padding: 0;
}
.bc19-c-timeline-graph__subtitle {
  color: #666;
  font-size: 100%;
  font-weight: normal;
  margin: 0 0 0.5em 0;
  padding: 0;
}
/*
 * Main dashboard layout.
 */
.bc19-c-dashboard {
  overflow: hidden;
}
.bc19-c-dashboard.-is-loading {
  display: none;
}
.bc19-c-dashboard__footer {
  background: rgba(0, 0, 0, 0.8);
  color: #666;
  margin-top: 2em;
  padding: 0.5em 0.5em 0.5em;
  text-align: center;
  grid-area: footer;
}
.bc19-c-dashboard__footer nav a {
  display: block;
  padding: 1em 0;
}
.bc19-c-dashboard__intro-info {
  overflow: hidden;
}
.bc19-c-dashboard__header {
  /* background: linear-gradient(#DCF0FF, 80%, white); */
  border-top: 1px rgba(0, 0, 0, 0.7) solid;
  margin: 2em 0 2em 0;
  padding: 2em;
  text-align: center;
}
.bc19-c-dashboard__header:first-child,
.bc19-c-dashboard__header + .bc19-c-dashboard__header {
  border-top: 0;
  margin-top: 0;
}
.bc19-c-dashboard__header.-is-intro {
  /* background: #FFF4DC; */
  margin-top: 0;
  text-align: left;
  padding: 1em;
}
.bc19-c-dashboard__header.-is-intro h1,
.bc19-c-dashboard__header.-is-intro h2 {
  font-size: 170%;
}
.bc19-c-dashboard__header.-is-intro h1 {
  display: inline-block;
}
.bc19-c-dashboard__header.-is-intro h2 {
  display: inline-block;
}
.bc19-c-dashboard__header.-is-intro h2:before {
  content: " — ";
}
.bc19-c-dashboard__header h1 {
  margin: 0.5em 0 0.5em 0;
  padding: 0;
}
.bc19-c-dashboard__header h2 {
  margin: 0 0 0.5em 0;
  padding: 0;
}
.bc19-c-dashboard__header p:last-child {
  margin-bottom: 0;
}
.bc19-c-dashboard__logo {
  float: left;
  margin-right: 1.5em;
}
.bc19-c-dashboard__nav {
  font-size: 90%;
}
.bc19-c-dashboard__nav-section {
  margin: 0.25em 0 0 0;
  padding: 0;
}
.bc19-c-dashboard__nav-section a,
.bc19-c-dashboard__nav-section a:link,
.bc19-c-dashboard__nav-section a:visited {
  display: inline-block;
  font-weight: normal;
  padding: 0.5em;
}
 + .bc19-c-dashboard__nav-section a,
 + .bc19-c-dashboard__nav-section a:link,
 + .bc19-c-dashboard__nav-section a:visited {
  margin-right: 2em;
}
.bc19-c-dashboard__nav-section dd {
  margin: 0;
  padding: 0;
  display: inline;
}
.bc19-c-dashboard__nav-section dt {
  display: inline-block;
  text-align: right;
}
.bc19-c-dashboard__nav-section dt:after {
  content: "▶︎";
  margin-left: 0.5em;
  font-size: 80%;
}
.bc19-c-dashboard__nav-section dt:first-child {
  margin-left: 0;
}
.bc19-c-dashboard__note {
  text-align: left;
  color: #AA3333;
  margin: 1em 4em 3em 2em;
}
.bc19-c-dashboard__notice {
  background: #FFF6B3;
  border-bottom: 1px #664444 solid;
  line-height: 1.2;
  margin: 0;
  padding: 1em;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.bc19-c-dashboard__notice > p {
  margin: 0;
  padding: 0;
}
.bc19-c-dashboard__notice > p + p {
  margin-top: 1em;
}
.bc19-c-dashboard__section {
  margin: 4em 0 0 0;
  padding: 0;
  text-align: center;
}
.bc19-c-dashboard__section:first-child {
  margin-top: 0;
}
.bc19-c-dashboard__section.-has-counters {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.bc19-c-dashboard__section.-has-counters .bc19-c-counter {
  flex: 1 1 0;
}
@media only screen and (min-width: 800px) {
  .bc19-c-dashboard__section.-has-side {
    display: flex;
  }
  .bc19-c-dashboard__section.-has-side .bc19-c-dashboard__section-side {
    padding-right: 1em;
    min-width: 24em;
  }
  .bc19-c-dashboard__section.-has-side .bc19-c-dashboard__section-main {
    width: 100%;
  }
}
.bc19-c-dashboard__section.-is-monitoring-tier {
  padding: 0.5em;
}
.bc19-c-dashboard__section.-is-monitoring-tier.-is-tier-minimal {
  background: #EFCE2F;
  color: black;
}
.bc19-c-dashboard__section.-is-monitoring-tier.-is-tier-moderate {
  background: #CC7E50;
  color: white;
}
.bc19-c-dashboard__section.-is-monitoring-tier.-is-tier-substantial {
  background: #B56969;
  color: white;
}
.bc19-c-dashboard__section.-is-monitoring-tier.-is-tier-widespread {
  background: #97718B;
  color: white;
}
.bc19-c-dashboard__section.-is-report-timestamp {
  background: #e2d09c;
  padding: 0.5em;
}
.bc19-c-dashboard__sources {
  font-size: 90%;
}
.bc19-c-option-pane {
  background: black;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1em;
  text-align: center;
}
.bc19-c-option-pane__date-range {
  display: none;
  margin-top: 1em;
}
.bc19-c-option-pane__date-range.-is-shown {
  display: block;
}
.bc19-c-option-pane__option {
  display: inline-block;
}
.bc19-c-option-pane__option + .bc19-c-option-pane__option {
  margin-left: 1em;
}
.bc19-c-tiles {
  display: grid;
}
.bc19-c-tiles__tile.-is-inactive {
  opacity: 0.7;
}
.bc19-c-tiles__tile.-is-inactive a {
  color: darkgrey;
}
.bc19-c-tiles__tile.-is-uncertain {
  opacity: 0.7;
}
.bc19-c-tiles__tile.-is-uncertain a {
  color: darkgrey;
}
@media only screen and (min-width: 600px) {
  .bc19-c-tiles {
    grid: auto-flow / repeat(2, 50%);
  }
  .bc19-c-tiles__tile {
    margin: 1.5em;
  }
}
@media only screen and (min-width: 1200px) {
  .bc19-c-tiles {
    grid: auto-flow / repeat(3, 33%);
  }
}
.bc19-c-tiles__tile-delta {
  color: red;
  margin-left: 1em;
  font-size: 85%;
}
.bc19-c-tiles__tile-delta::before {
  content: "▲ ";
  font-size: 80%;
}
.bc19-c-tiles__tile-header {
  font-size: 115%;
}
.bc19-c-tiles__tile-header:link {
  color: #2B54F7;
  font-weight: normal;
}
.bc19-c-tiles__tile-subtitle {
  font-size: 90%;
  margin-top: 0.5em;
  color: #444;
}
.bc19-o-discontinued {
  display: none !important;
}
.bc19-o-flex-break {
  display: none;
  border: 0;
  width: 0;
  height: 0;
}
.bc19-o-spinner {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22200%22%20height%3D%22200%22%20viewBox%3D%220%200%20300%20300%22%20stroke-linejoin%3D%22round%22%3E%3Cstyle%3E.a%7Bfill%3A%23d23d39%3B%7D.b%7Bfill%3A%23d23d39%3Bstroke-width%3A2px%3Bstroke%3A%2341100f%3B%7D%3C%2Fstyle%3E%3Crect%20width%3D%22300%22%20height%3D%22300%22%20fill%3D%22none%22%2F%3E%3Cg%3E%3Ccircle%20cx%3D%22149.5%22%20cy%3D%22149.5%22%20r%3D%22110.1%22%2F%3E%3Cpath%20d%3D%22M122%20184.7c0-2.6-2.1-4.7-4.8-4.7l-9.5%200c-2.6%200-4.8%202.1-4.8%204.8l0%2059%2019%200%200-59Z%22%20class%3D%22a%22%2F%3E%3Cpath%20d%3D%22M91.8%20204.6c0-2.6-2.1-4.8-4.8-4.8l-9.5%200c-2.6%200-4.8%202.1-4.8%204.8l0%2039%2019%200%200-39Z%22%20class%3D%22a%22%2F%3E%3Cpath%20d%3D%22M152.2%20184.7c0-2.6-2.1-4.7-4.8-4.7l-9.5%200c-2.6%200-4.8%202.1-4.8%204.8l0%2059%2019%200%200-59Z%22%20class%3D%22a%22%2F%3E%3Cpath%20d%3D%22M182.5%20160.8c0-2.6-2.1-4.8-4.8-4.8l-9.5%200c-2.6%200-4.8%202.1-4.8%204.8l0%2082.8%2019%200%200-82.8Z%22%20class%3D%22a%22%2F%3E%3Cpath%20d%3D%22M212.7%20122.6c0-2.6-2.1-4.8-4.7-4.8l-9.5%200c-2.6%200-4.7%202.1-4.7%204.8l0%20121.1%2019%200%200-121.1Z%22%20class%3D%22a%22%2F%3E%3Cpath%20d%3D%22M242.9%2083.1c0-2.6-2.1-4.8-4.7-4.8l-9.5%200c-2.6%200-4.7%202.1-4.7%204.8l0%20135.6%2019%200%200-135.6Z%22%20class%3D%22a%22%2F%3E%3C%2Fg%3E%3Cpath%20d%3D%22M149.5%2027.4c-67.4%200-122.2%2054.7-122.2%20122.2%200%2067.4%2054.7%20122.2%20122.2%20122.2%2067.4%200%20122.2-54.7%20122.2-122.2%200-67.4-54.7-122.2-122.2-122.2Zm0%2027.6c52.2%200%2094.6%2042.4%2094.6%2094.6%200%2052.2-42.4%2094.6-94.6%2094.6%20-52.2%200-94.6-42.4-94.6-94.6%200-52.2%2042.4-94.6%2094.6-94.6Z%22%20style%3D%22fill%3A%23ffdc5c%3Bstroke-width%3A2px%3Bstroke%3A%23000%22%2F%3E%3Cg%3E%3Cpath%20d%3D%22M149.5%20257.9c2.2%200%2019.4%2029.7%2018.2%2031.6%20-1.1%201.9-35.4%201.9-36.5%200%20-1.1-1.9%2016-31.6%2018.2-31.6Z%22%20class%3D%22b%22%2F%3E%3Cpath%20d%3D%22M41.1%20149.5c0%202.2-29.7%2019.4-31.6%2018.2%20-1.9-1.1-1.9-35.4%200-36.5%201.9-1.1%2031.6%2016%2031.6%2018.2Z%22%20class%3D%22b%22%2F%3E%3Cpath%20d%3D%22M226.1%2072.9c-1.6-1.6%207.3-34.7%209.4-35.2%202.1-0.6%2026.4%2023.7%2025.8%2025.8%20-0.6%202.1-33.7%2011-35.2%209.4Z%22%20class%3D%22b%22%2F%3E%3Cpath%20d%3D%22M72.9%2072.9c-1.6%201.6-34.7-7.3-35.2-9.4%20-0.6-2.1%2023.7-26.4%2025.8-25.8%202.1%200.6%2011%2033.7%209.4%2035.2Z%22%20class%3D%22b%22%2F%3E%3Cpath%20d%3D%22M149.5%2041.1c2.2%200%2019.4-29.7%2018.2-31.6%20-1.1-1.9-35.4-1.9-36.5%200%20-1.1%201.9%2016%2031.6%2018.2%2031.6Z%22%20class%3D%22b%22%2F%3E%3Cpath%20d%3D%22M257.9%20149.5c0%202.2%2029.7%2019.4%2031.6%2018.2%201.9-1.1%201.9-35.4%200-36.5%20-1.9-1.1-31.6%2016-31.6%2018.2Z%22%20class%3D%22b%22%2F%3E%3Cpath%20d%3D%22M72.9%20226.2c-1.6-1.6-34.7%207.3-35.2%209.4%20-0.6%202.1%2023.7%2026.4%2025.8%2025.8%202.1-0.6%2011-33.7%209.4-35.2Z%22%20class%3D%22b%22%2F%3E%3Cpath%20d%3D%22M226.2%20226.1c-1.6%201.6%207.3%2034.7%209.4%2035.2%202.1%200.6%2026.4-23.7%2025.8-25.8%20-0.6-2.1-33.7-11-35.2-9.4Z%22%20class%3D%22b%22%2F%3E%3CanimateTransform%20attributeName%3D%22transform%22%20type%3D%22rotate%22%20from%3D%220%20150%20150%22%20to%3D%22360%20150%20150%22%20dur%3D%225.0s%22%20repeatCount%3D%22indefinite%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A");
  width: 200px;
  height: 200px;
  background-repeat: no-repeat;
  margin: auto;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#twitter-widget-0,
.twitter-follow-button {
  color: blue;
  text-decoration: none;
}
/*
 * Embed mode rules.
 */
body.-is-embedded #overview-title {
  display: none;
}
body.-is-embedded .bc19-c-dashboard__nav,
body.-is-embedded .bc19-c-dashboard__notice,
body.-is-embedded .bc19-c-dashboard__section.-is-monitoring-tier {
  display: none;
}
body.-is-embedded .bc19-c-dashboard__header.-is-intro h1,
body.-is-embedded .bc19-c-dashboard__header.-is-intro h2 {
  font-size: 110%;
}
body.-is-embedded .bc19-c-dashboard__logo {
  width: 80px;
  height: auto;
}
/*
 * Tablet rules.
 */
@media only screen and (max-width: 1100px) {
  .bc19-o-flex-break {
    display: block;
    width: 100%;
  }
}
/*
 * Mobile rules.
 */
@media only screen and (max-width: 800px) {
  body {
    padding: 0;
  }
  .bc19-c-dashboard {
    box-shadow: none;
    margin: 0;
    padding-bottom: 2em;
  }
  .bc19-c-dashboard #report-timestamp-container {
    text-align: left;
    overflow: hidden;
    padding: 0;
  }
  .bc19-c-dashboard__footer {
    padding-bottom: 2em;
  }
  .bc19-c-dashboard__header.-is-intro {
    font-size: 90%;
    padding: 1em;
  }
  .bc19-c-dashboard__header.-is-intro h1 {
    display: block;
    font-size: 140%;
    margin: 0;
    padding: 0;
  }
  .bc19-c-dashboard__header.-is-intro h2 {
    display: block;
    font-size: 120%;
    margin-top: 1em;
    overflow: hidden;
  }
  .bc19-c-dashboard__header.-is-intro h2:before {
    content: "";
  }
  .bc19-c-dashboard__header p {
    line-height: 1.5;
    text-align: justify;
  }
  .bc19-c-dashboard__header p:first-of-type {
    margin-top: 2em;
  }
  .bc19-c-dashboard__intro-info {
    overflow: visible;
  }
  .bc19-c-dashboard__logo {
    width: 80px;
    height: 80px;
    margin-right: 1em;
  }
  .bc19-c-dashboard__nav dt {
    display: block;
    font-weight: bold;
    margin-top: 1em;
    padding-left: 0.5em;
    text-align: left;
    width: auto;
  }
  .bc19-c-dashboard__nav dt:after {
    content: "";
  }
  .bc19-c-dashboard__note {
    margin-left: 1em;
    margin-right: 1em;
    text-align: justify;
  }
  .bc19-c-timeline-graph {
    padding-left: 2em;
    padding-right: 3em;
    width: 100%;
  }
  .bc19-c-timeline-graph__subtitle {
    padding-left: 1em;
    padding-right: 1em;
  }
  .bc19-o-flex-break {
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  .bc19-c-timeline-graph {
    padding-left: 0;
    padding-right: 0;
  }
  .bc19-c-timeline-graph .bb {
    padding-left: 0;
    padding-right: 0;
  }
  .bc19-c-timeline-graph .bb-axis-x .tick tspan {
    font-size: 90%;
  }
}
@media only screen and (max-width: 350px) {
  .bc19-c-counter {
    margin: 1em;
  }
  .bc19-c-counter__value {
    font-size: 450%;
  }
  .bc19-c-counter__relative {
    font-size: 90%;
  }
}
