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

.button {
    display: inline-block;
    cursor: pointer;
    text-align: center;
    background-color: #f79430;
    color: #fff;
    font-size: 16px;
    padding: 7px 30px;
    cursor: pointer;
    border: 0;
}
.button:hover,
.button:active,
.button:focus {
  text-decoration: none;
  color: #5a5a5a;
  background: #dedede;
}
.button.is-disabled:hover,
.button.is-disabled:active,
.button.is-disabled:focus,
.button.is-disabled {
  cursor: default;
  color: #717171;
  border-color: #bbb;
  background: #ededed;
}
