.dorothy-coachmark {
  position: fixed;
  z-index: 1400;
  inset: 0;
  pointer-events: none;
  color: #fff7e9;
}

.dorothy-coachmark[hidden] { display: none; }

.coachmark-ring {
  position: fixed;
  border: 1px solid rgba(255, 218, 148, .92);
  border-radius: 22px;
  background: rgba(255, 218, 148, .035);
  box-shadow: 0 0 0 4px rgba(255, 210, 126, .1), 0 0 30px rgba(255, 198, 94, .32), inset 0 0 18px rgba(255, 231, 183, .1);
  transition: left .25s ease, top .25s ease, width .25s ease, height .25s ease;
}

.coachmark-dot {
  position: fixed;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid #fff2cb;
  border-radius: 50%;
  background: radial-gradient(circle, #fff9df 0 18%, #ffd47e 22% 50%, #9f6324 72%, rgba(91, 47, 10, .25));
  box-shadow: 0 0 0 7px rgba(255, 205, 109, .13), 0 0 24px rgba(255, 196, 79, .72);
}

.coachmark-dot i {
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(255, 215, 133, .62);
  border-radius: inherit;
}

.coachmark-card {
  position: fixed;
  box-sizing: border-box;
  min-height: 100px;
  padding: 17px 42px 16px 18px;
  border: 1px solid rgba(242, 204, 145, .58);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(57, 35, 77, .96), rgba(20, 11, 35, .97));
  box-shadow: 0 18px 45px rgba(5, 2, 13, .48), inset 0 1px rgba(255, 255, 255, .1);
  pointer-events: auto;
}

.coachmark-step {
  display: block;
  margin-bottom: 7px;
  color: #e9c88f;
  font: 700 9px/1 Arial, sans-serif;
  letter-spacing: .2em;
}

.coachmark-title {
  display: block;
  color: #fff4df;
  font: 500 18px/1.25 Georgia, serif;
  letter-spacing: .015em;
}

.coachmark-hint {
  display: block;
  margin-top: 7px;
  color: rgba(255, 244, 229, .72);
  font: 600 11px/1.35 Arial, sans-serif;
  letter-spacing: .025em;
}

.coachmark-skip {
  position: absolute;
  top: 10px;
  right: 11px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 0;
  color: rgba(255, 238, 214, .72);
  background: transparent;
  font: 400 22px/1 Arial, sans-serif;
  cursor: pointer;
}

@media (prefers-reduced-motion: no-preference) {
  .coachmark-dot { animation: coachmark-pulse 1.35s ease-in-out infinite; }
  .coachmark-dot i { animation: coachmark-ripple 1.35s ease-out infinite; }
  .coachmark-card { animation: coachmark-arrive .24s ease-out both; }
  @keyframes coachmark-pulse { 50% { transform: scale(1.12); filter: brightness(1.12); } }
  @keyframes coachmark-ripple { to { opacity: 0; transform: scale(1.5); } }
  @keyframes coachmark-arrive { from { opacity: 0; transform: translateY(6px); } }
}

