/* -------------------------------------------- */
/* Chip Elements
/* https://tinyurl.com/226fswmh
/* -------------------------------------------- */

/* -------------------------------------------- */
/* Chip: Standard */

.oc__block .oc__element__chip {
  position: relative;
  top: 0;

  padding: var(--oc--spacing--04) var(--oc--spacing--05);

  background-color: var(--oc--color--navy-blue);
  border-radius: 4px;
  color: white;

  font-family: var(--oc--font-family--base);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.28px;
  line-height: 100%;
  text-decoration: none;

  transition: top 0.25s;
}

.oc__block .oc__element__chip:hover {
  top: -3px;
}
