.payment-count {
  display: none;
}

@media (max-width: 760px) {
  .calendar-day.has-payment .payment-chip,
  .calendar-day.has-payment .more-payments {
    display: none;
  }

  .calendar-day.has-payment .payment-count {
    position: absolute;
    right: 4px;
    bottom: 4px;
    display: grid;
    place-items: center;
    min-width: 23px;
    height: 16px;
    padding: 0 4px;
    border-radius: 5px;
    background: #b9e8bb;
    color: #176044;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
  }

  .calendar-day.has-payment.selected .payment-count {
    background: #8fce95;
    color: #123d2a;
  }
}
