#calendar {
  font-family: var(--fontf_num);
  font-weight: 600;
  background-color: #fff;
  border: 1px solid #202020;
  border-radius: 8px;
  padding: 16px 16px 4px;
}
#calendar .calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

#calendar #prev,
#calendar #next {
  border-radius: 50%;
  background-color: #eee;
  width: 32px;
  height: 32px;
  position: relative;
  border: none;
  box-shadow: none;
  appearance: none;
}
#calendar #prev::before,
#calendar #next::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border: 1px solid #202020;
  border-width: 1px 1px 0 0;
  transform: translateX(-1px) rotate(45deg);
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: 1;
}
#calendar #prev::before {
  transform: translateX(1px) rotate(225deg);
}
#calendar .js_yearMonth {
  font-size: 1.8rem;
  margin: 0;
}
#calendar .calendar-table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}
#calendar input {
  display: none;
}
#calendar th,
#calendar td {
  width: 14%;
  text-align: center;
  border: none!important;
  line-height: 1;
}
#calendar th {
  font-size: 1.25rem;
  padding: 0 0 4px;
}
#calendar td {
  font-size: 1.7rem;
  padding: 4px;
}
#calendar td label {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: grid;
  place-content: center;
  cursor: pointer;
  margin: 0;
}
#calendar th:first-child,
#calendar td:first-child {
  color: var(--color-red);
}

#calendar th:last-child,
#calendar td:last-child {
  color: royalblue;
}
.calendar-date input:checked + label,
.calendar-date .today {
  border-radius: 50%;
}
.calendar-date input:checked + label {
  background-color: #202020;
  color: fff;
}
#calendar.receive1 th:first-child,
#calendar.receive1 td:first-child,
#calendar .is-disabled {
  pointer-events: none;
  opacity: .3;
  outline: none !important;
}

