.button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0.1rem solid #0056d7;
  border-radius: 0.5rem;
  background: #0056d7;
  cursor: pointer;
  padding: 0.6rem;
  max-width: 100%;
  text-decoration: none;
  line-height: 1;
  color: #fff;
  font-weight: 500;
}
.button--disabled, .button:disabled {
  border-color: #959595;
  background-color: #959595;
  cursor: not-allowed;
}
.button--red {
  border-color: #d8222a;
  background: #d8222a;
}
.button--large {
  padding: 0.7em 3em;
  min-height: 3em;
  font-size: 1.2rem;
}
.button--open {
  background-color: #fff;
  color: #0056d7;
}
.button--open.button--disabled {
  background-color: #fff;
  color: #959595;
}
.button--open.button--red {
  background-color: #fff;
  color: #d8222a;
}
.button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  width: 1rem;
  height: 1rem;
}
.button__icon svg {
  width: 100%;
  height: 100%;
  fill: currentcolor;
}

/*# sourceMappingURL=button.css.map */
