.fizz-calendar {
  font-size: $text-small-font-size;
  line-height: $text-small-line-height;
  text-align: center;
}
.fizz-calendar caption {
  font-weight: $font-weight-semibold;
  white-space: nowrap;
  margin-bottom: $spacing-12;
  font-size: $text-medium-font-size;
  line-height: $text-medium-line-height;
}
.fizz-calendar th {
  font-weight: $font-weight-semibold;
}
.fizz-calendar td {
  padding: $spacing-8;
}
.fizz-calendar .fizz-is-active {
  background-color: $color-background-highlight;
  border-radius: $border-radius-medium;
}
.fizz-calendar .fizz-is-highlighted {
  font-weight: $font-weight-semibold;
  color: $color-text-link;
  position: relative;
}
.fizz-calendar .fizz-is-highlighted:after {
  content: "";
  display: block;
  height: $spacing-4;
  width: $spacing-4;
  background-color: $color-background-brand-secondary;
  border-radius: 50%;
  margin: 0 auto;
  position: absolute;
  left: calc(50% - 2px);
  bottom: $spacing-4;
}