:root {
  --nopayn-blue: #2e3359ff;
  --nopayn-green: #49bb93;
  --nopayn-gray: #c1ae90;
  color-scheme: light;
}
@font-face {
  font-family: Proxima;
  src: url("/fonts/ProximaNova-Regular.otf");
}
@-moz-keyframes blinker {  
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}

@-webkit-keyframes blinker {  
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}

@keyframes blinker {  
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}
body {
  background-color: #ddd;
  display: none;
  font-family: Proxima;
  font-size: 14pt;
  height: 100%;
  margin: 0px;
  overflow: hidden;
  padding: 0px;
  width: 100%;
}
p {
  text-align: center;
}
table {
  border-collapse: collapse;
}
td {
  vertical-align: middle;
}
.blink {
  -webkit-animation-name: blinker;
  -webkit-animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;

  -moz-animation-name: blinker;
  -moz-animation-duration: 1s;
  -moz-animation-timing-function: linear;
  -moz-animation-iteration-count: infinite;

  animation-name: blinker;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
button {
  background-color: var(--nopayn-green);
  border: solid 2px #888;
  color: #fff;
  font-size: 12pt;
  border-radius: 7px; 
  box-shadow: 3px 3px #000;
  margin: 10px;
  padding: 15px;
}
button:disabled {
  background-color: gray;
}

.center {
  background-color: #eee;
  height: 800px;
  margin: 0px;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 1200px;
}
.description {
  padding-left: 20px;
  width: 120px;
}
.footing {
  background-color: #aaa;
  bottom: 0px;
  height: 30px;
  left: 0px;
  position: absolute;
  width: 100%;
}
.heading {
  background-color: var(--nopayn-blue);
  height: 75px;
  left: 0px;
  position: absolute;
  top: 0px;
  vertical-align: middle;
  width: 100%;
}
.innershadow {
   -moz-box-shadow:    inset 0 0 10px #888;
   -webkit-box-shadow: inset 0 0 10px #888;
   box-shadow:         inset 0 0 10px #888;
}
.lamp {
  margin: 10px;
}
.lamps {
  width: 0px;
}
#txt-heading {
  color: #fff;
  font-size: 28pt;
  font-weight: bold;
  margin-left: 50px;
  margin-top: 13px;
  position: absolute;
}
#logo {
  height: 50px;
  margin-left: 10px;
  margin-top: 15px;
}
#txt-socket-status {
  font-size: 10pt;
  margin: 8px;
  position: absolute;
}
#vmc {
  background-color: #777;
  border: #000 solid 2px;
  border-radius: 10px;
  box-shadow: 10px 10px #ccc;
  color: #fff;
  font-size: 12pt;
  height: 100%;
  width: 30%;;
}