/* 30ml nicotine badges */
.badge-stack{
  position:absolute;
  top:12px;
  right:12px;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:7px;
  z-index:3;
}
.rtl .badge-stack{
  right:auto;
  left:12px;
  align-items:flex-start;
}
.badge-stack .size-badge{
  position:static;
}
.nicotine-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:5px 9px;
  border-radius:999px;
  background:var(--blue-deep);
  color:#fff;
  font-size:11px;
  font-weight:900;
  white-space:nowrap;
  box-shadow:0 5px 16px rgba(0,123,194,.18);
}
html[data-theme="dark"] .nicotine-badge{
  background:#0aa8df;
}
