html, body {
    height: 100%;
}

.dot {
  height: 1vw;
  width: 1vw;
  background-color: #bbb;
  border-radius: 50%;
  display: block;
}

#numpad {
    display: none; 
    position: absolute; 
    width: 100%; 
    height: 100%; 
    z-index: 9999; 
    text-align: center; 
    align-items: center; 
    justify-content: center;
    background-color: rgba(0,0,0,.7);
}

#yDot1, #yDot2, #oDot1, #oDot2, #oAM, #oPM, #yAM, #yPM {
    background-color: #4d4135;
}

#gDot1, #gDot2, #gAM, #gPM {
    background-color: #135102;
}

#desktop { display: none; }
#mobile {display: none; }

.button{
  float:left; 
  margin-right:2px;
  background-color:#bbb;
  height:30px; 
  line-height:30px;
  padding: 0 10px 0 12px;
  border: solid 5px #000;
  margin: 3px;
    
  border-width:0 4px 5px 0;
  border-radius: 5px;
  border-color: transparent #ddd #999 transparent;
  background-clip: padding-box;
  
  font-family: 'Roboto Condensed', sans-serif;
  
}

a {
    color: #80f573;
    text-decoration: none;
}

a:hover {
    color: #80f573;
    text-decoration: none;
}

/*
.button:hover{
  border-width:0 2px 3px 0; 
  margin-right:4px;
  position:relative;
  left:2px;
  top:3px;
}
*/

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #80f573;
}

input:focus + .slider {
  box-shadow: 0 0 1px #80f573;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

#flash {
  opacity: 1;
  transition: opacity 2s; 
}

#flash.fade {
  opacity: 0;
}

@media only screen and (orientation:portrait)
{
    #landscape { display:none; }
    #portrait { display:block; }
}

@media only screen and (orientation:landscape)
{
    #landscape { display:block; }
    #portrait { display:none; }
}