.guide-tooltip {
  position: absolute;
  background: #fff;
  border: 0.5px solid #333;
  border-radius: 5px;
  padding: 15px;
  z-index: 10003;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  max-width: 400px;
}
.guide-tooltip .close {
  color: #3498db;
  transform: scale(1.5);
  position: relative;
  bottom: 20px;
  right: -20px;
  top: unset;
  left: unset;
}
.guide-tooltip .close:hover {
  color: red;
  transform: scale(1.5);
  position: relative;
  bottom: 20px;
  right: -20px;
}
.guide-tooltip .close:active {
  color: #3498db;
  transform: scale(1.5);
  position: relative;
  bottom: 20px;
  right: -20px;
}
.guide-tooltip .title {
  font-weight: bold;
  margin-bottom: 10px;
  font-family: Montserrat;
  text-align: left;
}
.guide-tooltip .body {
  text-align: left;
  font-family: Montserrat;
}
.guide-tooltip .buttons {
  margin-top: 10px;
  text-align: right;
}
.guide-tooltip .buttons button {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 16px;
  width: 95px;
  height: 40px;
}
.guide-highlighted {
  outline: 3px solid #0D86D9;
  border-radius: 4px;
  position: relative;
  z-index: 10002;
  animation: pulseHighlightStrong 1.5s ease-in-out infinite;
}
@keyframes pulseHighlightStrong {
  0% {
    box-shadow: 0 0 0px 0 rgba(13, 134, 217, 0.8), 0 0 0px 0 rgba(13, 134, 217, 0.6);
  }
  50% {
    box-shadow: 0 0 8px 4px rgba(13, 134, 217, 0.6), 0 0 15px 6px rgba(13, 134, 217, 0.4);
  }
  100% {
    box-shadow: 0 0 0px 0 rgba(13, 134, 217, 0.8), 0 0 0px 0 rgba(13, 134, 217, 0.6);
  }
}
.guide-element-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}
/*# sourceMappingURL=guides.css.map */