/*
1 colore bottone
2 bordo/hover
3 testo
*/
/*
1 colore bottone
2 bordo/hover
3 testo
*/
.wizardHeaderContainer {
  height: 60px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10010;
}

.wizardHeader {
  height: 40px;
  flex-grow: 1;
  margin-inline: 1rem;
  border-radius: 1rem;
  overflow: hidden;
  background-color: var(--primary);
  border-bottom: 1px solid var(--bg-dark);
  display: grid;
  grid-template-columns: 40px 1fr 1fr 1fr 1fr 1fr;
}
@media (max-width: 1024px) {
  .wizardHeader {
    overflow-x: auto;
  }
}
.wizardHeader .wizardClose {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: var(--white);
  cursor: pointer;
  border-radius: 1rem;
}
.wizardHeader .wizardClose:hover {
  background-color: var(--primary-dark);
}
.wizardHeader .wizardMacroStep {
  border-right: 1px solid var(--bg-dark);
  padding-left: 1rem;
  color: var(--fg);
  background-color: var(--bg-light);
  display: flex;
  align-items: center;
}
.wizardHeader .wizardMacroStep h2 {
  font-size: 16px;
  font-weight: 500;
}
.wizardHeader .wizardMacroStep__number {
  display: none;
}
@media (max-width: 1280px) {
  .wizardHeader .wizardMacroStep h2 {
    font-size: 13px;
  }
}
@media (max-width: 1024px) {
  .wizardHeader .wizardMacroStep h2 {
    display: none;
  }
  .wizardHeader .wizardMacroStep__number {
    display: block !important;
  }
}
.wizardHeader .wizardMacroStep.completed {
  background-color: var(--primary);
  border-right-color: var(--primary-light);
  color: var(--bg-light);
}

.wizardBody {
  min-height: calc(100svh - 60px - 1rem);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding-block: 2rem;
}
.wizardBody .wizardBody__next {
  position: fixed;
  right: 3rem;
  bottom: 3rem;
}
@media (max-width: 425px) {
  .wizardBody .wizardBody__next {
    right: 1.5rem;
    bottom: 1.5rem;
  }
}
@media (max-width: 375px) {
  .wizardBody .wizardBody__next {
    right: 0.5rem;
    bottom: 1rem;
  }
}
.wizardBody .wizardBody__prev {
  position: fixed;
  left: 3rem;
  bottom: 3rem;
}
@media (max-width: 425px) {
  .wizardBody .wizardBody__prev {
    left: 1.5rem;
    bottom: 1.5rem;
  }
}
@media (max-width: 375px) {
  .wizardBody .wizardBody__prev {
    left: 0.5rem;
    bottom: 1rem;
  }
}
.wizardBody .wizardNoGoingBackPopup {
  right: 3rem;
  bottom: 6.5rem;
  padding: 1rem;
  max-width: 400px;
}
@media (max-width: 640px) {
  .wizardBody .wizardNoGoingBackPopup {
    left: 3rem;
    right: 3rem;
    max-width: 100%;
  }
}
@media (max-width: 425px) {
  .wizardBody .wizardNoGoingBackPopup {
    left: 1.5rem;
    right: 1.5rem;
    bottom: 5rem;
  }
}
@media (max-width: 375px) {
  .wizardBody .wizardNoGoingBackPopup {
    left: 0.5rem;
    right: 0.5rem;
    bottom: 4.5rem;
  }
}
.wizardBody .wizardNoGoingBackPopup .popup__body {
  margin-block: 0.5rem;
}
.wizardBody .wizardNoGoingBackPopup footer {
  display: flex;
  justify-content: flex-end;
}
.wizardBody .humansContainer {
  margin-top: 0.5rem;
}

.wizardErrors {
  position: fixed;
  left: 3rem;
  bottom: 6.5rem;
  z-index: 10020;
}
@media (max-width: 640px) {
  .wizardErrors {
    left: 3rem;
    right: 3rem;
    max-width: 100%;
  }
}
@media (max-width: 425px) {
  .wizardErrors {
    left: 1.5rem;
    right: 1.5rem;
    bottom: 5rem;
  }
}
@media (max-width: 375px) {
  .wizardErrors {
    left: 0.5rem;
    right: 0.5rem;
    bottom: 4.5rem;
  }
}
.wizardErrors__error {
  padding: 0.75rem 1.25rem;
  font-weight: bold;
  background-color: var(--error);
  border-radius: 0.5rem;
  color: var(--white);
}
.wizardErrors__error i {
  font-size: large;
  margin-right: 0.5rem;
}

.wizardCardList {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  padding-block: 1rem;
}
.wizardCardList--limited {
  max-width: 900px;
}
.wizardCardList .wizardCard {
  width: 280px;
}
@media (max-width: 1024px) {
  .wizardCardList .wizardCard {
    width: 220px;
  }
}
@media (max-width: 640px) {
  .wizardCardList .wizardCard {
    width: 90%;
  }
}

.wizardCard {
  background-color: var(--bg-light);
  padding: 1rem 2rem;
  border-radius: 1rem;
  border: 1px solid var(--bg-dark);
  color: var(--fg);
  cursor: pointer;
  display: grid;
  grid-template-rows: min-content 1fr;
  line-height: 1.6;
}
.wizardCard:has(.wizardCard__desc) {
  grid-template-rows: 80px 80px min-content;
  align-items: center;
}
@media (max-width: 1024px) {
  .wizardCard:has(.wizardCard__desc) {
    grid-template-rows: 80px 100px min-content;
  }
}
@media (max-width: 640px) {
  .wizardCard:has(.wizardCard__desc) {
    grid-template-rows: 80px min-content min-content;
  }
}
.wizardCard input {
  display: none !important;
}
.wizardCard__title {
  text-align: center;
}
.wizardCard__desc {
  color: var(--fg-dark);
}
.wizardCard__icon {
  font-size: 64px;
  text-align: center;
  color: var(--fg);
}
.wizardCard__icon--small {
  font-size: 24px;
}
.wizardCard:has(input:checked), .wizardCard.selected {
  color: var(--primary);
  background-color: var(--primary-light);
  border-color: var(--primary);
}
.wizardCard:has(input:checked) .wizardCard__icon, .wizardCard.selected .wizardCard__icon {
  color: var(--primary);
}
.wizardCard:has(input:checked) .wizardCard__icon .fa-light, .wizardCard.selected .wizardCard__icon .fa-light {
  font-weight: 800;
}
.wizardCard:has(input:checked) .wizardCard__desc, .wizardCard.selected .wizardCard__desc {
  color: var(--primary);
}
.wizardCard:hover {
  color: var(--primary);
  border-color: var(--primary);
}
.wizardCard:hover .wizardCard__icon {
  color: var(--primary);
}
.wizardCard:hover .wizardCard__desc {
  color: var(--primary);
}

.wizardMapContainer .wizardBody__next {
  position: fixed;
  right: 3rem;
  bottom: 3rem;
  z-index: 10020;
}
@media (max-width: 425px) {
  .wizardMapContainer .wizardBody__next {
    right: 1.5rem;
    bottom: 1.5rem;
  }
}
@media (max-width: 375px) {
  .wizardMapContainer .wizardBody__next {
    right: 0.5rem;
    bottom: 1rem;
  }
}
.wizardMapContainer .wizardBody__prev {
  position: fixed;
  left: 3rem;
  bottom: 3rem;
  z-index: 10020;
}
@media (max-width: 425px) {
  .wizardMapContainer .wizardBody__prev {
    left: 1.5rem;
    bottom: 1.5rem;
  }
}
@media (max-width: 375px) {
  .wizardMapContainer .wizardBody__prev {
    left: 0.5rem;
    bottom: 1rem;
  }
}
.wizardMapContainer__inputContainer {
  position: fixed;
  top: 4.5rem;
  right: 2.75rem;
  background-color: var(--bg-light);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 0.1875rem 0.375rem 0 rgba(46, 38, 61, 0.18);
  width: 600px;
  z-index: 10020;
}
@media (max-width: 768px) {
  .wizardMapContainer__inputContainer {
    width: auto;
    overflow-y: auto;
    max-height: calc(100svh - 9rem - 5rem);
    top: 9rem;
    left: 1rem;
    right: 1rem;
  }
}
.wizardMapContainer__description {
  display: grid;
  grid-template-columns: min-content 1fr;
  align-items: center;
  margin-bottom: 1rem;
}
@media (max-width: 425px) {
  .wizardMapContainer__description {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.5rem;
  }
}
.wizardMapContainer__description i {
  font-size: 108px;
  color: var(--primary);
  transform: rotate(-12deg);
  padding-inline: 1rem;
}
.wizardMapContainer__redoBtn {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.5rem;
}
.wizardMapContainer__redoBtn .btn {
  box-shadow: unset;
}
.wizardMapContainer__visibleFields {
  margin-top: 0.5rem;
  display: grid;
  gap: 0.25rem;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 640px) {
  .wizardMapContainer__visibleFields {
    grid-template-columns: 1fr;
  }
}
.wizardMapContainer__visibleFields > span {
  grid-column-start: 1;
  grid-column-end: -1;
  margin-bottom: 0.25rem;
  padding-inline: 0.25rem;
}
.wizardMapContainer__visibleFields .field--span-2 {
  grid-column-end: -1;
  grid-column-start: 1;
}

.wizardMap {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 10000;
}
.wizardMap .leaflet-top .leaflet-control {
  margin-top: 65px;
}
.wizardMap .leaflet-left .leaflet-control {
  margin-left: 1.25rem;
}
.wizardMap .leaflet-marker-icon.leaflet-zoom-animated.leaflet-interactive.leaflet-marker-draggable {
  filter: hue-rotate(320deg);
}

.wizardFieldContainer {
  min-width: 500px;
  display: flex;
  flex-direction: column;
  color: var(--fg);
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}
.wizardFieldContainer--limited {
  max-width: 700px;
}
@media (max-width: 640px) {
  .wizardFieldContainer {
    min-width: unset;
  }
}
.wizardFieldContainer .wizardPartyIcons {
  font-size: 48px;
}
.wizardFieldContainer .wizardPartyIcons i:nth-of-type(1) {
  color: red;
}
.wizardFieldContainer .wizardPartyIcons i:nth-of-type(2) {
  color: gold;
}
.wizardFieldContainer .wizardPartyIcons i:nth-of-type(3) {
  color: green;
}
.wizardFieldContainer > p {
  color: var(--fg-dark);
  margin-top: -5px;
  text-indent: 2px;
  margin-bottom: 0.5rem;
}
.wizardFieldContainer .galleryWizard {
  padding: 0.5rem;
}

.wizardFieldContainerPayment {
  max-width: 600px;
}
@media (max-width: 768px) {
  .wizardFieldContainerPayment {
    width: 100%;
  }
}

.wizardFieldContainerFinal {
  max-width: 600px;
}
.wizardFieldContainerFinal .wizardCard:has(.wizardCard__desc) {
  grid-template-rows: 80px 120px min-content;
}
@media (max-width: 768px) {
  .wizardFieldContainerFinal {
    width: 100%;
  }
}

.wizardPaymentsList {
  display: flex;
  flex-direction: column;
  margin-top: 0.5rem;
  gap: 0.5rem;
}
.wizardPaymentsList a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 500;
}
.wizardPaymentsList.hide {
  display: none;
}
.wizardPaymentsList > p {
  grid-column-start: 1;
  grid-column-end: 3;
}

.WizardAccordionList {
  display: flex;
  flex-direction: column;
  margin-block: 0.5rem;
}
.WizardAccordionList .formAccordion__item {
  width: 700px;
}
@media (max-width: 1024px) {
  .WizardAccordionList .formAccordion__item {
    width: auto;
  }
}
.WizardAccordionList .attributeItemServices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.wizardCardListRooms {
  max-width: 1000px;
}
.wizardCardListRooms .wizardCard__title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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