/*
 * DO NOT EDIT THIS FILE.
 * See the following change record for more information,
 * https://www.drupal.org/node/3084859
 * @preserve
 */

/**
 * @file
 * Badge styles.
 */

.item-count {
  background: var(--color--gray-45);
  color: var(--color-text-light);
  display: inline-block;
  font-size: 0.625rem;
  font-weight: bold;
  line-height: 0.75rem;
  margin-inline-start: 0.5rem;
  padding: 2px 0.3125rem 2px;
  position: relative;
}

.item-count:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--color--gray-45);
}
