/* div.radio-outer {
  width: 760px;
  height: 20px;
}

div.radio {
  width: 250px;
  height: 20px;
  float: left;
}

div.svg-holder {
  float: left;
  height: 20px;
  margin-left: 10px;
} */

div.radio-outer {
  display: flex;
  height: 25px;
}
div.radio {
  width: 250px;
  height: 25px;
  margin-top: 10px;
  margin-bottom: 10px;
  /* Just so it's visible */
}

div.svg-holder {
  flex: 1;
  height: 25px;
  margin-top: 10px;
  margin-bottom: 10px;
}

g.axis path,
g.axis line {
    stroke: teal;
    shape-rendering: crispEdges;
}

g.axis text {
    font-family: Optima, Futura, sans-serif;
    font-weight: bold;
    font-size: 14px;
    fill: teal;
}

div.bar {
    display: inline-block;
    width: 20px;
    height: 75px;   /* We'll override height later */
    background-color: teal;
    margin-right: 2px;
}

.even {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
}
.even > div {
    margin-top: 0px;
    padding: 5px;
}

table, th, td {
  border: 1px solid black;
  border-collapse: collapse;
}
th, td {
  padding: 5px;
}
th {
  text-align: left;
}

#tooltip {
    position: absolute;
    width: 200px;
    height: auto;
    padding: 10px;
    background-color: white;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

#tooltip.hidden {
    display: none;
}

#tooltip p {
    margin: 0;
    font-family: sans-serif;
    font-size: 16px;
    line-height: 20px;
}

.line {
    fill: none;
    stroke: #ffab00;
    stroke-width: 3;
}
  
.overlay {
  fill: none;
  pointer-events: all;
}

/* Style the dots by assigning a fill and stroke */
.dot {
    fill: #ffab00;
    stroke: #fff;
}
  
  .focus circle {
  fill: none;
  stroke: steelblue;
}

