.button {
	background-image: linear-gradient(31deg, #BDAB79 39%, #a69568 100%);
	font-family: trade-gothic-next, sans-serif;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 13px;
	color: #000;
	letter-spacing: 1.39px;
	text-align: center;
	display: block;
	height: 40px;
	line-height: 40px;
	max-width: 350px;
	border-radius: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	transition: all .2s linear;
}

.button + .button {
	margin-top: 20px;
}

.button.outline,
.button + .button,
.color-overlay-callout .button {
	border: 2px solid #bcaa79;
	line-height: 36px;
	background: transparent;
	color: #bcaa79;
}

.button i {
	display: inline-block;
	margin-left: 7px;
	position: relative;
	top: 1px;
	transition: transform .2s linear;
}

.button:hover {
	background-image: linear-gradient(31deg, #BDAB79 39%, #BDAB79 100%);
}

.button + .button:hover {
	background: #bdab79;
	color: #000;
}

.button:hover i {
	transform: translate3d(3px, 0, 0);
}

@media screen and (min-width: 768px) {
	.button {
		display: inline-block;
		padding: 0 30px;
		height: 50px;
		line-height: 50px;
	}
	
	.button.outline,
	.button + .button,
	.color-overlay-callout .button {
		line-height: 46px;
	}
	
	.button + .button {
		margin: 0 0 0 30px;
	}
}