/* Buttons */
.button {
	border: none;
	outline: 0;
	display: inline-block;
	padding: 8px;
	color: #000000;
	background-color: #65b646;
	text-align: center;
	cursor: pointer;
	outline:0 none !important;
	border-radius: 25px;
	border: 1px solid #ffffff;
}

.button:hover {
	background-color: #ffffff;
	color: #000000;
	outline:0 none !important;
}

.button_column {
	float: left;
	width: 50%;
	padding: 5px;
}

.button_container {
	width: 500px;
}

.standard-button {
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	font-size: .8rem;
	color: #ffffff;
	text-align: center;
	border: none;
	border: 1px solid #454545;
	border-radius: 3px;
	outline: none !important;
	box-shadow: none !important;
	margin: 0px;
	padding: 15px 15px 15px 15px;
	background-color: #43464b;
	cursor: pointer;
	display: inline-block;
}

.standard-button:hover {
	color: #ffffff;
	outline: 0 none !important;
	background-color: #8c2446;
}

@media screen and (max-width: 500px) {
	.button_container {
		width: 100%;
	}
}