.calendar-container {
  margin-top: 48px;
}

.calendar-container .no-events {
  text-align: center;
  margin: 24px 0px;
  font-style: italic;
}

.calendar-container .month-header {
  background: #1392b2;
  text-align: center;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
  font-size: 1.5em;
}

.calendar-container .month-header a {
  font-size: 1.25em;
  color: white;
  margin: 0 8px;
}

.calendar-container .month-header a:hover {
  color: white;
  font-weight: bold;
}

.calendar-container .view-event-print {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.calendar-container .view-event-print a, .calendar-container .view-event-print span {
  color: #ea4320;
  text-transform: uppercase;
  font-weight: bold;
}

.calendar-container .day-row {
  padding: 8px 0px;
  border-bottom: solid 3px #1392b2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.calendar-container .day-row .day {
  color: #1392b2;
  font-size: 30px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 140px;
          flex: 0 0 140px;
}

.calendar-container .day-row .day .actual-day {
  font-weight: bold;
  margin-right: 20px;
}

.calendar-container .day-row .events-container {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 400px;
          flex: 1 1 400px;
}

.calendar-container .day-row .event {
  padding-top: 6px;
  cursor: pointer;
  border-bottom: solid 2px #1392b2;
  width: 100%;
}

.calendar-container .day-row .event:hover {
  font-weight: bold;
}

.calendar-container .day-row .event:last-of-type {
  border-bottom-width: 0;
}

.calendar-container .day-row .event p {
  margin: 0;
}

.calendar-container .day-row .event .title {
  font-weight: bold;
  color: #1392b2;
}

.calendar-container .day-row .event .title .cancelled {
  margin-right: 10px;
  color: #ea4320;
}

.calendar-container .day-row .event .location, .calendar-container .day-row .event .time {
  font-weight: bold;
}

.calendar-container .day-row .event .excerpt p, .calendar-container .day-row .event .excerpt div, .calendar-container .day-row .event .excerpt a {
  display: inline;
}

.calendar-container .day-row .event .excerpt a {
  color: #ea4320;
}

.calendar-container .day-row .event .excerpt a:hover {
  font-weight: bold;
}
/*# sourceMappingURL=calendar.css.map */