button, .button, input[type=button] {
  display: inline-block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none !important;
  height: 2.5rem;
  border-radius: 0.25rem;
  margin: 0.25rem;
  color: var(--c-s-button);
  background: var(--c-s-button-bg);
  box-sizing: border-box;
  line-height: 2.25rem;
  letter-spacing: 0;
  font-size: var(--font-size-base);
  font-weight: 700;
  text-transform: capitalize;
  padding: 0 1rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

button:focus, .button.focus, input[type=button]:focus, [role=button]:focus {
  outline: none;
  box-shadow: inset 0 0 0 0.094rem var(--c-focus);
}

button:enabled:hover, .button:enabled:hover, input[type=button]:enabled:hover {
  outline: none;
  color: var(--c-p-button-bg);
  background: var(--c-hover);
}

button:enabled:active, .button:enabled:active, input[type=button]:enabled:active {
  color: var(--c-p-button);
  background-color: var(--c-p-button-bg);
  box-shadow: none;
  border: none;
  outline: none;
}

button:disabled, .button:disabled, input[type=button]:disabled {
  background-color: var(--c-disabled);
}

/*Primary*/
button.primary, .button.primary, input[type=button].primary {
  background-color: var(--c-p-button-bg);
  border: unset;
  color: var(--c-p-button);
  opacity: 1;
}

button.primary:hover, .button.primary:hover, input[type=button].primary:hover {
  background-color: var(--c-p-button-bg);
  color: var(--c-p-button);
  opacity: 0.8;
}

button.primary:disabled, .button.primary:disabled, input[type=button].primary:disabled {
  background-color: var(--c-disabled);
  border: none;
}

/* Secondary */
button.secondary, .button.secondary, input[type=button].secondary {
  background-color: transparent;
  box-shadow: inset 0 0 0 0.094rem var(--c-s-button);
  outline: none;
  border: none;
  color: var(--c-s-button);
}

/* Alternative */
button.aux, .button.aux, input[type=button].aux {
  background-color: transparent;
  outline: none;
  border: none;
  color: var(--c-s-button);
}

button.aux:enabled:hover, .button.aux:enabled:hover, input[type=button].aux:enabled:hover {
  background: var(--c-s-button-bg);
  outline: none;
}


