:root {
  --tr-x-offset: 4em;
  --tr-y-offset: 2.5em;
  --tr-height: 3em;
  --tr-pos: absolute;
}

.guide-container {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 2em 2.5em;
  border-radius: 1.5em;
  display: flex;
  flex-direction: column;
  font-family: "Nunito", sans-serif;
  gap: 1.4em;
  align-items: center;
  text-align: center;
  box-shadow: 0px 35px 35px -15px #011c6b33;
  background: white;
  z-index: 1000;
}

.guide-textContainer > * {
  white-space: pre-line;
}

.guide-textContainer > h3 {
  margin-bottom: 0;
}

.guide-textContainer > h3 + p {
  margin-top: 0.8em;
  margin-bottom: 0;
}

.guide-textContainer > h3 {
  font-weight: 700;
  font-size: 1.3em;
}

.guide-textContainer > p:has(+ h3) {
  font-weight: 400;
  margin-bottom: 0;
  white-space: pre-line;
  line-height: 100%;
  letter-spacing: 0;
}

.guide-textContainer > p:nth-child(3) {
  font-weight: 700;
  margin-bottom: 0;
}

p.guide-sliderProgress {
  font-size: 0.9em;
  margin: 0;
}

.guide-slider {
  display: flex;
  align-items: center;
  gap: 0.4em;
}
.guide-slider > svg {
  cursor: pointer;
}

.closeGuide {
  position: absolute;
  cursor: pointer;
  right: 2em;
  top: 2em;
}

.triangleBottomCenter {
  height: var(--tr-height);
  position: var(--tr-pos);
  bottom: calc(var(--tr-y-offset) * -1);
  left: 50%;
  transform: translateX(-50%) rotate3d(0, 0, 1, 180deg);
}

.triangleLeftCenter {
  height: var(--tr-height);
  position: var(--tr-pos);
  left: calc(var(--tr-x-offset) * -1);
  top: 50%;
  transform: translateY(-50%) rotate3d(0, 0, 1, -90deg);
}

.triangleRightCenter {
  height: var(--tr-height);
  position: var(--tr-pos);
  right: calc(var(--tr-x-offset) * -1);
  top: 50%;
  transform: translateY(-50%) rotate3d(0, 0, 1, 90deg);
}

.triangleTopRight {
  height: var(--tr-height);
  position: var(--tr-pos);
  top: calc(var(--tr-y-offset) * -1);
  right: 1.15em;
}

.triangleTopCenter {
  height: var(--tr-height);
  position: var(--tr-pos);
  top: calc(var(--tr-y-offset) * -1);
  left: 50%;
  transform: translateX(-50%);
}

.guide-buttons {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 0.9em;
}

.guide-button {
  font-family: "Nunito", sans-serif;
  line-height: 120%;
  font-weight: 700;
  text-align: center;
  padding: 0.9em 1.8em;
  border-radius: 0.5em;
  outline: none;
  border-width: 0;
}

.guide-cancel,
.guide-finish {
  cursor: pointer;
}

.guide-cancel {
  background: #00b0f0;
  color: white;
}

.guide-finish {
  background: #d9d9d9;
  color: #858282;
}

.guide-slider > .arrow {
  width: 0.9em;
  height: 0.9em;
  pointer-events: none;
}

.guide-slider-logo {
  width: 3em;
  height: 3em;
}

#guide-dialog {
  position: absolute;
  z-index: 1060;
}

#guide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1050;
  pointer-events: none;
}

#guide-lock-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1050;
  pointer-events: none;
}
