:is(button,
a.button,
.wp-element-button,
input[type=reset],
input[type=submit],
input[type=button]) {
  appearance: none;
  display: inline-block;
  font-size: 0.9em;
  line-height: 1.1;
  padding: var(--pointer_target-padding);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.12s ease;
  border-radius: var(--corner_radius-regular);
  border: none;
  background-color: var(--colour-links);
  color: white;
  margin-top: 0.6em;
  margin-right: 0.6em;
  vertical-align: middle;
  font-family: inherit;
  /* Kill phantom spacing and dotted*/
  /* border that appears in Firefox.*/
}
:is(button,
a.button,
.wp-element-button,
input[type=reset],
input[type=submit],
input[type=button]):hover {
  color: white;
  background: rgb(32, 89, 152);
}
:is(button,
a.button,
.wp-element-button,
input[type=reset],
input[type=submit],
input[type=button]):focus {
  color: white;
  outline: solid 2px rgba(44, 118, 201, 0.5);
}
:is(button,
a.button,
.wp-element-button,
input[type=reset],
input[type=submit],
input[type=button]):active {
  box-shadow: inset rgba(0, 0, 0, 0.25) 0 1px 2px 0;
  border-color: #999 #bbb #ddd;
}
:is(button,
a.button,
.wp-element-button,
input[type=reset],
input[type=submit],
input[type=button])::-moz-focus-inner {
  border: 0;
  padding: 0;
}
:is(button,
a.button,
.wp-element-button,
input[type=reset],
input[type=submit],
input[type=button]).outlined,
:is(button,
a.button,
.wp-element-button,
input[type=reset],
input[type=submit],
input[type=button]) .is-style-outline > .wp-element-button {
  background: none;
  border: solid 1px var(--colour-links);
  box-shadow: none;
  color: var(--colour-links);
}
:is(button,
a.button,
.wp-element-button,
input[type=reset],
input[type=submit],
input[type=button]).text {
  background: none;
  color: var(--colour-links);
  border: none;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
}

.wp-block-button {
  display: inline-block;
}

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