#selectMonthBar > a {
  --bs-btn-color: rgb(133,135,150);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #4262be;
  --bs-btn-hover-border-color: #3e5cb2;
  --bs-btn-focus-shadow-rgb: 105, 136, 228;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #3e5cb2;
  --bs-btn-active-border-color: #3b56a7;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.clearfix::after, .calendar ol::after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.calendar {
  border-radius: 10px;
}

.month {
  font-size: 2rem;
}

@media (min-width: 992px) {
  .month {
    font-size: 3.5rem;
  }
}

.calendar ol li {
  float: left;
  width: 18.59999%;
}

.calendar .day-names {
  border-bottom: 1px solid #eee;
}

.calendar .day-names li {
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.calendar .days li {
  border-bottom: 1px solid #eee;
  min-height: 10.5rem;
}

.calendar .days li.noAudit {
  min-height: 5rem;
}

.calendar .days li.today .date {
  border-top: 3px solid rgb(78,115,223);
  margin-top: -1px;
}

.calendar .days li.today .date span {
  font-weight: bold;
  color: rgb(78,115,223);
}

.calendar ol li.weekend, .calendar .days li.weekend {
  width: 3.5%;
}

.calendar .days li.holiday .date span {
  color: red;
}

.calendar .days li .date {
  margin: 0.3rem 0 0.2rem 0;
}

.calendar .days li .date span.holiday-name {
  font-size: 14px;
}

.calendar .days li .event {
  font-size: 0.85rem;
  padding: 0rem 0.3rem 0rem 0.3rem;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 0.4rem;
  margin-bottom: 1.5px;
  cursor: pointer;
}

.calendar .days li .event.span-2 {
  width: 200%;
}

.calendar .days li .event.begin {
  border-radius: 1rem 0 0 1rem;
}

.calendar .days li .event.end {
  border-radius: 0 1rem 1rem 0;
}

.calendar .days li .event.more {
  margin-top: 8px;
}

/* .calendar .days li:nth-child(n + 29) {
  border-bottom: none; 
} */

.calendar .days li.outside .date {
  color: #ddd;
}

