.month-box {
  $g: &;
  flex: 0 0 auto;
  padding: $margin-normal 0;
  min-width: 72px;
  text-align: center;
  background-color: $color-beige-200;
  border-radius: $margin-half;
  margin-right: $margin-half;
  white-space: nowrap;
  display: flex;
  align-content: center;
  align-items: center;
  flex-grow: 1;
  cursor: pointer;

  &.blue {
    background-color: $color-blue-200;
    /* stylelint-disable selector-class-pattern */
    .month-box__value {
      color: $color-blue-450;
    }
    /* stylelint-enable */
  }

  &__value {
    display: block;
    text-transform: uppercase;
    font-weight: bold;
    color: $color-grey;
    width: 100%;
    text-align: center;

    span {
      display: block;
    }

    @at-root {
      #{$g}.selected #{$g}__value {
        color: $color-white;
      }
    }
  }

  &:last-child {
    margin-right: 0;
  }

  &.selected {
    background-color: $color-red-300;
    color: $color-white;
  }
}
