/**
 * @file
 * Styles for Bartik's buttons.
 */

.button {
  display: inline-block;
  padding: 0.25em 1.063em;
  cursor: pointer;
  text-align: center;
  color: #fff;
  border-radius: 1em;
  background-color: #33B94D;
  font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, sans-serif;
  font-size: 0.929em;
  font-weight: normal;
  line-height: normal;
  border-style: none;
}
.button:hover,
.button:active,
.button:focus {
  text-decoration: none;
  color: #fff;
  background: #CD0962;
}
.button.is-disabled:hover,
.button.is-disabled:active,
.button.is-disabled:focus,
.button.is-disabled {
  cursor: default;
  color: #717171;
  /* border-color: #bbb; */
  background: #ededed;
}

a.button:visited {
  color: #fff;
}