:root {
  font-size: 16px;
}
body {
  background: #f3f4f6;
}

#countdown {
  position: absolute;
  top: 10px;
  right: 10px;
  height: 40px;
  width: 40px;
  text-align: center;
}
#countdown-number {
  color: black;
  display: inline-block;
  line-height: 40px;
}
#countdown svg {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  transform: rotateY(-180deg) rotateZ(-90deg);
}
#countdown svg circle {
  stroke-dasharray: 113px;
  stroke-dashoffset: 0px;
  stroke-linecap: round;
  stroke-width: 3px;
  stroke: rgba(50,50,50,0.5);
  fill: none;
  animation: countdown 10s linear 1 forwards;
}
.dark #countdown-number {
  color: white;
}
.dark #countdown svg circle {
  stroke: rgba(255,255,255,0.5);
}
@keyframes countdown {
  from {
    stroke-dashoffset: 0px;
  }
  to {
    stroke-dashoffset: 113px;
  }
}

#app_guts {
  height: 93vh;/* bodyViewPortHeight of 93 */
  overflow: hidden;
  overflow-y: auto;
}
#app_footer {
  height: 7vh;/* 100 - bodyViewPortHeight of 93, remainder of viewport */
  overflow: hidden;
  padding: 0 20px;
  text-align: center;
}
#app_footer h3 {
  margin: 0;
  padding: 0;
  line-height: 7vh;
}
#app_footer img {
  max-height: 5vh;/* 100 - bodyViewPortHeight of 93, -2 for some extra padding, remainder of viewport */
  vertical-align: middle;
  display: inline-block;
}
#app_footer.dark {
  background: #444;
}
#app_footer.light {
  background: #ddd;
}

.member_select_user, .employee_select_user {
  text-decoration: none;
  margin: 5px;
  padding: 10px;
  border: 1px solid #cecece;
  display: block;
  border-radius: 10px;
}

#member_pin, #employee_pin {
  text-security: disc;
  -webkit-text-security: disc;
  -moz-text-security: disc;
}
