.pg-tour-launch {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 9999;
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgb(226 232 240);
  background: #fff;
  color: rgb(71 85 105);
  box-shadow: 0 10px 15px -3px rgb(15 23 42 / 0.12),
    0 4px 6px -4px rgb(15 23 42 / 0.12);
  touch-action: manipulation;
}

.pg-tour-active {
  overflow-x: hidden !important;
}

html.pg-tour-active {
  scrollbar-gutter: stable;
}

.pg-tour-launch:hover {
  border-color: rgb(165 180 252);
  color: rgb(67 56 202);
}

.pg-tour-toast {
  position: fixed;
  right: 1.25rem;
  bottom: 4.5rem;
  z-index: 60;
  max-width: min(22rem, calc(100vw - 2.5rem));
  border: 1px solid rgb(226 232 240);
  background: white;
  color: rgb(15 23 42);
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgb(15 23 42 / 0.15), 0 8px 10px -6px rgb(15 23 42 / 0.15);
  padding: 0.75rem 0.9rem;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 0.875rem;
  line-height: 1.25rem;
  animation: pg-tour-toast-in 160ms ease-out;
}

@keyframes pg-tour-toast-in {
  from {
    transform: translateY(6px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Driver.js tweaks */
.driver-popover {
  border-radius: 1rem !important;
  border: 1px solid rgb(226 232 240) !important;
  box-shadow: 0 20px 25px -5px rgb(15 23 42 / 0.15), 0 8px 10px -6px rgb(15 23 42 / 0.15) !important;
  animation: pg-tour-pop 220ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.driver-popover-title {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji" !important;
  font-size: 1rem !important;
}

.driver-popover-description {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji" !important;
}

.driver-popover-footer button {
  border-radius: 0.75rem !important;
}

.driver-popover-footer .driver-popover-next-btn {
  border-color: rgb(191 219 254) !important;
  background: rgb(239 246 255) !important;
  color: rgb(29 78 216) !important;
}

@keyframes pg-tour-pop {
  0% {
    transform: translateY(6px) scale(0.98);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
