/* button */
button, .button, .button-minor, .button-primary, .button-secondary, .cart_checkout {
	border: none;
	box-sizing: border-box;
	font-family: 'RobotoLtMed';
	font-size: 16px;
	color: #168241;
	text-shadow: 0 1px 1px #EEE;
	text-decoration: none;
	text-align:center;
	padding: 4px 6px;
	margin: 0 4px;
	cursor: pointer;
	background: no-repeat center top;
}


.button-minor {
	font-size: 14px;
	padding: 2px 4px;
	margin: 0 2px;
	border-radius: 2px;
	color: #111;
	background: no-repeat center bottom;
}

.button span {
	display: none;
}
.button:hover { 
	text-decoration: none;
}

.button-block {
		margin: auto;
	
	display: block;
}


.button:disabled, button:disabled, .button:disabled:hover, button:disabled:hover, .button-primary:disabled,  .button-secondary:disabled {
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	filter: grayscale(100%);
	cursor: not-allowed;
	background-image: -ms-linear-gradient(bottom, #999 0%, #444 100%);
	color: #EEE;
	text-shadow: 0 1px 1px #111;
}

/* Button Gradient Colour */
.button, button, .button:disabled:hover, button:disabled:hover {
	
	background-image: -ms-linear-gradient(top, #d7f83c 0%, #B9D434 100%);
	background-image: -moz-linear-gradient(top, #d7f83c 0%, #B9D434 100%);
	background-image: -o-linear-gradient(top, #d7f83c 0%, #B9D434 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #d7f83c), color-stop(1, #B9D434));
	background-image: -webkit-linear-gradient(top, #d7f83c 0%, #B9D434 100%);
	background-image: linear-gradient(to bottom, #d7f83c 0%, #b8d433 100% );
}

.button-minor {
	background-color: #ffcc33;
	background-image: -ms-linear-gradient(bottom, #DFA050 0%, #ffcc33 100%);
	background-image: -moz-linear-gradient(bottom, #DFA050 0%, #ffcc33 100%);
	background-image: -o-linear-gradient(bottom, #DFA050 0%, #ffcc33 100%);
	background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #d7f83c), color-stop(1, #ffcc33));
	background-image: -webkit-linear-gradient(bottom, #DFA050 0%, #ffcc33 100%);
}

.button-minor:hover {
	background-color: #DFA050;
	background-image: -ms-linear-gradient(bottom, #ffcc33 0%, #DFA050 100%);
	background-image: -moz-linear-gradient(bottom, #ffcc33 0%, #DFA050 100%);
	background-image: -o-linear-gradient(bottom, #ffcc33 0%, #DFA050 100%);
	background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ffcc33), color-stop(1, #DFA050));
	background-image: -webkit-linear-gradient(bottom, #ffcc33 0%, #DFA050 100%);
}


.button-primary {

	font-size: 22px;
	width: 193px;
	height: 50px;
	color: #FFF;
	text-shadow: 0 1px 1px #111;
	background-color: #c88b12;
	background-image: -ms-linear-gradient(bottom, #DFA050 0%, #e29d13 100%);
	background-image: -moz-linear-gradient(bottom, #D88b12 0%, #f29d13 100%);
	background-image: -o-linear-gradient(bottom, #DFA050 0%, #e29d13 100%);
	background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #d7f83c), color-stop(1, #e29d13));
	background-image: -webkit-linear-gradient(bottom, #DFA050 0%, #e29d13 100%);
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.075);
}

.button-primary:hover {
	background-color: #DFA050;
	background-image: -ms-linear-gradient(bottom, #ffcc33 0%, #DFA050 100%);
	background-image: -moz-linear-gradient(bottom, #ffcc33 0%, #DFA050 100%);
	background-image: -o-linear-gradient(bottom, #ffcc33 0%, #DFA050 100%);
	background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ffcc33), color-stop(1, #DFA050));
	background-image: -webkit-linear-gradient(bottom, #ffcc33 0%, #DFA050 100%);
	
}

/* Special Buttons */

.btn_shopnow {
	display: block;
	background-image: url(../img/btn_shopnow.png) !important;
	width: 193px;
	height: 50px;
}

.btn_viewmore{
	display: block;
	background-image: url(../img/btn_viewmore.png) !important;
	width: 193px;
	height: 50px;
}

.btn_checkout {
	display: block;
	background-image: url(../img/cart_btn01.png) !important;
	width: 193px;
	height: 50px;
	margin: auto;
}

.btn_send {
	display: block;
	background-image: url(../img/btn_send.png) !important;
	width: 143px;
	height: 50px;
	margin: 0;
}

.btn_cart {
	display: inline-block;
	background-image: url(../img/btn_cart.png) !important;
	width: 160px;
	height: 50px;

	margin: auto;
	padding: auto 6px;

	text-transform: uppercase;
	text-indent: 20px;
}
.product_attributes .btn_cart {
	display:block;
}
.cart_checkout {
	display: none;

	text-align: left;
	color: #FFFFFF;
	text-shadow: 0 1px 1px #000;

	background: rgba(0, 0, 0, 0) url("/theme/img/cart_checkout.png") no-repeat scroll center top;
}