body {
  background: #253b4c;
  font-family: 'Blinker', sans-serif;
  overflow: hidden;

  -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

iframe {
  border: none;
}

.desk-icon {
  border-radius: 50%;
  padding: 10px;
  text-align: center;
  vertical-align: middle;
  border: none;
  background-color: #7b90c4;
  color: white;
  transition-duration: 0.3s;
  outline: none;
}

.desk-icon:hover {
  background-color: #7790ce;
}

.desk-icon:active {
  border: none;
  background-color: #9eb5ef;
}

.desk-icon-wrapper {
  width: 100%;
  height: 100%;
  text-align: right;
  vertical-align: bottom;
}

.desk-clock {
  color: white;
  font-size: 25pt;
  z-index: 9;
  top: 10px;
  left: 25px;
  position: absolute;
  z-index: 1;
}

.master-button {
  border-radius: 50%;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 19px;
  padding-right: 19px;
  text-align: center;
  vertical-align: middle;
  border: 3px solid #2e495e;
  background-color: #253b4c;
  color: white;
  transition-duration: 0.3s;
  font-size: 74pt;
  top: 45%;
  left: 46%;
  position: absolute;
  z-index: 2;
  outline: none;
}

.master-button-small {
  border-radius: 50%;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 12px;
  padding-right: 12px;
  text-align: center;
  vertical-align: middle;
  border: 3px solid #2e495e;
  background-color: #253b4c;
  color: white;
  transition-duration: 0.3s;
  font-size: 40pt;
  left: 47.5%;
  position: absolute;
  z-index: 29;
  outline: none;
  bottom: 10px;
  height: 70px;
}

.control-center-sub-head {
  background-color: lightgray;
  padding: 3px;
  min-width: 100%;
}

.control-center {
  min-width: 100%;
}

.apps-menu {
  opacity: 0.8;
  background-color: white;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 30;
  position:fixed;
  padding:0;
  margin:0;

  top:0;
  left:0;

  width: 100%;
  height: 100%;

  text-align: center;
  display: none;
}

.apps {
  position: fixed;
  bottom: 50%;
  left: 43.4%;
  opacity: 1;
  z-index: 40;
}

.desk-describer {
  transform: rotate(-45deg);
}

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.loader {
  border: 3px solid #f3f3f3; /* Light grey */
  border-top: 3px solid #3498db; /* Blue */
  border-bottom: 3px solid #3498db;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  animation: spin 0.9s linear infinite;
  position: absolute;
  z-index: 25;
  left: 98%;
  bottom: 5px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
