.graphs canvas {
  width: 100%;
}

[class*='col'] {
  padding: 1.5rem;
}

.graphs h1 {
  font-size: 2rem;
  font-family: "Roboto Slab", serif;
}

.graphs p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.125rem;
}

.graphs p,.graphs h1 {
  text-align: center;
}

.graphs .credit {
  position: fixed;
  bottom: 2%;
  right: 2%;
  /* font-family: 'Roboto', sans-serif; */
  text-transform: uppercase;
  font-size: 1.125em;
  color: black;
}
.graphs .credit .credit--link {
  color: #1565C0;
  text-decoration: none;
  cursor: pointer;
}
.graphs .credit .credit--link:hover {
  text-decoration: underline;
}

* {
  margin: 0;
  padding: 0;
}

.tables .flexi-table {
  border-collapse: collapse;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  background-color: #efe;
  padding: 20px;
}
.tables .flexi-table tbody,
.tables .flexi-table thead,
.tables .flexi-table tr {
  display: inherit;
  width: 100%;
}
.tables .flexi-table tbody {
  flex-direction: inherit;
  /* max-height: 150px; */
  overflow: auto;
}
.tables .flexi-table tr {
  flex: 1 0 30px;
}
.tables .flexi-table tr th {
  text-align: left;
  border-bottom: 2px solid #999;
}
.tables .flexi-table tr td {
  padding: 10px 0;
}
.tables .flexi-table tr th:first-child,
.tables .flexi-table tr td:first-child {
  flex: 0 0 30%;
}
.tables .flexi-table tr th:nth-child(2),
.tables .flexi-table tr td:nth-child(2) {
  flex: 0 0 50%;
}
.tables .flexi-table tr th:last-child,
.tables .flexi-table tr td:last-child {
  flex: 0 0 20%;
}
.tables ::-webkit-scrollbar {

  display:none;
  
}