.clearfix {
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: '';
  display: table;
}
.clearfix:after {
  clear: both;
}
/* apply a natural box layout model to all elements */
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  height: 100%;
}
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  font: 13px/35px Arial, sans;
}
h2 {
  text-align: center;
}
.pano-wrap {
  width: 100%;
  height: 100%;
}
.pano-wrap:after {
  content: '';
  position: absolute;
  left: 0rem;
  top: 0rem;
  z-index: 1;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 512px rgba(26, 185, 149, 0.75) inset;
  -moz-box-shadow: 0 0 512px rgba(26, 185, 149, 0.75) inset;
  box-shadow: 0 0 512px rgba(26, 185, 149, 0.75) inset;
  opacity: 0;
  -webkit-transition: opacity 400ms linear;
  -moz-transition: opacity 400ms linear;
  -ms-transition: opacity 400ms linear;
  -o-transition: opacity 400ms linear;
  transition: all opacity 400ms linear;
  pointer-events: none;
}
.pano-wrap.idling:after {
  opacity: 1;
}
#interface {
  position: absolute;
  left: 0rem;
  top: 0rem;
  z-index: 2;
  margin: 10px;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.7);
  color: black;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
}
#interface div {
  position: relative;
  height: 35px;
  padding-right: 30px;
}
#interface div > * {
  vertical-align: top;
}
label {
  display: inline-block;
  width: 6rem;
  font-weight: bold;
}
label:after {
  content: 'i';
  position: absolute;
  left: 5rem;
  top: 0.7rem;
  display: inline-block;
  min-width: 12px;
  min-height: 12px;
  max-width: 12px;
  max-height: 12px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #cccccc;
  font: bold 9px/9px Arial, sans;
  text-align: center;
  color: #cccccc;
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -ms-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all all 100ms linear;
  overflow: hidden;
}
label:hover:after {
  max-width: 100px;
  max-height: 100px;
  top: 0;
  padding: .3rem;
  content: attr(data-info);
  background-color: white;
  color: #333;
  z-index: 3;
  text-align: left;
  font: bold 9px/14px Arial, sans;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}
input[type=range] {
  margin-top: 5px;
  padding-top: 5px;
}
input[type=range]:after {
  content: attr(data-value);
  display: inline-block;
  width: 30px;
  position: absolute;
  top: 10px;
  right: 0;
  color: black;
}
