:root {
  --intro-font-family: "Helvetica Neue", -apple-system, system-ui, sans-serif;
  --intro-primary: #094168;
  --intro-primary-hover: #083857;
  --intro-grey: #939598;
  --intro-accent: #00b6f1;
  --intro-text: #333333;
  --intro-text-light: #666666;
  --intro-background: #ffffff;
  --intro-border: #e0e0e0;
  --intro-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --intro-radius: 4px;
  --intro-transition: all 0.2s ease;
  --intro-overlay: rgba(0, 0, 0, 0.4);
  
  /* Font size */
  --intro-title-size: 15px;
  --intro-content-size: 12px;
  --intro-button-size: 11px;
  --intro-pagination-size: 11px;
  --intro-helper-size: 10px;
  --intro-skip-size: 12px;
  
  /* Font weight */
  --intro-title-weight: 600;
  --intro-content-weight: 400;
  --intro-button-weight: 400;
  --intro-helper-weight: 400;
  --intro-skip-weight: 400;
  
  /* Line height */
  --intro-title-line-height: 1.4;
  --intro-content-line-height: 1.5;
  --intro-helper-line-height: 1.4;
  --intro-skip-line-height: 1;
  
  /* Spaziatura */
  --intro-title-margin: 12px;
  --intro-content-padding: 5px;
  --intro-button-padding: 6px 12px;
  --intro-helper-padding: 10px;
  --intro-skip-padding: 2px 8px;
}

.introjs-overlay {
  position: absolute;
  box-sizing: content-box;
  z-index: 999999;
  opacity: 0;
  transition: all .3s ease-out
}

.introjs-showElement {
  z-index: 9999999 !important
}

tr.introjs-showElement>td {
  z-index: 9999999 !important;
  position: relative
}

tr.introjs-showElement>th {
  z-index: 9999999 !important;
  position: relative
}

.introjs-disableInteraction {
  z-index: 99999999 !important;
  position: absolute;
  background-color: #fff;
  opacity: 0
}

.introjs-relativePosition {
  position: relative
}

.introjs-helperLayer {
  box-sizing: border-box;
  position: absolute;
  z-index: 9999998;
  border-radius: var(--intro-radius);
  transition: var(--intro-transition);
  border: 1px solid var(--intro-accent);
  box-shadow: 0 0 0 9999px var(--intro-overlay);
}

.introjs-helperLayer * {
  box-sizing: content-box
}

.introjs-helperLayer :before {
  box-sizing: content-box
}

.introjs-helperLayer :after {
  box-sizing: content-box
}

.introjs-tooltipReferenceLayer {
  font-family: var(--intro-font-family);
  box-sizing: content-box;
  position: absolute;
  visibility: hidden;
  z-index: 100000000;
  background-color: transparent;
  transition: all .3s ease-out
}

.introjs-tooltipReferenceLayer * {
  font-family: var(--intro-font-family);
}

.introjs-helperNumberLayer {
  font-family: var(--intro-font-family);
  color: var(--intro-text-light);
  text-align: center;
  padding-top: var(--intro-helper-padding);
  padding-bottom: var(--intro-helper-padding);
  font-size: var(--intro-helper-size);
  font-weight: var(--intro-helper-weight);
  line-height: var(--intro-helper-line-height);
}

.introjs-arrow {
  border: 5px solid transparent;
  content: "";
  position: absolute
}

.introjs-arrow.top {
  top: -10px;
  left: 10px;
  border-bottom-color: #fff
}

.introjs-arrow.top-right {
  top: -10px;
  right: 10px;
  border-bottom-color: #fff
}

.introjs-arrow.top-middle {
  top: -10px;
  left: 50%;
  margin-left: -5px;
  border-bottom-color: #fff
}

.introjs-arrow.right {
  right: -10px;
  top: 10px;
  border-left-color: #fff
}

.introjs-arrow.right-bottom {
  bottom: 10px;
  right: -10px;
  border-left-color: #fff
}

.introjs-arrow.bottom {
  bottom: -10px;
  left: 10px;
  border-top-color: #fff
}

.introjs-arrow.bottom-right {
  bottom: -10px;
  right: 10px;
  border-top-color: #fff
}

.introjs-arrow.bottom-middle {
  bottom: -10px;
  left: 50%;
  margin-left: -5px;
  border-top-color: #fff
}

.introjs-arrow.left {
  left: -10px;
  top: 10px;
  border-right-color: #fff
}

.introjs-arrow.left-bottom {
  left: -10px;
  bottom: 10px;
  border-right-color: #fff
}

.introjs-tooltip {
  box-sizing: border-box;
  position: absolute;
  visibility: visible;
  background-color: var(--intro-background);
  min-width: 250px;
  max-width: 300px;
  border-radius: var(--intro-radius);
  box-shadow: var(--intro-shadow);
  transition: var(--intro-transition);
  border: 1px solid var(--intro-border);
}

.introjs-tooltip-title {
  font-family: var(--intro-font-family);
  font-size: var(--intro-title-size);
  color: var(--intro-primary);
  font-weight: var(--intro-title-weight);
  line-height: var(--intro-title-line-height);
  margin-bottom: var(--intro-title-margin);
  position: relative;
  padding-bottom: 8px;
}

.introjs-tooltip-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--intro-accent);
}

.introjs-tooltiptext {
  padding: 0 20px var(--intro-content-padding);
  color: var(--intro-text);
  font-family: var(--intro-font-family);
  line-height: var(--intro-content-line-height);
  font-size: var(--intro-content-size);
  font-weight: var(--intro-content-weight);
}

.introjs-tooltip-header {
  position: relative;
  padding: 15px 20px 0;
  min-height: 1.5em;
}

.introjs-dontShowAgain {
  padding-left: 20px;
  padding-right: 20px
}

.introjs-dontShowAgain input {
  padding: 0;
  margin: 0;
  margin-bottom: 2px;
  display: inline;
  width: 10px;
  height: 10px
}

.introjs-dontShowAgain label {
  font-size: 14px;
  display: inline-block;
  font-weight: 400;
  margin: 0 0 0 5px;
  padding: 0;
  background-color: #fff;
  color: #616161;
  -webkit-user-select: none;
  user-select: none
}

.introjs-tooltipbuttons {
  border-top: 1px solid var(--intro-border);
  padding: 10px 15px;
  text-align: right;
  white-space: nowrap;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.introjs-button {
  font-family: var(--intro-font-family);
  padding: var(--intro-button-padding);
  border: 1px solid var(--intro-grey);
  background-color: #ffffff;
  color: var(--intro-text);
  border-radius: var(--intro-radius);
  font-size: var(--intro-button-size);
  font-weight: var(--intro-button-weight);
  transition: var(--intro-transition);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  margin: 0 4px;
}

.introjs-button:hover {
  background-color: #f5f5f5;
  border-color: var(--intro-primary);
  color: var(--intro-primary);
}

.introjs-button:focus {
  outline: 0;
  text-decoration: none;
  background-color: #eee;
  box-shadow: 0 0 0 .2rem rgba(158, 158, 158, .5);
  border: 1px solid #616161;
  color: #212121
}

.introjs-button:active {
  outline: 0;
  text-decoration: none;
  background-color: #e0e0e0;
  border-color: #9e9e9e;
  color: #212121
}

.introjs-button::-moz-focus-inner {
  padding: 0;
  border: 0
}

.introjs-skipbutton {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-block;
  padding: var(--intro-skip-padding);
  color: var(--intro-grey);
  font-family: var(--intro-font-family);
  font-size: var(--intro-skip-size);
  font-weight: var(--intro-skip-weight);
  line-height: var(--intro-skip-line-height);
  cursor: pointer;
  transition: var(--intro-transition);
  background-color: transparent;
  text-decoration: none;
  border-radius: var(--intro-radius);
}

.introjs-skipbutton:hover {
  color: var(--intro-primary);
}

.introjs-prevbutton {
  float: left;
}

.introjs-nextbutton {
  background-color: var(--intro-primary);
  color: white;
  border: none;
}

.introjs-nextbutton:hover {
  background-color: var(--intro-primary-hover);
  color: white;
}

.introjs-disabled {
  color: #9e9e9e;
  border-color: #bdbdbd;
  box-shadow: none;
  cursor: default;
  background-color: #f4f4f4;
  background-image: none;
  text-decoration: none
}

.introjs-disabled:focus,
.introjs-disabled:hover {
  color: #9e9e9e;
  border-color: #bdbdbd;
  box-shadow: none;
  cursor: default;
  background-color: #f4f4f4;
  background-image: none;
  text-decoration: none
}

.introjs-hidden {
  display: none
}

.introjs-bullets {
  text-align: center;
  padding: 0;
  margin: 20px 0 -15px 0;
  height: 13px;
  cursor: pointer
}

.introjs-bullets + div {
  color: var(--intro-text-light);
  font-size: var(--intro-pagination-size);
  text-align: center;
  margin-top: 0;
  padding-top: 0;
}

.introjs-bullets ul {
  display: inline-block;
  margin: 0;
  padding: 0;
}

.introjs-bullets ul li {
  display: inline-block;
  margin: 0 3px;
  list-style: none;
}

.introjs-bullets ul li a {
  display: block;
  width: 6px;
  height: 6px;
  background: var(--intro-grey);
  border-radius: 50%;
  transition: var(--intro-transition);
  opacity: 0.5;
  box-sizing: content-box;
  border: 0;
}

.introjs-bullets ul li a.active {
  background: var(--intro-accent);
  opacity: 1;
}

.introjs-bullets ul li a:hover {
  opacity: 0.7;
}

.introjs-progress {
  background-color: #f0f0f0;
  height: 4px;
  margin: 0 20px 10px;
}

.introjs-progressbar {
  background-color: var(--intro-accent);
  transition: width 0.2s ease;
}

.introjsFloatingElement {
  position: absolute;
  height: 0;
  width: 0;
  left: 50%;
  top: 50%
}

.introjs-fixedTooltip {
  position: fixed
}

.introjs-hint {
  box-sizing: content-box;
  position: absolute;
  background: 0 0;
  width: 20px;
  height: 15px;
  cursor: pointer
}

.introjs-hint:focus {
  border: 0;
  outline: 0
}

.introjs-hint:hover>.introjs-hint-pulse {
  background-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 0 0 rgba(37, 99, 235, 0.4);
}

.introjs-hidehint {
  display: none
}

.introjs-fixedhint {
  position: fixed
}

@keyframes introjspulse {
  0% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
  }
  70% {
      transform: scale(1);
      box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
  }
  100% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
  }
}

.introjs-hint-pulse {
  background-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 0 0 rgba(37, 99, 235, 0.4);
  box-sizing: content-box;
  width: 15px;
  height: 15px;
  border-radius: 30px;
  z-index: 10;
  position: absolute;
  transition: all .2s ease-out;
  animation: introjspulse 2s infinite
}

.introjs-hint-no-anim .introjs-hint-pulse {
  animation: none
}

.introjs-hint-dot {
  box-sizing: content-box;
  background: 0 0;
  border-radius: 60px;
  height: 50px;
  width: 50px;
  position: absolute;
  top: -18px;
  left: -18px;
  z-index: 1;
  opacity: 0
}

/*# sourceMappingURL=introjs.css.map */