@charset "utf-8";

.calendar {
  background: #FFF;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 5px rgba(0,0,0,.075);
}
.calendar table {
  caption-side: top;
  width: 100%;
}
.calendar table caption {
  padding: 0;
}
.calendar table caption > div {
  display: flex;
  justify-content: space-between;
  padding: 0 8px;
}
.calendar table caption .year {
  font-size: 13px;
}
.calendar table caption .month {
  font-size: 18px;
  padding-left: 5px;
}
.calendar table caption a {
  cursor: pointer;
}
.calendar table caption .prev-month > i,
.calendar table caption .next-month > i{
  display: none;
}
.calendar table caption .prev-month {
  background-image: url("../img/chevron_left_sm.svg");
  display: block;
  width: 19px;
  height: 19px;
}
.calendar table caption .next-month {
  background-image: url("../img/chevron_right_sm.svg");
  display: block;
  width: 19px;
  height: 19px;
}
.calendar table th {
  text-align: center;
  padding: 12px 0;
  font-size: 12px;
  color: #B7BEC5;
  font-weight: normal;
  width: 14%;
}
.calendar table td {
  text-align: center;
  padding: 4px 0;
  font-size: 18px;
  color: #4C565F;
}
.calendar table td > div {
  cursor: pointer;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  box-sizing: border-box;
  padding-top: 4px;
  margin: auto;
}
.calendar table th:first-child,
.calendar table td:first-child {
  color: #DF8685;
}
.calendar table td.selected > div {
  background: #4FDB99;
  color: #FFF;
}