.tui-expander {
  display: flex;
  align-items: center;

  &:before,
  &:after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background: $color-blue-300;
  }

  .pictogram {
    margin: 0 $margin-normal;
  }
}

.strike-text {
  display: block;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  margin: 0;

  > span {
    position: relative;
    display: inline-block;
    @include font-size(16);

    &:before,
    &:after {
      content: '';
      position: absolute;
      top: 50%;
      width: 9999px;
      height: 1px;
      background: $color-blue-200;
    }

    &:before {
      right: 100%;
      margin-right: $margin-normal;
    }

    &:after {
      left: 100%;
      margin-left: $margin-normal;
    }
  }
}

.show-more-items-strike-text {
  > span {
    @include font-size(18);
    font-weight: bold;
    color: $color-link-blue;
    cursor: pointer;

    &:before,
    &:after {
      background: $color-beige-300;
    }

    .pictogram {
      height: 24px;
      width: 24px;
      vertical-align: bottom;
    }
  }

  &.grey > span {
    @include font-size(16);
    color: $color-grey;
    font-weight: normal;
  }
}
