/**
 * Default clearfix implementation.
 *
 * @usage
 *    .box {
 *      @include clearfix;
 *    }
 */
/**
 * Casts a string into a number.
 *
 * @param {string} $value
 *    Tje string to cast to a number.
 * @return {$number}
 *    The value as number.
 */
/**
 * Split a string into a list of strings.
 *
 * @param {string} $string
 *    Tje string to be split.
 * @param {string} $delimiter
 *    The boundary string.
 * @return {list} $result
 *    The result list.
 */
.tag-pill {
  font-family: "Calibri", sans-serif;
  font-size: 0.78rem;
  line-height: 1.4;
  font-weight: bold;
  padding: 0.2rem 0.5rem 0.3rem 0.5rem;
  background-color: #EDEFF8;
  text-decoration: none;
  color: #444444;
  display: inline-block;
  margin-bottom: 0.25rem;
}
.tag-pill:hover, .tag-pill:focus {
  text-decoration: none;
}

a.tag-pill:hover, a.tag-pill:focus {
  color: #444444;
  text-decoration: underline;
}