/* ==========================================================================
   Component: Badge
   ========================================================================== */

.c-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 1rem;
  padding: 0 0.5em;
  border-radius: 10px;
  color: white;
  font-size: var(--font-xs);
  font-weight: normal;
  white-space: nowrap;
  vertical-align: middle;
}

.c-badge--required {
  background-color: var(--primary-color);
}

.c-badge--optional {
  background-color: #7fbee7;
}
