#lockify-toast{
  position: fixed;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  bottom: 20px;
  background: rgba(0,0,0,0.85);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  z-index: 2147483647;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
}
#lockify-toast.show{ opacity: 1; transform: translateX(-50%) translateY(0); }
.lockify-exempt{}