/* General button style (reset) */
.btn_button {
	border: none;
	width: 100%;
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	/*padding: 25px 80px;*/
	display: inline-block;
	margin: 5px 0px;
	text-transform: uppercase;
	font-weight: bold;
	outline: none;
	position: relative;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	height: 30px;
}

.btn_addToCart {
	background: #cb4f04;
	color: #ffffff;
	font-size: 1em;
	font-weight: normal;
	font-family: 'futura-pt';
	padding: 0px;
	max-width: 200px;
	line-height: 1.6em;
}

.btn_addToCart:focus {
	background-color: #337ab7;
}

.btn-hover {
	background: #bd5415;
	color: #ffffff;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	width: 100%;
	cursor: pointer;
}

.btn-active {
	opacity: 1;
	transition: all 0.3s;
	position: absolute;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	transform: translateY(0);
	width: 100%;
	font-weight: bold;
	text-align: center;
}

.btn-inactive {
	opacity: 0;
	transition: all 0.3s;
	position: absolute;
	-webkit-transform: translateY(50%);
	-moz-transform: translateY(50%);
	transform: translateY(50%);
	width: 100%;
}

.fa-shopping-cart:before, .fa-check:before, .fa-times:before {
	position: absolute;
	left: 0;
	top: -2px;
	width: 40%;
	font-size: 1em !important;
	line-height: 1.8em !important;
	color: #ffffff;
	padding-right: 5px;
}


.fa {
	margin-right: 25px;
}

.btn-button:before {
	font-family: 'futura-pt';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	position: relative;
	-webkit-font-smoothing: antialiased;
}


.fa-spin {
	/*position: absolute;
	font-size: 1.3em;
	left: 30px;
	top: -3px;*/
}

.price-table .btn_button, .price-table .btn_button .btn-active, .price-table .btn_button .btn-inactive {
	width: 30px;
	height: 15px;
}

.price-table .btn_button .fa-spin, .remove-cart .fa-spin {
	left: 0;
	top: 0;
}

.remove-cart {
	cursor: pointer;
}
