.helpdesk-menu-item {
  overflow: hidden;
  display: flex;
  flex-flow: row wrap;

  height: 42px;

  color: var(--app-drawer-text-color);
  text-decoration: none;

  transition: opacity 0.2s ease;

  &:hover {
    opacity: 0.7;
  }

  &.active {
    background-color: #537679;

    .helpdesk-menu-item__text {
      color: #fff;
    }

    .helpdesk-menu-item__counter {
      .notifications {
        color: #fff;
        background-color: #537679;
      }
    }
  }

  &__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 42px;

    .notifications {
      bottom: 0;

      display: block;

      width: 6px;
      height: 6px;
      margin-top: 14px;
      margin-left: -6px;

      background-color: red;
      border: 1px solid white;
      border-radius: 6px;
    }
  }

  &__text {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 42px;
    margin-left: 0;

    color: #7c989b;
  }

  &__counter {
    display: flex;
    align-items: center;
    margin: 0 12px 0 auto;

    .notifications {
      display: flex;

      height: 16px;
      padding: 0 6px;

      font-size: small;
      font-weight: bolder;
      color: #537679;

      background-color: var(--color-gray-fff);
      border-radius: 6px;
    }
  }
}
