button,
.button,
.button-outline,
.cta_button {
  cursor: pointer;
  display: inline-block;
  font-size: font-size: 1rem;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.button-outline:disabled,
.cta_button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

button:hover,
button:focus,
.button:hover,
.button:focus,
.button-outline:hover,
.button-outline:focus,
.cta_button:hover,
.cta_button:focus {
  text-decoration: none;
  -webkit-transform: scale3d(0.96, 0.96, 1.01);
  transform: scale3d(0.96, 0.96, 1.01);
}

button:active,
.button:active,
.button-outline:active,
.cta_button:active {
  text-decoration: none;
}