/* ICONS */

.icon {
  width: 16px;
  height: 16px;
  stroke: var(--color-black);
	fill: none;
	stroke-width: 1.5px;
	stroke-linecap: round;
	stroke-linejoin: round;

  &.small {
    width: 12px;
    height: 12px;
  }

  &.inline {
    display: inline-block;
    margin-right: 4px;
    vertical-align: text-top;
  }

  svg {
    display: block;
    width: 100%;
    height: 100%;
  }

}

/* BADGES */

.badge-wrapper {
  position: absolute;

  &.large {
    bottom: -7px;
    left: 8px;
  }

  &.small {
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
  }

  &.small .badge {
    width: 4px;
    height: 4px;
  }

  &.large .badge {
    min-width: 14px;
    height: 14px;
  }

  .badge {
    position: static;
    border-radius: var(--radius-round);
    background-color: var(--color-surface-badge);
  }

}

p.badge-content {
  display: inline-block;
  min-width: 14px;
  height: 14px;
  font-size: var(--font-size-1);
  line-height: var(--line-height-body-trimmed);
  font-weight: 700;
  text-align: center;
  color: #FFFFFF;
  padding-top: 0;
  padding-right: 3px;
  padding-left: 3px;
  margin-bottom: 0;
  transform: translateY(4px);
  vertical-align: top;
}
