/**
 * @file
 * Visual styles for buttons.
 */

.button,
.image-button {
  margin-right: 1em;
  margin-left: 1em;
}

.button:first-child,
.image-button:first-child {
  margin-right: 0;
  margin-left: 0;
}

/* ----------------------------------------------------------------------------------*/

#block-testiframe .button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 10px;
  width: 140px;
  height: 26px;
  box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  margin: 0 auto;
  text-decoration: none;
  font-weight: 500;
  background-image: none;
}

/* .button.button-yellow.webform-dialog.webform-dialog-normal {
	margin-left: 3rem !important;
} */

.button-grey {
    background: #888888;
    color: #ffffff;
}

.button-grey:hover {
  background: #727272;
}

.button-grey:active {
  background: #595959;
}

.button-grey a {
	text-decoration: none;
	color: #ffffff;
}

.button-yellow {
  background: #FBC000;
  color: #202020;
}

.button-yellow:hover {
  background: #FFD342;
}

.button-yellow:active {
  background: #B68B00;

}











