body::before {
  content: "Development Version - some features may not work as expected";
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: orange;
  padding: 3px 8px 3px 8px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  color: white;
  z-index: 999999999999999999;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.25s ease-in-out;
}

body:hover::before {
  /*bottom: -30px !important;*/
  /*background-color: transparent;*/
  opacity: 0.3;
}