/**
 * @file
 * Buttons.
 */

.button {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.25rem;
}

.button--extra {
  background-color: var(--base-color-extra);
}

.button--extra:hover {
  background-color: var(--base-color-extra-hover);
}

.button--account {
  height: 2.75rem;
  line-height: 2.75rem;
}

.button--disabled,
.button--disabled:hover {
  background-color: var(--color-gray);
  cursor: default;
}

@media screen and (max-width: 576px) {
  .button {
    font-size: 1rem;
  }
}
