@import 'https://fonts.googleapis.com/css?family=Raleway:400,700';

body {
  font-family: 'Raleway', sans-serif;
  box-sizing: border-box;
  /*background-color: #6db459;*/
  font-size: 150%;
}

.container {
  background-color: #69ddf6;
}

#header {
  background-color: white;
  border-radius: 5px;
  box-shadow: 5px 5px 8px gray;
  padding: 8px;
}

#logo {
  text-shadow: 5px 5px 8px gray;
  text-align: center;
  color: white;
  font-size: 55px;
}

.picture {
  height: auto;
  width: 100%;
  position: relative;
  margin-bottom: 950px;
}

.user {
  z-index: 1;
  margin: 5px;
}

.user:hover {
  cursor: pointer;
}

.user-div {
  height: 90px;
  width: 40px;
  display: inline-block;
  margin-bottom: 15px;
  text-align: center;
  font-size: 70%;
}

.user-name {
  position: absolute;
  width: 40px;
}

.users {
  margin-left: 100px;
}

.indent {
  text-indent: 25px;
}

#fridge {
  position: absolute;
  top: 300px;
  left: 950px;
  height: 300px;
  width: 200px;
  background-color: #ffebe0;
  border: 1px solid #4f4f4e;
  overflow: hidden;
  padding: 10px;
}

.room {
  position: absolute;
  padding: 10px;
  border: 2px solid #acacac; /* 7d400e */
  border-radius: 1px;
  transition: border 0.5s;
}

.room:hover {
  border: 2px solid yellow;
  cursor: pointer;
}

#bedroom1 {
  top: 0;
  left: 0;
  width: 350px;
  height: 300px;
}

#hallway {
  top: 0;
  left: 350px;
  width: 250px;
  height: 300px;
}

#bedroom2 {
  top: 0;
  left: 600px;
  width:350px;
  height: 300px;
}

#livingroom {
  top: 300px;
  left: 0;
  width: 500px;
  height: 300px;
}

#kitchen {
  top: 300px;
  left: 500px;
  width: 450px;
  height: 300px;
}

#bathroom1 {
  top: 600px;
  width: 200px;
  height: 250px;
  left: 0;
}

#theater {
  top: 600px;
  width: 400px;
  height: 250px;
  left: 200px;
}

#bathroom2 {
  top: 600px;
  width: 350px;
  height: 250px;
  left: 600px;
}

.temp-display {
  position: absolute;
  bottom: -5px;
  right: 5px;
}

.music-display {
  position: absolute;
  right: 5px;
  top: 5px;
}

.mode-display {
  position: absolute;
  left: 5px;
  bottom: -5px;
}

#tempSlider {
  width: 250px;
}

#light-color {
  margin-left: 12px;
  height: 30px;
  width: 55px;  
}

.lightson {
  -moz-box-shadow:    inset 0 0 80px #aeb521;
  -webkit-box-shadow: inset 0 0 80px #aeb521;
  box-shadow:         inset 0 0 80px #aeb521;
}

.lightsoff {
  -moz-box-shadow:    inset 0 0 80px #545454;
  -webkit-box-shadow: inset 0 0 80px #545454;
  box-shadow:         inset 0 0 80px #545454;
}

.margin-right-5 {
  margin-right: 5px;
}

/* for pop-up */

#dialogoverlay{
  display: none;
  opacity: .3;
  position: fixed;
  top: 0px;
  left: 0px;
  background: #FFF;
  width: 100%;
  z-index: 10;
}
#dialogbox{
  display: none;
  position: fixed;
  background: #000;
  border-radius:7px;
  width:550px;
  z-index: 10;
}
#dialogbox > div{ background:#FFF; margin:8px; }
#dialogbox > div > #dialogboxhead{ background: #666; font-size:19px; padding:10px; color:#CCC; }
#dialogbox > div > #dialogboxbody{ background:#333; padding:20px; }
#dialogbox > div > #dialogboxfoot{ background: #666; padding:10px; text-align:right; }

/* end pop-up */

/* for coastclear button */
.coastclear {
  position: fixed;
  top: 45vh;
  left: 0;
  height: 50px;
  width: 100px;
}