bodyX {
  font-family: Helvetica;
  font-size: 13px;
}

.bubble-graph {
  max-widthX:1000px;
  /* position: relative; */ /* Bug: Popup misalign */
}
.bubble-graph select {
  max-width:250px;
}
.bubble-graph svg {
    pointer-events: none;
}
#imp {
  background-color: #888;
  padding-right: 40px;
}
#imp div {
  margin: auto;
  padding: 30px;
  margin-right: -100px;
}
#bubble-graph-title {
  font-size: 16px;
  text-align: left;
  border-bottomX: 2px solid black;
  margin-bottom: 25px;
}

.graph-picklist{
  margin-left: 5px;
  font-size: 18px;
  padding: 4px;
  border-radius: 8px;
}

h4{
  /* text-align: center; */ /* avoid - effect info page */
  font-weight: normal;
}

.axis text {
  font-size: 14px;
  fill: #777;
}

.axis path {
  display: none;
}

.axis line {
  stroke-width:.3px;
  stroke: #dedede;
}

#graph-wrapper-x {
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
  floatX:left;
}
#graph-wrapper-y {
  text-align: center;
  transform:rotate(-90deg) translateX(-374px) translateY(35px);
  transform-origin: bottom left;
  position: absolute;
}
#graph-wrapper-z {
  margin-top: 10px;
  text-align: center;
  z-index: 2;

  /* would be better to have click pass through chart */
  /*
  position: absolute; 
  top:0px;
  */
  left: 30%;
}

#bubble-graph-equation{
  position: absolute;
  top:20px;
  left:60%;
  text-align: center;
}

div.tooltip {
  position: absolute;
  text-align: center;
  width: 170px;
  height: 106px;
  overflow: auto;
  padding: 2px;
  padding-top: 8px;
  padding-bottom: 8px;
  font: 10px sans-serif;
  background: lightsteelblue;
  border: 0px;
  border-radius: 8px;
  pointer-events: none;
}
text {
  font-size:18px;
}
.text-space-vert {
  width:80px;
  display: inline-block;
}
.text-space-horz {
  margin-left: 30px;
  display: inline-block;
  width:120px;
}
.right-then-left {
  clear:both;
  float:right;
}
.switch-text {
  font-size:14px;
  float:left;
  padding:6px 8px 0 0;
  color: #aaa;
}
.chart-right {
  float:right;
}
@media (max-width: 800px) {

}



/* bubble chart toggle */
/* source: https://www.w3schools.com/howto/howto_css_switch.asp */

.selected {
  stroke-width:100px
  fill: "yellow"
}
.switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 28px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #862b23;
}

input:focus + .slider {
  box-shadow: 0 0 1px #862b23;
  /* #2196F3 */
}

input:checked + .slider:before {
  -webkit-transform: translateX(18px);
  -ms-transform: translateX(18px);
  transform: translateX(18px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
/* bubble chart toggle */

