.calendar-month {
  display: none;
  position: relative;
  background-color: #fff;
  border: solid 1px #001e41;
}
@media (min-width: 768px) {
  .calendar-month {
    display: block;
  }
}
.calendar-month ol,
.calendar-month li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.calendar-month-header {
  display: flex;
  justify-content: space-between;
  background: #FFFFFF;
  padding: 10px;
}
.calendar-month-header a {
  color: #222222;
  text-decoration: underline;
  text-decoration-color: #FF671D;
  text-decoration-thickness: 5px;
  text-decoration-skip-ink: none;
}
.calendar-month-header a:hover {
  text-decoration-color: #011E41;
}
.calendar-month-header-selected-month {
  font-size: 24px;
  font-weight: 600;
}
.calendar-month-header-selectors {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.calendar-month-header-selectors > * {
  cursor: pointer;
}
.calendar-month-header-selectors > *:hover {
  background-color: #001e41;
  color: white;
}
.day-of-week {
  color: #000;
  font-size: 18px;
  background: #FFFFFF;
  padding-bottom: 5px;
  padding-top: 10px;
}
.day-of-week,
.days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.day-of-week > * {
  text-align: center;
  padding-right: 5px;
}
.days-grid {
  height: 100%;
  position: relative;
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  border-top: solid 1px #001e41;
}
.calendar-day {
  position: relative;
  height: 5.2vh;
  font-size: 16px;
  background-color: #fff;
  color: #000;
  padding: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.calendar-day p {
  margin: 0;
}
.calendar-day:not(.calendar-day--not-current, .calendar-day--passed):hover {
  color: white !important;
  background-color: #001e41 !important;
  text-decoration: none;
  border: none;
}
.calendar-day--not-current {
  background-color: #F2F2F2;
  color: #A2A2A2;
}
.calendar-day--passed {
  color: #A2A2A2;
}
.calendar-day--today {
  border: 5px solid #F4B223;
  color: black;
}
.calendar-day--today > span {
  color: #fff;
}
.calendar-day--selected {
  background-color: #E65300 !important;
  color: white !important;
  border: none;
}
#date-selector {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #A2A2A2;
  width: 100%;
  z-index: 1;
}
