html,body{
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: 'Open Sans';
}

#autoconfig{
  visibility: hidden;
  position: absolute;
  z-index: 0;
}

#controls{
  position: absolute;
  left: 0;
  bottom: 0;
  padding-bottom: 20px;
  width: 100%;
  line-height: 70px;
  vertical-align: middle;
  z-index: 3;
  text-align: center;
}

.control-circle{
  display: inline-block;
  text-align: center;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background-color: #00b4ff;
  border: 1px solid #00b4ff;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  overflow: hidden;
  line-height: 48px;
  vertical-align: middle;
  margin: 5px;
}

.menu-item{
  display: inline-block;
  text-align: center;
  height: 50px;
  padding: 0 25px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  background-color: #00b4ff;
  border: 1px solid #00b4ff;
  color: #ffffff;
  border-radius: 25px;
  white-space: nowrap;
  cursor: pointer;
  overflow-y: hidden;
  line-height: 48px;
  vertical-align: middle;
  margin: 5px;
}

.submenu-item{
  background-color: #ffcb00 !important;
  border: 1px solid #ffcb00 !important;  
}

.submenu-item:hover{
  background-color: #ffad07 !important;
  border: 1px solid #ffad07 !important;
  color: #fff;
}

.control-circle:hover{
    background-color: #228fc4;
    border: 1px solid #228fc4;
}


.menu-item:hover{
  background-color: #228fc4;
  border: 1px solid #228fc4;
  color: #fff;
}
.menu-item.active{
  background-color: white;
  color: #000;
}

.btn{
  cursor: pointer;
}

div.btn-clear:before{
  font-family: 'iRokusPlusIcons';
  font-weight: normal;
  content:'\E00A';
}

div.btn-save:before{
  font-family: 'iRokusPlusIcons';
  font-weight: normal;
  content:'\E00F';
}

#materialmap{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

#canvas, #background{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hidden{
  display: none;
}

@media screen and (max-width: 768px){
  .hidden-sm-down{
    display: none !important;
  }
}