.button {
	background: transparent;
	border: 1px solid #FFF;
	box-shadow: none;
	border-radius: 5px;
  justify-content: center;
  align-items: center;
  display: flex;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  padding: 15px 20px;
	color: #FFF;
  font-size: 14px;
  font-weight: bold;
}

.button:hover {
	background: #FFF;
	color: #000;
  cursor: pointer;
}

.button:disabled {
  opacity: 0.5 !important;
}

.button:disabled:hover {
  opacity: 0.5 !important;
}

