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

	Buttons
	components.buttons.css

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

.ou-button {
  background-color: #4d4d4d;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 15px;
  display: inline-block;
  margin: 0 5px 15px 0;
  cursor: pointer;
  border: 0;
  text-align: center;
  line-height: 120%;
}

.ou-button--primary,
.ou-button--primary:visited {
  background-color: #e21481;
}

.ou-button--secondary,
.ou-button--secondary:visited {
  background-color: #333;
}

.ou-button--success,
.ou-button--success:visited {
  background-color: #008a00;
}

.ou-button--warning,
.ou-button--warning:visited {
  background-color: #cd2041;
}

.ou-button--disabled,
button:disabled {
  background-color: #737373;
  color: #fff;
  cursor: not-allowed;
  opacity: 0.7;
}

.ou-button--disabled:hover,
button:disabled:hover {
  background-color: #737373;
  color: #fff;
  cursor: not-allowed;
  opacity: 0.7;
}

.ou-button--block {
  display: block;
  margin-right: 0;
  width: 100%;
}

.ou-button--more {
  background-color: #fff;
  border: 1px solid #737373;
  padding: 5px 10px;
  font-size: 0.9em;
  font-weight: normal;
  color: #039;
}

.ou-button:hover {
  background-color: #000 !important;
  color: #fff;
  text-decoration: none;
}

.ou-button--more:hover {
  background-color: #fff !important;
  border: 1px solid #e21481;
  color: #000;
}

.ou-button--disabled:hover {
  background-color: #737373 !important;
  color: #fff;
  cursor: not-allowed;
}

.ou-button:visited {
  color: #fff;
}

.ou-button--more:visited {
  color: #039;
}
