.cal-wrap {
  border: 1px solid var(--bs-gray-300);
}

.cal-month {

}

.cal-hd {
  display: flex;
  justify-content: space-between;
  margin: 0 -15px;
  padding: 15px 10px;
}
.cal-hd .cal-mth-ttl {
  text-align: center;
  font-size: 20px;
}
.cal-hd a, .cal-blk {
  height: 30px;
  width: 30px;
}
.cal-hd a {
  text-align: center;
  color: var(--accent-main);
  border-radius: 15px;
}
.cal-hd a:hover {
  color: var(--light-bg);
  background: var(--accent-main);
}
.cal-row {

}

.cal-row:last-child {
}
.cal-col {
  padding: 5px;
  line-height: 1.25;
  text-decoration: none;
  cursor: default;
  position: relative;
  text-align: center;
}
.cal-col:nth-child(7) {

}
.cal-row:not(.cal-wkd-ttl) .cal-col {
  min-height: 70.5px;
}
.cal-row:not(.cal-wkd-ttl) .cal-col.valid {
  background: #fff;
  cursor: pointer;
}
.cal-wkd-ttl .cal-col {
  font-size: 16px;
  font-weight: 600;
  padding-top: 15px;
  color: var(--bs-gray-500);
}
.cal-date {
  font-size: 16px;
  font-weight: 500;
  height: 30px;
  width: 30px;
  border-radius: 15px;
  padding-top: 4.75px;
  margin: 0 auto 3px;
  color: var(--bs-gray-500);
}
.valid .cal-date {
  color: var(--bs-gray-700);
  background: var(--bs-gray-200);
}
.valid:hover .cal-date {
  color: #fff;
  background: var(--accent-main);
}
.cal-price {
  color: var(--accent-dark);
  font-size: 11px;
}
.cal-hover {
  position: absolute;
  left: 0;
  top: 100%;
  display: none;
  box-shadow: 0 0 60px 0 rgba(6,30,98,.08);
  background: #fff;
  z-index: 10;
  padding: 15px;
  font-size: 13px;
  width: 200px;
  color: var(--dark-gray);
}
.valid:hover .cal-hover {
  display: block;
}
.cal-h-info {
  margin-bottom: 5px;

}
.cal-h-info i {
  color: var(--accent-main);
  margin-right: 3px;
  width: 12.5px;
}
.cal-h-info i.fa-check {
  color: var(--bs-teal);
}
.cal-h-row {
  display: flex;
}
.cal-h-row .a {
  font-weight: 500;
  min-width: 40px;
}
.cal-h-row .b::before {
  content: ":  ";
}
@media screen and (max-width: 768px) {  
  .cal-col:nth-child(n+5) .cal-hover {
    right: 0;
    left: unset;
  }
}
@media screen and (min-width: 768px) {  
  .cal-col {
    padding: 5px 15px;
  }
  .cal-price {
    font-size: 14px;
  }
  .cal-date {
    height: 36px;
    width: 36px;
    border-radius: 18px;
    padding-top: 8px;
  }
}