html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

html {
  -webkit-text-size-adjust: none;
  /* prevent font scaling in landscape */
}

body
/* required */
  {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  max-width: 700px;
  margin: 0px auto;
}

/* chart */
#graphic
/* required */
  {
  width: 100%;
}

/* axis tick labels */
#graphic g.axis text
/* required */
  {
  font-size: 14px;
  fill: #707071;
  font-family: 'Open Sans', sans-serif;
}

#graphic g.y.axis text 
{
  fill:#414042;
}

/* do not show the line that runs the domain of the axis */
#graphic g.axis path.domain
/* required */
{
  display:none;
}

#graphic .zero-line{
  stroke-width: 1.5px;
  stroke: #b3b3b3 !important;
  }

/* this sets the ticks */
#graphic .axis line
{
  stroke: #d9d9d9;
  shape-rendering: crispEdges;
}

/* source */
h5#source {
  font-size: 16px;
  margin: 16px 0 8px 0;
  font-weight: 400;
  color: #707071;
}

/* h5#xaxisLabel {
  font-size: 16px;
  margin: 16px 0 8px 0;
  font-weight: 400;
  color: #707071;
} */

/* this sets the labels for the axis */
.axis--label{
  font-size: 14px;
  fill: #707071;
}

/* annot */
h5#annot {
  font-size: 14px;
  margin: 16px 0 0 0;
  font-weight: 400;
  color: #414042;
}

/* annot1 */
h5#annot1 {
  font-size: 14px;
  margin: 16px 0 0 16px;
  font-weight: 400;
  color: #414042;
}

/* legend div */
#legend{
  display:flex;
  padding-bottom: 5px;
}

.legend--item {
  display:flex;
  padding-right:40px;
}

.legend--icon {
  height: 12px;
  width: 12px;
  border-radius: 50%;
  align-self: center;

}

.legend--text{
  color:#707070;
  line-height: 14px;
  font-size: 14px;
  padding-left: 12px
}

@media (max-width: 400px) {
  #legend{
    flex-flow:column;
  }

  .legend--item{
    padding-bottom: 8px;
  }
}




/* for content that needs to be visible to a screenreader but invisible and take no space for users viewing the chart */
.visuallyhidden{
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
 	clip: rect(0,0,0,0);
	border: 0;
}
