.button {
  border: 1px solid var(--dark-vanilla);
  padding: var(--xtiny) var(--xsmall);
  border-radius: var(--tiny);
  display: inline-block;
  background-color: var(--lighten-15-dark-vanilla);
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  vertical-align: middle;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  span svg {
    transition: color 0.15s ease-in-out;
    color: var(--grey-dark);
  }
  color: var(--grey-dark);

  &:hover {
    background-color: white;
    text-decoration: none;
    box-shadow: 0 1px 4px 0 var(--darken-15-dark-vanilla);
    & span svg {
      color: var(--dark-jellybean-red);
    }
  }
}

button                  .show-when-disabled { display: none; }
button[disabled]        .show-when-disabled { display: initial; }

button                  .show-when-enabled { display: initial; }
button[disabled]        .show-when-enabled { display: none; }
