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

.button {
  background-color: #1CC1DE;
  /* background-image: -webkit-linear-gradient(top, #f3f3f3, #e8e8e8);
  background-image: linear-gradient(to bottom, #f3f3f3, #e8e8e8); */
  border: 1px solid #1CC1DE;
  border-bottom-color: #1CC1DE;
  border-left-color: #1CC1DE;
  border-right-color: #1CC1DE;
  color: #ffffff;
  cursor: pointer;
  /*font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, sans-serif;*/
  font-size: 0.929em;
  font-weight: normal;
  text-align: center;
  padding: 0.250em 1.063em;
  border-radius: 1em;
  display: inline-block;
  line-height: normal;
}
.button:hover,
.button:active,
.button:focus {
  background: #1CC1DE;
  color: #ffffff;
  text-decoration: none;
}
.button.is-disabled:hover,
.button.is-disabled:active,
.button.is-disabled:focus,
.button.is-disabled {
  background: #ededed;
  border-color: #bbb;
  color: #717171;
  cursor: default;
}

.contact-message-feedback-form input.button.form-submit:hover, .contact-message-feedback-form input.button.form-submit:focus{
    background: #1CC1DE;
}
