.paper-tooltip {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 20000;
  display: none;
  max-width: min(420px, calc(100vw - 24px));
  pointer-events: none;
}

.paper-tooltip.show {
  display: block;
}

.paper-tooltip-box {
  background: #ffffff;
  border: 2px solid #94a3b8;
  border-radius: 10px;
  padding: 10px 12px 10px 48px;
  color: #0f172a;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.55;
  box-shadow: 3px 3px 0 rgba(15, 23, 42, 0.18);
  position: relative;
}

.paper-tooltip-box::before {
  content: "!";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: #f59e0b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.paper-tooltip-arrow {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-right: 2px solid #94a3b8;
  border-bottom: 2px solid #94a3b8;
  transform: rotate(45deg);
}
