body, html { margin:0; padding:0; height:100%;}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}
.sp-none {
  display: none;
}
#heatmapControllerWrapper {
  position: fixed;
  top: 0;
  width: 100%;
  text-align: center;
  padding: 1px 0;
  line-height:30px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2147483647;
}
#heatmapController {
  display: inline-block;
  width: 100%;
}
#heatmapContainerWrapper {
  position: absolute;
  top: 0px;
  width:100%;
  height:100%;
  z-index: 10000;
}
#heatmapContainer {
  width:100%;
  height:100%;
  z-index:9000;
}
#heatmapController .heatmap_toggle_button:focus:hover {
  outline: none;
}
#heatmapController .heatmap_toggle_button {
  appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  vertical-align: top;
  padding: 3px 10px;
  border-radius: 4px;
  border: 1px solid #aaa;
  background-color: #333;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: 200ms;
}
#heatmapController .heatmap_toggle_button:active {
  margin-top: 1px;
  transition: none;
}
#heatmapController .heatmap_toggle_button::after {
  display: inline;
  transition: 400ms;
}
#heatmapController .heatmap_toggle_button:not(:checked)::after {
  content: attr(data-label);
  color: #888;
  transition: none
}
#heatmapController .heatmap_toggle_button:checked::after {
  content: attr(data-label);
  color: #6ff;
  text-shadow:
    0px 0px 10px #6ff,
    0px 0px 20px #6ff,
    0px 0px 30px #6ff;
}
#heatmapController .heatmap_toggle_button:active::after {
  transition: none;
}
#heatmapController #before,
#heatmapController #after {
  width: 70px;
}
#heatmapController input {
  display: inline-block;
  margin: 0 5px;
  padding: 5px 10px;
  height: 34px;
  color: #333;
}
#heatmapController #deviceDisp {
  float: right;
  font-size: 16px;
  font-weight: bold;
}
#heatmapContainerWrapper #height-line {
  position:absolute;
  width:100%;
  color:#fff;
  border-bottom:2px solid #fff
}
#heatmapContainerWrapper #exit-percent {
  position:absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  color: rgba(255,255,255,0.8);
  text-align: center;
  font-size: 100px;
}
@media screen and (min-width: 0px) and (max-width: 768px) {
	.sp-none {
		display: block;
	}
}