/*
#cart-email .cart-email-wrapper .btn,
.wrapper-btn-fixed .btn,
.wrapper-btn-buy .btn,
.btn.btn-cart-submit,
.btn.btn-next-step {
	position: relative;
	overflow: hidden;
}

#cart-email .cart-email-wrapper .btn:after,
.wrapper-btn-fixed .btn:after,
.wrapper-btn-buy .btn:after,
.btn.btn-cart-submit:after,
.btn.btn-next-step:after {
	background: #fff;
	bottom: -5px;
	content: "";
	left: 0;
	position: absolute;
	top: -5px;
	width: 25px;
	animation: move 5s infinite ease-in-out;
	filter: blur(5px);
	opacity: .5;
	transform: skewX(15deg);
}

@keyframes move {
	20%,100% {
		opacity: 0;
		transform: translate(400px,0)
	}
	0% {
		opacity: 0
	}
	10% {
		opacity: .4
	}
}
*/

/*Cupom de desconto*/
.cart-data-coupon-holder .link { 
	background: #522e8f; 
	border: 0; 
	color: #fff !important; 
	font-size: 14px; 
	line-height: 20px; 
	margin-top: 20px !important; 
	padding: 10px 15px; 
	text-decoration: bold; 
	text-transform: uppercase; 
	-webkit-border-radius: 4px; 
	-moz-border-radius: 4px; 
	border-radius: 4px; 
	-webkit-transition: all 1000ms ease; 
	-moz-transition: all 1000ms ease; 
	-ms-transition: all 1000ms ease; 
	-o-transition: all 1000ms ease; 
} 