/*$box-shadow: (*/
/**/ /*"sm": 0 0 0.375rem 0 rgba(46, 38, 61, 0.18), //*/
/**/ /*"md": 0 0 0.625rem 0 rgba(46, 38, 61, 0.2), //*/
/**/ /*"lg": 0 0 1rem 0 rgba(46, 38, 61, 0.22) //
);*/
/*
1 colore bottone
2 bordo/hover
3 testo
*/
/*$box-shadow: (*/
/**/ /*"sm": 0 0 0.375rem 0 rgba(46, 38, 61, 0.18), //*/
/**/ /*"md": 0 0 0.625rem 0 rgba(46, 38, 61, 0.2), //*/
/**/ /*"lg": 0 0 1rem 0 rgba(46, 38, 61, 0.22) //
);*/
/*
1 colore bottone
2 bordo/hover
3 testo
*/
.appLayout:has(.wizardCard) {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-light) 55%, var(--primary-light) 55%, var(--primary) 66%, var(--secondary) 66%, var(--secondary-light) 100%);
}

.exitWizard {
  position: fixed;
  top: 0;
  left: 0;
  margin: 1rem;
}

.wizardCard {
  --wizard-w: 70svw;
  --wizard-h: 80svh;
  max-width: 1536px;
}
@media (max-width: 1536px) {
  .wizardCard {
    --wizard-w: 80svw;
  }
}
@media (max-width: 1280px) {
  .wizardCard {
    --wizard-w: 90svw;
    --wizard-h: 85svh;
  }
}
@media (max-width: 640px) {
  .wizardCard {
    position: fixed;
    top: 5rem;
    bottom: 0;
    left: 0;
    right: 0;
    --wizard-w: 100svw;
    --wizard-h: calc(100svh - 5rem);
  }
}
.wizardCard {
  position: relative;
  z-index: 2;
  width: var(--wizard-w);
  height: var(--wizard-h);
}
.wizardCard--fullScreen {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  min-width: 100svh;
  min-height: 100svh;
  max-width: unset;
}
.wizardCard .card__section {
  padding: 2.5rem;
}
@media (max-width: 1024px) {
  .wizardCard .card__section {
    padding: 2rem;
  }
  .wizardCard .card__section__border--right {
    padding-bottom: 0;
  }
}
@media (max-width: 768px) {
  .wizardCard .card__section {
    padding: 1.5rem;
  }
  .wizardCard .card__section__border--right {
    padding-bottom: 0;
  }
}
.wizardCard__data {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  max-height: var(--wizard-h);
  overflow-y: auto;
  overflow-x: hidden;
  flex-grow: 1;
}
.wizardCard__data__step {
  margin-bottom: auto;
}
.wizardCard .wizardSteps {
  display: flex;
  flex-direction: column;
  max-height: var(--wizard-h);
  overflow-y: auto;
  overflow-x: hidden;
  min-width: 300px;
}
@media (max-width: 768px) {
  .wizardCard .wizardSteps {
    min-width: unset;
  }
}
.wizardCard .wizardSteps__step {
  display: flex;
  gap: 0.5rem;
}
.wizardCard .wizardSteps__step:has(div) + .wizardSteps__step {
  margin-top: 2rem;
}
@media (max-width: 1024px) {
  .wizardCard .wizardSteps__step:has(div) + .wizardSteps__step {
    margin-top: 0;
  }
}
.wizardCard .wizardSteps__step__circle {
  display: flex;
  align-items: center;
  color: var(--primary-light);
  font-size: x-large;
}
.wizardCard .wizardSteps__step__number {
  display: flex;
  align-items: center;
  font-weight: bolder;
  color: var(--fg-light);
  font-size: larger;
  width: 2.5rem;
}
.wizardCard .wizardSteps__step__label {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wizardCard .wizardSteps__step__label p {
  font-size: small;
  color: var(--fg-light);
}
@media (max-width: 1024px) {
  .wizardCard .wizardSteps .wizardSteps__step:not(.active) {
    display: none;
  }
}
.wizardCard .wizardSteps .wizardSteps__step.active .fa-circle-check {
  display: none;
}
.wizardCard .wizardSteps .wizardSteps__step.active .fa-circle {
  display: none;
}
.wizardCard .wizardSteps .wizardSteps__step.active ~ .wizardSteps__step .wizardSteps__step__circle {
  opacity: 0.5;
}
.wizardCard .wizardSteps .wizardSteps__step.active ~ .wizardSteps__step .wizardSteps__step__number {
  opacity: 0.5;
}
.wizardCard .wizardSteps .wizardSteps__step.active ~ .wizardSteps__step .wizardSteps__step__label p {
  opacity: 0.5;
}
.wizardCard .wizardSteps .wizardSteps__step.active ~ .wizardSteps__step .fa-circle-check {
  display: none;
}
.wizardCard .wizardSteps .wizardSteps__step.active ~ .wizardSteps__step .fa-circle-dot {
  display: none;
}
.wizardCard .wizardSteps .wizardSteps__step:has(~ .wizardSteps__step.active) .fa-circle {
  display: none;
}
.wizardCard .wizardSteps .wizardSteps__step:has(~ .wizardSteps__step.active) .fa-circle-dot {
  display: none;
}

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