.strip-stickers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  .strip-sticker {
    padding: 4px 12px;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    &--green {
      background: $green-light;
    }

    &--yellow {
      background: $yellow;
    }

    &--blue {
      background: $blue-badge;
    }

    &--blue-dark {
      background: $pacific-depths;
    }

    &--red {
      background: $red;
    }

    &--text-gray {
      color: $gray-dark;
    }

    &--text-white {
      color: $white;
    }
  }

  &--right {
    justify-content: flex-end;
  }
}
