/*--------------------------------------------------------------------------
 DISPLAY CALENDAR
--------------------------------------------------------------------------*/
.display-calendar {
  color: #000;
  padding: 0 4px;
  margin-top: 10px;
}
.display-calendar .display-calendar-row {
  width: 100%;
  display: flex;
  font-size: 1.2em;
  justify-content: center;
}
.display-calendar .display-calendar-row.bordered:not(:last-child) {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(73, 114, 133, .3);
}

/*--------------------------------------------------------------------------
 DISPLAY CALENDAR TABLE
--------------------------------------------------------------------------*/
.display-calendar-table {
  width: 100%;
  margin: 0 0 12px 0;
  padding: 0;
}
.display-calendar-table table {
  clear: both;
  width: 100%;
  border-collapse: collapse;
  color: #444;
}
.display-calendar-table table thead th {
  border-right: 1px solid #ccc;
  text-align: center;
  padding: 8px 4px;
}
.display-calendar-table table thead tr {
  border-top: 1px solid #ccc;
}
.display-calendar-table table thead th:last-child,
.display-calendar-table table tbody td:last-child {
  border-right: 0;
}
.display-calendar-table table tbody tr {
  border-top: 1px solid #ccc;
}
.display-calendar-table table tbody td {
  border-right: 1px solid #ccc;
  padding: 4px;
}
.display-calendar-table table thead th.weekend,
.display-calendar-table table tbody td.weekend {
  background-color: #fafafa;
}

/*--------------------------------------------------------------------------
 DISPLAY CALENDAR ITEM
--------------------------------------------------------------------------*/
.display-calendar-item {
  width: 100%;
  text-align: center;
  padding: 6px 0 6px 0;
}
.display-calendar-prev,
.display-calendar-next {
  opacity: .3;
}
.display-calendar-item span {
  display: inline-block;
  padding: 7px 10px;
  font-weight: 300;
  font-size: 16px;
  width: 36px;
}
.display-calendar-item span.header {
  font-weight: 600;
}
.display-calendar-item span.active {
  background-color: #e3e3e3;
  border-radius: 50%;
  font-weight: 500;
}
.display-calendar-item span.current {
  background-color: #7E8A98;
  border-radius: 50%;
  font-weight: 500;
  color: #ffffff;
}
.display-calendar-item span.active:hover {
  background-color: #303C49;
  color: #fff;
}
.display-calendar-item span.current:hover {
  background-color: #303C49;
  color: #fff;
}

/*--------------------------------------------------------------------------
 DISPLAY CALENDAR SCREEN/MOBILE
--------------------------------------------------------------------------*/
.display-calendar-process {
  display: none;
}
.display-calendar-process.active {
  display: block;
}

/*--------------------------------------------------------------------------
 DISPLAY CALENDAR SCREEN/MOBILE
--------------------------------------------------------------------------*/
.display-calendar-screen {
  display: block;
}
.display-calendar-mobile {
  display: none;
}
@media (max-width: 762px) {
  .display-calendar-screen {
    display: none;
  }
  .display-calendar-mobile {
    display: block;
  }
}


