.button,
button {
  display: inline-block;
  padding: 6px 20px;
  background: transparent;
  border: 2px solid #bff747;
  color: #bff747;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 30px;
  font-weight: 700;
  border-radius: 5px;
  margin-right: 10px;

  cursor: pointer !important;

  transition: all 0.3s ease-in-out;
}

.button--danger {
  border-color: red;
  color: red;
}

.button--danger:hover {
  background: red !important;
  color: #fff;
}

.button:hover,
button:hover {
  border: 1px solid #bff747 !important;
  color: #fff !important;
  background: #bff747 !important;
}
