.nonprodIndicator {
  display: none;
}

.nonprod .nonprodIndicator {
  display: block;
  position: fixed;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 5px;
  border: 1px #c9c9c9 solid;
  z-index: 99999;
  animation: blink 5s infinite alternate;
}
@keyframes blink {
  0%,
  50% {
    color: red;
  }
  100% {
    color: white; /* Or any other secondary color */
  }
}
