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

.button {
  display: inline-block;
  width: max-content;
  padding: 25px 30px;
  cursor: pointer;
  text-align: center;
  color: #3a3a3a;
  border: none;
  background-color: #fff;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-weight: normal;
  line-height: normal;
  margin: 0;
  border: 4px solid transparent;
  transition: 0.2s;
}
.button.edit-aktionen-submit {

  background-color: $primary-color;
}
.button:hover,
.button:active,
.button:focus {
  text-decoration: none;
  color: #fff;
  background: none;
  border: 4px solid #fff
}
.button.is-disabled:hover,
.button.is-disabled:active,
.button.is-disabled:focus,
.button.is-disabled {
  cursor: default;
  color: #717171;
  border-color: #bbb;
  background: #ededed;
}
