/*
1 colore bottone
2 bordo/hover
3 testo
*/
/*
1 colore bottone
2 bordo/hover
3 testo
*/
.fc {
  --fc-button-text-color: var(--white);
  --fc-button-bg-color: var(--secondary);
  --fc-button-border-color: var(--secondary-dark);
  --fc-button-hover-bg-color: var(--secondary-dark);
  --fc-button-hover-border-color: var(--secondary-dark);
  --fc-button-active-bg-color: var(--secondary-dark);
  --fc-button-active-border-color: var(--secondary-dark);
}
.fc .fc-day .fc-daygrid-day-frame {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  min-height: 100px;
}
.fc .fc-day.fc-day-past {
  cursor: not-allowed;
  background-color: var(--bg-dark);
}
.fc .fc-day:not(.fc-day-past) {
  cursor: pointer;
  background-color: var(--bg-light);
}
.fc .fc-day.AllUnavailable {
  background-color: color-mix(in srgb, var(--error) 40%, transparent);
}
.fc .fc-day.UnitBooked {
  background-color: color-mix(in srgb, var(--info) 40%, transparent);
}
.fc .fc-day .fc-daygrid-day-top {
  position: absolute;
  top: 2px;
  left: 6px;
  font-weight: bold;
  font-size: 18px;
}
@media (max-width: 768px) {
  .fc .fc-day .fc-daygrid-day-top {
    position: initial;
    display: flex;
    justify-content: center;
    width: 100%;
    font-size: 16px;
  }
}
.fc .fc-day .dayCustomData {
  display: flex;
  gap: 0.25rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.fc .fc-day .dayCustomData .unitPrice {
  font-size: 18px;
}
@media (max-width: 768px) {
  .fc .fc-day .dayCustomData .unitPrice {
    font-size: small;
  }
}
.fc .fc-day .dayCustomData .unitCounters {
  display: flex;
  gap: 1rem;
}
.fc .fc-day .dayCustomData .unitIcsInfo {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1024px) {
  .fc .fc-day .dayCustomData .unitIcsInfo {
    font-size: small;
  }
}
@media (max-width: 640px) {
  .fc .fc-day .dayCustomData .unitIcsInfo span {
    display: none;
  }
}
.fc .fc-day .dayCustomData .unitIcsInfo__summary {
  font-size: 13px;
  color: var(--fg-light);
}
@media (max-width: 1280px) {
  .fc .fc-day .dayCustomData .unitIcsInfo__summary {
    display: none;
  }
}
.fc .fc-day .fc-daygrid-day-events {
  display: none;
}
.fc .fc-view-harness {
  min-height: 290px;
}
.fc .fc-multimonth .fc-day .dayCustomData .unitCounters,
.fc .fc-multimonth .fc-day .dayCustomData .unitIcsInfo {
  display: none;
}
.fc .fc-button {
  border-radius: 0.5rem;
}

@media (max-width: 640px) {
  .fc .fc-toolbar {
    flex-direction: column;
    gap: 0.25rem;
    font-size: 12px;
  }
}

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