html {

}

body {
  margin: 0;
  padding: 0;
  font-family: 'Haffer', sans-serif;
  background: white;
}

.container {
}

h1 {
  margin: 0;
  padding: 0;
  font-family: 'Haffer', sans-serif;
  font-size: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #1D2123;
}

.top-chart-labels {
  margin: 15px 0 0 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-family: 'Haffer', sans-serif;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
  color: #1D2123;
}

.top-right-chart-label {
  margin-left: 10px;
  text-align: right;
}

svg .nodes rect {
  opacity: 0.9;
  stroke: transparent;
}

svg .node-labels {
  pointer-events: none;
}

svg .node-label-right-from-node,
svg .node-label-left-from-node {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  font-family: 'Haffer', sans-serif;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  color: #1D2123;
}

svg .node-label-right-from-node {
  text-align: left;
  justify-content: flex-start;
}

svg .node-label-left-from-node {
  text-align: right;
  justify-content: flex-end;
}

svg .node-value-label  {
  display: inline-block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 400;
}

.footer {
  margin: 10px 0 10px 0;
  font-size: 12px;
  line-height: 1.2;
  color: #171C26;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.footer p {
  margin: 0;
}

.footer-logo {
  align-self: flex-start;
  margin: 0 0 0 20px;
}

.footer-logo svg {
  width: 80px;
}

@media (max-width: 425px) {
  svg .node-label-right-from-node,
  svg .node-label-left-from-node { 
    font-size: 10px;
  }

  svg .node-value-label  {
    font-size: 10px;
  }
}
