@import url(http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600,900);
body {
  text-align: center;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  color: #DDD;
  background: #333;
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 1.2rem;
  display: inline-block;
  font-color: black;
  margin: 0;
}

h3 {
  font-size: 0.9rem;
  display: inline-block;
  margin: 0;
}

#alert {
  left: 0;
  right: 0;
  height: calc(20% - 6px);
  top: 0;
  background: rgba(153, 0, 0, 0.8);
  position: fixed;
  display: none;
}
#alert p {
  font-size: 2vh;
}
#alert h1 {
  color: white;
  font-size: 10vh;
  top: 3vh;
  font-weight: 600;
  position: relative;
  margin: 0;
}
#alert #silence-icon {
  height: 100%;
  width: inherit;
  position: relative;
  top: 5%;
}

#upper-right-container {
  position: fixed;
  top: 0;
  right: 0;
}

#upper-left-container {
  position: fixed;
  top: 0;
  left: 0;
}

#settings-button {
  cursor: pointer;
  cursor: hand;
  display: inline-block;
  fill: rgba(255, 255, 255, 0.5);
  transition-property: fill;
  transition-duration: 0.3s;
}
#settings-button:hover {
  fill: white;
}
#settings-button #settings-icon {
  width: 50px;
  height: auto;
  margin: 10px;
}

#settings-button.active {
  fill: rgba(0, 0, 0, 0.5);
}
#settings-button.active:hover {
  fill: black;
}

#refresh-button {
  display: inline-block;
  position: relative;
  cursor: pointer;
  cursor: hand;
  transition-property: fill;
  transition-duration: 0.3s;
  fill: rgba(255, 255, 255, 0.5);
  float: left;
}
#refresh-button #refresh-icon {
  width: 50px;
  height: auto;
  margin: 12px 5px;
}
#refresh-button:hover {
  fill: white;
}

#refresh-button.active {
  fill: rgba(0, 0, 0, 0.5);
}
#refresh-button.active:hover {
  fill: black;
}

#info-button {
  display: inline-block;
  position: relative;
  cursor: pointer;
  cursor: hand;
  transition-property: fill;
  transition-duration: 0.3s;
  fill: rgba(255, 255, 255, 0.5);
  float: left;
}
#info-button #info-icon {
  width: 50px;
  height: auto;
  margin: 10px 10px;
}
#info-button:hover {
  fill: white;
}

#info-button.active {
  fill: rgba(0, 0, 0, 0.5);
}
#info-button.active:hover {
  fill: black;
}

#header, #info-panel, #info-panel-bottom {
  position: fixed;
  width: 100%;
  height: 4.5em;
  transition-property: top;
  transition-duration: 0.5s;
  top: -4.5em;
}

#header {
  text-align: center;
  color: #999;
  background-color: white;
}
#header #controls {
  padding: 20px;
}

#header.active, #info-panel.active {
  top: 0;
}

#info-panel {
  background-color: #222;
}
#info-panel p {
  margin: 0;
  text-align: left;
  margin-left: 70px;
}
#info-panel p:first-child {
  margin-top: 12px;
}

#info-panel-bottom {
  height: 3em;
  bottom: -3em;
  top: inherit;
  background-color: #222;
  transition-property: bottom;
  transition-duration: 0.5s;
}
#info-panel-bottom p {
  margin: 0.8em 0 0 70px;
  text-align: left;
}

#info-panel-bottom.active {
  bottom: 0;
}

#analytics {
  background: #666;
  width: 90%;
  height: 100%;
  width: 100%;
  display: inline-block;
  position: fixed;
  left: 0;
  transition: ease-out all 0.5s;
}

#analytics hr {
  margin: 0;
}

#currentValue {
  border-color: red;
  position: fixed;
  left: 0;
  right: 0;
  border-width: 8px 0 0 0;
  transition-property: top;
  transition-duration: 0.2s;
  top: -10px;
}

#pressureGuage {
  border-color: black;
  position: fixed;
  left: 0;
  right: 0;
  border-width: 8px 0 0 0;
}

#pressureGuageMax {
  border-color: rgba(153, 0, 0, 0.8);
  position: fixed;
  border-style: dashed;
  left: 0;
  right: 0;
  top: 0;
  height: 20%;
  background-color: transparent;
  border-width: 0 0 10px 0;
}

#ambientNoise {
  position: fixed;
  border-color: rgba(255, 255, 255, 0.3);
  border-style: dashed;
  left: 0;
  right: 0;
  border-width: 6px 0 0 0;
}

#start-button-holder {
  position: fixed;
  left: 50%;
  text-align: center;
  right: 50%;
  top: 40%;
}

#start-button {
  font-size: 3em;
  padding: 0.5em 0;
  background-color: transparent;
  border-radius: 8px;
  width: 300px;
  margin-left: -150px;
  cursor: pointer;
  cursor: hand;
  border: none;
  color: white;
  border: 3px solid white;
  transform: scale(1);
  transition: ease-out all 0.2s;
}
#start-button::before {
  content: "";
  background-color: white;
  width: 100%;
  height: 0%;
  display: block;
  position: absolute;
  bottom: 0;
  transition: ease-out all 0.2s;
  z-index: -1;
}
#start-button:hover {
  transform: scale(1.05);
  background-color: white;
  color: #666;
  border-color: transparent;
}
#start-button:hover::before {
  height: 100%;
}

.button {
  font-size: 16pt;
  padding: 0.5em 3em;
  background-color: #BBB;
  border-radius: 6px;
  border: none;
}

input[type=number] {
  padding: 0.3rem 0.5rem;
  border-radius: 10px;
  border: 0;
  font-size: 1.2em;
  color: #666;
  background-color: #DDD;
  margin-right: 1em;
  width: 50px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 200;
  text-align: center;
}
input[type=number]:focus {
  outline: 0;
  background-color: #b8dae0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  display: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

/*# sourceMappingURL=noise-analyzer.css.map */
