/* colours
blue: #009CBF
orange: #F75F00
green: #00A388
--tint-1: #333;
--tint-2: #666;
--tint-3: #999;
--tint-4: #ccc;
--tint-5: #e6e6e6;
--tint-6: #f2f2f2;
 */
@font-face {
  font-family: "ABCSans Regular";
  font-style: normal;
  font-weight: normal;
  src: local("ABCSans Regular"), url("../fonts/abcsans-regular.woff") format("woff");
}
@font-face {
  font-family: "ABCSans Light";
  font-style: normal;
  font-weight: normal;
  src: local("ABCSans Light"), url("../fonts/abcsans-light.woff") format("woff");
}
@font-face {
  font-family: "ABCSans Black";
  font-style: normal;
  font-weight: normal;
  src: local("ABCSans Black"), url("../fonts/abcsans-black.woff") format("woff");
}
:root {
  font-size: 1em;
  font-family: "ABCSans Regular", "Arial", sans-serif;
  color: #333;
}
body {
  overflow: hidden;
}
h1, p {
  margin: 0;
}
#container {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-flow: column;
}
#chart {
  height: 100%;
  opacity: 0;
}
.mobile {
  display: inline;
}
.desktop {
  display: none;
}
#header {
  margin-bottom: .75rem;
}
#header h1 {
  font-size: 1.1rem;
  font-family: "ABCSans Black", "Arial Black", sans-serif;
}
#header p {
  color: #999;
  font-size: .85rem;
}
#footer {
  color: #666;
  font-size: .75rem;
  margin-top: .75rem;
}
.bar rect {
  fill: #009CBF
}
.bar#Tuggeranong rect {
  fill: #F75F00;
}
#axisGroup .domain {
  display: none;
}
#xAxisGroup .tick line {
  stroke-dasharray: 2 3;
  stroke: #666;
}
#xAxisGroup .tick text {
  fill: #666;
  font-size: .7rem;
}
#yAxisGroup .tick text {
  text-anchor: start;
  font-weight: bold;
  font-size: .9rem;
  fill: white;
  text-shadow: 2px 2px 5px #333;
}
#ticker {
  text-anchor: end;
  font-family: "ABCSans Black", "Arial Black", sans-serif;
  font-size: 2.5rem;
  fill: #f2f2f2;
  text-shadow: 3px 3px 6px #333;
}
@media only screen and (min-width: 500px) {
  .mobile {
    display: none;
  }
  .desktop {
    display: inline;
  }
  #header h1 {
    font-size: 1.2rem;
  }
  #header p {
    font-size: .95rem;
  }
  #footer {
    font-size: .8rem;
  }
  #ticker {
    font-size: 3rem;
  }
}
