.c-topic-shortcuts {
  @include inuit-font-size(14px);
  min-height: 40px;
  padding: $spacing--small 0 0 0;
  display: none;
  align-items: center;

  @include mq(tablet) {
    display: inline-flex;
  }

  &:hover {
    cursor: default;
  }

  &__button {
    @extend .o-text-link;
    &--re-enter {
      span {
        animation: fadeInLeft 200ms;
      }
    }
  }

  &__list {
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
    line-height: 1rem;
    display: none;
    &--visible {
      display: flex;
      @include fadeInLeftItems(li, 10);
    }
  }

  &__item {
    display: inline-flex;
    align-items: center;
    margin: 0;
    line-height: 1rem;
    border-right: 1px solid $brand-grey--light;
    padding: 0 $spacing--small 0 $spacing--small;
    position: relative;

    &:first-child {
      padding-left: 0;
    }

    &:last-child {
      border-right: 0;
    }
  }

  &__count {
    color: $brand-color--secondary;
    margin-left: $spacing--small / 2;
    @include font-size(16px, 16px);
  }

  &__item-link {
    box-shadow: none;
    display: flex;
    align-items: center;

    &:hover,
    &:focus,
    &:active {
      .c-content-type-badge {
        border-width: 1px;
      }
    }
  }

  &__tooltip {
    display: block;
    position: absolute;
    top: -2.5em;
    left: -1em;
    width: 200px;
    line-height: 1rem;
    text-align: center;
    font-weight: 600;
    color: $white;
    background-color: $brand-color;
    padding: $spacing--small / 2;
  }
}
