/* [project]/node_modules/react-calendar/dist/Calendar.css [app-client] (css) */
.react-calendar {
  background: #fff;
  border: 1px solid #a0a096;
  width: 350px;
  max-width: 100%;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.125em;
}

.react-calendar--doubleView {
  width: 700px;
}

.react-calendar--doubleView .react-calendar__viewContainer {
  margin: -.5em;
  display: flex;
}

.react-calendar--doubleView .react-calendar__viewContainer > * {
  width: 50%;
  margin: .5em;
}

.react-calendar, .react-calendar *, .react-calendar :before, .react-calendar :after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.react-calendar button {
  border: 0;
  outline: none;
  margin: 0;
}

.react-calendar button:enabled:hover {
  cursor: pointer;
}

.react-calendar__navigation {
  height: 44px;
  margin-bottom: 1em;
  display: flex;
}

.react-calendar__navigation button {
  background: none;
  min-width: 44px;
}

.react-calendar__navigation button:disabled {
  background-color: #f0f0f0;
}

.react-calendar__navigation button:enabled:hover, .react-calendar__navigation button:enabled:focus {
  background-color: #e6e6e6;
}

.react-calendar__month-view__weekdays {
  text-align: center;
  text-transform: uppercase;
  font: inherit;
  font-size: .75em;
  font-weight: bold;
}

.react-calendar__month-view__weekdays__weekday {
  padding: .5em;
}

.react-calendar__month-view__weekNumbers .react-calendar__tile {
  font: inherit;
  justify-content: center;
  align-items: center;
  font-size: .75em;
  font-weight: bold;
  display: flex;
}

.react-calendar__month-view__days__day--weekend {
  color: #d10000;
}

.react-calendar__month-view__days__day--neighboringMonth, .react-calendar__decade-view__years__year--neighboringDecade, .react-calendar__century-view__decades__decade--neighboringCentury {
  color: #757575;
}

.react-calendar__year-view .react-calendar__tile, .react-calendar__decade-view .react-calendar__tile, .react-calendar__century-view .react-calendar__tile {
  padding: 2em .5em;
}

.react-calendar__tile {
  text-align: center;
  max-width: 100%;
  font: inherit;
  background: none;
  padding: 10px 6.6667px;
  font-size: .833em;
}

.react-calendar__tile:disabled {
  color: #ababab;
  background-color: #f0f0f0;
}

.react-calendar__month-view__days__day--neighboringMonth:disabled, .react-calendar__decade-view__years__year--neighboringDecade:disabled, .react-calendar__century-view__decades__decade--neighboringCentury:disabled {
  color: #cdcdcd;
}

.react-calendar__tile:enabled:hover, .react-calendar__tile:enabled:focus {
  background-color: #e6e6e6;
}

.react-calendar__tile--now {
  background: #ffff76;
}

.react-calendar__tile--now:enabled:hover, .react-calendar__tile--now:enabled:focus {
  background: #ffffa9;
}

.react-calendar__tile--hasActive {
  background: #76baff;
}

.react-calendar__tile--hasActive:enabled:hover, .react-calendar__tile--hasActive:enabled:focus {
  background: #a9d4ff;
}

.react-calendar__tile--active {
  color: #fff;
  background: #006edc;
}

.react-calendar__tile--active:enabled:hover, .react-calendar__tile--active:enabled:focus {
  background: #1087ff;
}

.react-calendar--selectRange .react-calendar__tile--hover {
  background-color: #e6e6e6;
}


/* [project]/src/app/components/modals/calendar-custom.css [app-client] (css) */
.custom-selected-day {
  transition: all .2s ease-in-out;
  transform: scale(1.05);
  box-shadow: 0 2px 4px #3b82f64d;
  color: #fff !important;
  background-color: #3b82f6 !important;
  border-radius: 5px !important;
}

.custom-selected-day abbr {
  font-weight: 600;
  color: #fff !important;
}

.react-calendar {
  padding: 8px;
  font-family: inherit;
  box-shadow: 0 4px 6px #0000000d;
  border: none !important;
  border-radius: 8px !important;
}

.react-calendar__tile:focus {
  background-color: #0000 !important;
  outline: none !important;
}

.react-calendar__tile:enabled:hover, .react-calendar__tile:enabled:focus {
  transition: all .15s;
  transform: scale(1.02);
  background-color: #dbeafe !important;
  border-radius: 5px !important;
}

.react-calendar__tile.custom-selected-day:focus, .react-calendar__tile.custom-selected-day:active {
  background-color: #3b82f6 !important;
  outline: none !important;
}

.react-calendar__tile--now {
  background-color: #eff6ff !important;
  border: 1px solid #bfdbfe !important;
  border-radius: 5px !important;
}

.react-calendar__tile:disabled, .react-calendar__tile--disabled {
  position: relative;
  color: #d1d5db !important;
  cursor: not-allowed !important;
  opacity: .5 !important;
  background-color: #f9fafb !important;
}

.react-calendar__tile:disabled abbr, .react-calendar__tile--disabled abbr {
  text-decoration: line-through;
  color: #d1d5db !important;
}

.react-calendar__tile:disabled:hover, .react-calendar__tile--disabled:hover {
  cursor: not-allowed !important;
  background-color: #f9fafb !important;
  transform: none !important;
}

.react-calendar__tile:disabled:after, .react-calendar__tile--disabled:after {
  content: "";
  pointer-events: none;
  background-image: repeating-linear-gradient(45deg, #0000, #0000 2px, #d1d5db33 2px 4px);
  border-radius: 5px;
  position: absolute;
  inset: 0;
}

.react-calendar__tile--now.custom-selected-day {
  background-color: #3b82f6 !important;
  border: 1px solid #2563eb !important;
}

.react-calendar__navigation button {
  border-radius: 5px;
  transition: background-color .2s;
}

.react-calendar__navigation button:enabled:hover, .react-calendar__navigation button:enabled:focus {
  background-color: #dbeafe !important;
}

.react-calendar__tile--now:not(.custom-selected-day) {
  font-weight: bold;
  color: #2563eb !important;
}

.react-calendar button:focus {
  outline: none !important;
}

.react-calendar__tile:not(.custom-selected-day):not(:hover):not(.react-calendar__tile--now) {
  background-color: #0000 !important;
}


/*# sourceMappingURL=_a36deec4._.css.map*/