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

.button {
  display: inline-block;
  padding: 1em 5em;
  cursor: pointer;
  text-align: center;
  float: right;
  color: #FFFFFF;
  border: 0;
  border-radius: 0.3em;
  background-color: #333333;
  font-size: 1em;
  font-weight: normal;
  line-height: normal;
}
.button:hover,
.button:active,
.button:focus {
  text-decoration: none;
  background: #060505;
}
.button.is-disabled:hover,
.button.is-disabled:active,
.button.is-disabled:focus,
.button.is-disabled {
  cursor: default;
  color: #717171;
  background: #ededed;
}
