/*--------------------------------------------------------------------------
 CALENDAR HEADER
--------------------------------------------------------------------------*/
.calendar-header {
  width: 100%;
  text-align: center;
  padding: 8px 4px 4px 4px;
}
.calendar-header .dropdown-toggle {
  border-radius: 18px;
  margin-bottom: 6px;
  padding: 4px 12px;
  font-size: 16px;
  height: 34px;
  width: 120px;
}
.calendar-header .dropdown-menu .dropdown-item,
.calendar-header .dropdown-menu a {
  padding: 0.225rem 1.25rem;
  text-align: center;
  font-size: 14px;
  font-weight: 0;
}
.calendar-header h4 {
  padding: 0;
  margin: 4px 0 0 0;
}

/*--------------------------------------------------------------------------
 CALENDAR BODY
--------------------------------------------------------------------------*/
.calendar-body {
  color: #000;
  padding: 0 4px;
  margin-top: 10px;
}
.calendar-body .calendar-row {
  width: 100%;
  display: flex;
  font-size: 1.2em;
  justify-content: center;
}
.calendar-body .calendar-row.bordered:not(:last-child) {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(73, 114, 133, .3);
}
.calendar-body .calendar-row .calendar-item {
  width: 100%;
  text-align: center;
  padding: 6px 0 6px 0;
}
.calendar-body .calendar-row .calendar-prev,
.calendar-body .calendar-row .calendar-next {
  opacity: .3;
}
.calendar-body .calendar-row span {
  padding: 7px 10px;
  font-weight: 300;
  font-size: 16px;
}
.calendar-body .calendar-row span.header {
  font-weight: 600;
}
.calendar-body .calendar-row span.active {
  background-color: #e3e3e3;
  border-radius: 50%;
  font-weight: 500;
  cursor: pointer;
}
.calendar-body .calendar-row span.active:hover {
  background-color: #303C49;
  color: #fff;
}
@media (max-width: 768px) {
  .calendar-body .calendar-row span {
    padding: 5px 7px;
    font-size: 14px;
  }
}
