/*
Theme Name: Del Duccio Theme
Template: Impreza
Version: 1.0
Author:	Korus SRL - Lucca
Theme URI: http://www.korusadv.com/
Author URI: http://www.korusadv.com/
*/

/*Add your own styles here:*/


.quantity {
    width: 20%;
    float: left;
}

button.single_add_to_cart_button{
    width: 75%!important;
}

button.single_add_to_cart_button {
	border-radius: 50%;

	box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
	transform: scale(1);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}
button.single_add_to_cart_button.disabled{
	animation: none!important;
}

a.checkout-button.button.alt{
	animation: pulse 2s infinite;
}

button#place_order{
	animation: pulse 2s infinite;
}
