.notifications-label, 
.notifications-label-mobile {
  display: none;
}
@media screen and (max-width: 1024px) {
  .notifications-label-mobile {
    display: inline-block;
    color: #456D2B;
    width: 2rem;
    margin-left: 0.25rem;
    padding: 0; 
    text-align: center;
    white-space: nowrap
  }
  .nav__items .ui-menu-list a.ui-menuitem-link .ui-menuitem-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 1025px) {
  .notifications-label {
    display: block;
    background: #456D2B;
    width: 2rem;
    margin: 0.25rem auto;
    padding: 0.25rem;
    color: #fff;
    font-size: 0.75rem;
    border-radius: 0.25rem;
    line-height: 1;
    height: 1.25rem;
    white-space: nowrap;
  }
}