.npp-pb {
  margin: auto;
  margin-top: 20px;
  margin-bottom: 30px;
  width: 200px;
  height: 200px;
  position: relative;
  font-family: "Raleway", Helvetica, sans-serif ;
  font-size: 2rem;
  text-align: center;
}

.grid-container {
  display: grid;
  grid-template-columns: auto auto;
  padding: 10px;
}
.grid-item {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.8);
  padding: 20px;
  font-size: 30px;
  text-align: center;
}

.center {
  text-align: center;
}

.green {
  color: #43b02a;
}

.red {
  color: red;
}

h1 {
  text-align: center;
}

table.tb {
  border-collapse: collapse;
  width:300px; 
  border:2px solid #000000;
  padding: 5px;
  }

.tb th, .tb td {
   padding: 5px; 
   border:2px solid #000000; 
  }

.printname {
   background-color: rgb(202, 235, 199);
  }
  
.strongtxt {
  font-weight: bold;
  color:rgba(0, 0, 0, 0.685)
}

img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/*--------------STATUSLINE SOLID-------------*/
.StatusLine{
  width: 100%;
  height: 10px;
}

/*--------------STATUSLINE FLICKER------------*/
.StatusLineFlicker{
  width: 100%;
  height: 10px;
  color: white;
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {opacity: 0;}
}

/*---------------STATUSLINE FADING------------*/
/* :root{
  --color2: white;
  --bodyColor: white;
} */

.StatusLineFading{
  width: 100%;
  height: 10px;
  position: relative;
  overflow: hidden;
  background-color: white;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

.StatusLineFading:before {
  content: "";
  position: absolute;
  left: -50%;
  height: 10px;
  width: 40%;
  background-color: var(--color2);
  -webkit-animation: lineAnim 1s linear infinite;
  -moz-animation: lineAnim 1s linear infinite;
  animation: lineAnim 1s linear infinite;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

@keyframes lineAnim {
  0% {
      left: -40%;
  }
  50% {
      left: 20%;
      width: 80%;
  }
  100% {
      left: 100%;
      width: 100%;
  }
}

.Body-frame{
  content: "";
  border: thick solid;
  border-color: var(--bodyColor);
  /* animation: blinker 1s linear infinite; */
}

/*------------LOADING DOTS-----------*/
p {
  font-size: 30px;
  padding-bottom: 0px;
  margin-top: 0rem;
  margin-bottom: 0rem;
 }

 .loading:after {
   content: ' .';
   animation: dots 3s steps(5, end) infinite;
 }

 @keyframes dots {
   0%, 20% {
     color: rgba(0,0,0,0);
     text-shadow:
       .25em 0 0 rgba(0,0,0,0),
       .5em 0 0 rgba(0,0,0,0);
     }
   40% {
     color: black;
     text-shadow:
       .25em 0 0 rgba(0,0,0,0),
       .5em 0 0 rgba(0,0,0,0);
     }
   60% {
     text-shadow:
       .25em 0 0 black,
       .5em 0 0 rgba(0,0,0,0);
     }
   80%, 100% {
     text-shadow:
       .25em 0 0 black,
       .5em 0 0 black;
     }
  }
