.publish-indicator {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 3px 10px 6px;
  font-family: Inter;
  font-weight: 400;
  letter-spacing: -0.5px;
  font-size: 13px;
  color: black;
  line-height: 15px;
  transition: opacity 0.2s linear, transform 0.3s ease;
  user-select: none;
  background: white;
  border-radius: 99px;
  pointer-events: none;
  z-index: 1;
}
.publish-indicator.animate-in {
  transform: translateY(-5px);
  opacity: 0 !important;
}
.publish-indicator::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url(/img/sense/sense-hide.svg) no-repeat center center;
  background-size: 15px 15px;
  position: relative;
  left: -2px;
  top: 3px;
  margin-right: 8px;
}
