/* Customize these to your brand */
:root {
  --tfse-bubble-bg: var(----page-element-color, #EB804A);   /* background color */
  --tfse-bubble-fg: #fff;   /* text color */
  --tfse-bubble-shadow: rgba(0,0,0,.25);
}

.tfse-bubble {
  position: absolute;
  right: 0;
  @media screen and (max-width: 767px) {
    right: auto;
    left: 0;
  }
  top: 40px;
  z-index: 99;
  background: var(--tfse-bubble-bg);
  color: var(--tfse-bubble-fg);
  padding: 6px 10px;
  border-radius: 6px;
  box-shadow: 0 4px 12px var(--tfse-bubble-shadow);
  font-size: 1.2rem;
  line-height: 1.2;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .15s ease, transform .15s ease;
  padding-left: 30px;
  background-image: url(../assets/warning.png);
  background-image: contain;
  background-repeat: no-repeat;
  background-position: 8px center;
  padding-top: 10px;
  padding-bottom: 10px;
}
.tfse-bubble.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.tfse-bubble::after {
  content: "";
  position: absolute;
  left: 12px;
  bottom: -6px;
  border: 6px solid transparent;
  border-top-color: var(--tfse-bubble-bg); /* little arrow */
}

/* Adjust positioning if your theme places the label above/left differently */
.form-type-number { position: relative; }
