/******** borderSize *******/
/******** borderStyle *******/
/******** radius *******/
/******** shadow distance *******/
/******** size *******/
/******** spacing *******/
/******** shadow *******/
/******** opacity *******/
/******** fontSize *******/
/******** fontWeight ********/
/******** Primary *******/
/******** success *******/
/******** warning *******/
/******** danger *******/
/******** link *******/
/******** radius *******/
/********* icon hover *********/
.sd-tour-overlay {
  z-index: 1000;
  pointer-events: none;
}

body.sd-tour-active .sd-tour-overlay {
  pointer-events: none;
}

body.sd-tour-active * {
  pointer-events: none;
}

body.sd-tour-active .sd-tour-active-element,
body.sd-tour-active .sd-tour-active-element *,
body.sd-tour-active .sd-tour-popover-shell,
body.sd-tour-active .sd-tour-popover-shell *,
body.sd-tour-active .sd-tour-popover,
body.sd-tour-active .sd-tour-popover * {
  pointer-events: auto;
}

.sd-tour-overlay path {
  cursor: auto;
  pointer-events: auto;
}

.sd-tour-popover {
  position: fixed;
  z-index: 1001;
  box-sizing: border-box;
  min-width: 280px;
  max-width: 360px;
}

.sd-tour-popover-shell {
  position: fixed;
  margin: 0;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
}

.sd-tour-popover {
  padding: 12px 16px;
  color: var(--sd-color-text-1);
  background-color: var(--sd-color-bg-popup);
  border: 1px solid var(--sd-color-neutral-3);
  border-radius: var(--sd-border-radius-medium);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.sd-tour-popover .sd-tour-content {
  display: flex;
  flex-direction: column;
}

.sd-tour-popover .sd-tour-popover-title {
  color: var(--sd-color-text-1);
  font-size: 16px;
  line-height: 1.5715;
}

.sd-tour-popover .sd-tour-popover-description {
  color: var(--sd-color-text-2);
  font-size: 14px;
}

.sd-tour-popover .sd-tour-popover-title[style*=block] + .sd-tour-popover-description {
  margin-top: 4px;
}

.sd-tour-popover .sd-tour-popover-progress-text {
  color: var(--sd-color-text-2);
  font-size: 12px;
}

.sd-tour-popover .sd-tour-popover-close-btn {
  color: var(--sd-color-text-2);
}

.sd-tour-popover .sd-tour-popover-close-btn:hover,
.sd-tour-popover .sd-tour-popover-close-btn:focus {
  color: var(--sd-color-text-1);
}

.sd-tour-popover .sd-tour-popover-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.sd-tour-popover .sd-tour-popover-navigation-btns {
  display: inline-flex;
  gap: 4px;
}

.sd-tour-popover .sd-tour-popover-progress-text {
  min-height: 24px;
}

.sd-tour-popover .sd-tour-popover-next-btn,
.sd-tour-popover .sd-tour-popover-prev-btn {
  min-width: 72px;
}

.sd-tour-popover .sd-tour-popover-close-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  color: var(--sd-color-text-2);
  font-size: 20px;
  line-height: 1;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.sd-tour-popover .sd-tour-popover-close-btn:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.sd-tour-popover-arrow {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--sd-color-bg-popup);
  border-top: 1px solid var(--sd-color-neutral-3);
  border-left: 1px solid var(--sd-color-neutral-3);
  transform: rotate(45deg);
}

.sd-tour-popover-arrow-side-top {
  bottom: -7px;
  border-top: 0;
  border-right: 1px solid var(--sd-color-neutral-3);
  border-bottom: 1px solid var(--sd-color-neutral-3);
  border-left: 0;
}

.sd-tour-popover-arrow-side-bottom {
  top: -7px;
}

.sd-tour-popover-arrow-side-left {
  right: -7px;
  border-top: 0;
  border-right: 1px solid var(--sd-color-neutral-3);
  border-bottom: 1px solid var(--sd-color-neutral-3);
  border-left: 0;
}

.sd-tour-popover-arrow-side-right {
  left: -7px;
}

.sd-tour-popover-arrow-align-start.sd-tour-popover-arrow-side-top,
.sd-tour-popover-arrow-align-start.sd-tour-popover-arrow-side-bottom {
  left: 24px;
}

.sd-tour-popover-arrow-align-center.sd-tour-popover-arrow-side-top,
.sd-tour-popover-arrow-align-center.sd-tour-popover-arrow-side-bottom {
  left: calc(50% - 6px);
}

.sd-tour-popover-arrow-align-end.sd-tour-popover-arrow-side-top,
.sd-tour-popover-arrow-align-end.sd-tour-popover-arrow-side-bottom {
  right: 24px;
}

.sd-tour-popover-arrow-align-start.sd-tour-popover-arrow-side-left,
.sd-tour-popover-arrow-align-start.sd-tour-popover-arrow-side-right {
  top: 24px;
}

.sd-tour-popover-arrow-align-center.sd-tour-popover-arrow-side-left,
.sd-tour-popover-arrow-align-center.sd-tour-popover-arrow-side-right {
  top: calc(50% - 6px);
}

.sd-tour-popover-arrow-align-end.sd-tour-popover-arrow-side-left,
.sd-tour-popover-arrow-align-end.sd-tour-popover-arrow-side-right {
  bottom: 24px;
}

.sd-tour-popover-arrow-none,
.sd-tour-popover-arrow-side-over {
  display: none;
}

.sd-tour-active-element {
  position: relative;
  z-index: var(--sd-tour-active-z-index, 1001);
}

.sd-tour-no-interaction,
.sd-tour-no-interaction * {
  pointer-events: none !important;
}