.tour-overlay {
  position: fixed;
  z-index: 9999;
  left: 0px;
  top: 0px;
  pointer-events: none;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
}
.tour-overlay.open {
  opacity: 1;
  visibility: visible;
}

.tour-overlay svg {
  width: 100%;
  height: 100%;
}

.blockclicks {
  pointer-events: all;
}

.block-cursor {
  cursor: not-allowed;
}

.overlay-tour-content {
  --content-width: 440px;
  position: fixed;
  z-index: 1;
  left: 0px;
  top: 0px;
  pointer-events: all;
  background-color: white;
  border-radius: 0.25rem;
  transition-timing-function: ease-in;
  max-width: var(--content-width);
  width: var(--content-width);
  display: flex;
  flex-direction: column;
  padding-top: var(--spacing-medium);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  box-shadow: 0 4px 32px rgba(17, 34, 51, 0.1333333333);
}

.overlay-tour-content [role=quit-tour] {
  position: absolute;
  top: 2rem;
  right: var(--spacing-xlarge);
  /* border: 1px solid currentColor; */
  /* transform: translateY(100%); */
  background-color: white;
  font-size: 1.5rem;
  border: 1px solid currentColor;
}

.overlay-tour-content header {
  padding: var(--spacing-medium) var(--spacing-xlarge);
}

.overlay-tour-content header h3 {
  font-family: "Archivo";
  font-size: var(--font-size-500);
  padding-right: 2rem;
}

.overlay-tour-content main {
  overflow: auto;
  border-top: 1px solid var(--text-100);
}

.overlay-tour-content > footer {
  margin-top: auto;
  background: var(--background-shade-500);
  justify-content: end;
  align-items: center;
}

.overlay-tour-content .progress {
  width: 120px;
  height: 10px;
  position: relative;
  margin-right: 2rem;
  /* margin-right: auto; */
  --bar-width: 120px;
}

.overlay-tour-content > footer .progress::before {
  content: "";
  position: absolute;
  width: var(--bar-width);
  height: 100%;
  background-color: rgba(0, 0, 0, 0.0666666667);
  border-radius: 16px;
  left: 0;
  /* top: 2px; */
}

.overlay-tour-content > footer .progress::after {
  content: "";
  position: absolute;
  --w: calc(var(--bar-width) * var(--progress));
  width: var(--w);
  height: 100%;
  background: var(--fade-d);
  border-radius: 16px;
  left: 0px;
  /* top: 2px; */
  transition: inherit;
}

.overlay-tour-content > *:not(button) {
  transition: inherit;
  border-radius: 0.25rem;
  padding: var(--spacing-xlarge);
  overflow: hidden;
}

.overlay-tour-content::after {
  content: "";
  position: absolute;
  transform: rotate(45deg);
  border-radius: 2px;
  width: 1rem;
  height: 1rem;
  background-color: white;
  transition: 0.25s;
}

.overlay-tour-content[data-position=top]::after {
  top: calc(100% - 0.6rem);
  left: 1rem;
  background-color: var(--background-shade-500);
}

.overlay-tour-content[data-position=bottom]::after {
  top: -0.4rem;
  left: 1rem;
}

.overlay-tour-content[data-position=right]::after {
  top: 1rem;
  left: -0.4rem;
}

.overlay-tour-content[data-position=left]::after {
  top: 1rem;
  right: -0.4rem;
}

/** turns into drawer */
.overlay-tour-content[data-mobile=true] {
  bottom: 0 !important;
  top: unset !important;
  right: unset !important;
  left: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto;
  /*updated by js*/
  overflow: hidden;
}

@keyframes tour-out-drawer {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
    transform: translateY(100%);
  }
  31% {
    opacity: 1;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes tour-in-drawer {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes tour-out {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  55% {
    opacity: 0;
    transform: translateY(10%);
  }
  65% {
    opacity: 0;
    transform: translateY(10%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes tour-in {
  0%, 50% {
    opacity: 0;
    transform: translateY(50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.overlay-tour-content[data-mobile=true].fade-out {
  animation: tour-out-drawer forwards;
}

.overlay-tour-content[data-mobile=true].fade-out-half {
  animation: tour-in-drawer forwards;
}

.overlay-tour-content.fade-out {
  animation: tour-out forwards;
}

.overlay-tour-content.fade-out-half {
  animation: tour-in forwards;
}

.measure-box {
  position: fixed;
  width: 100vw;
  height: 100vh;
  inset: 0px;
  pointer-events: none;
  visibility: hidden;
}/*# sourceMappingURL=tour.css.map */