/* 
Theme Name: Storefront Fiddiam Child
Theme URL: https://az-vitamins.store/
Description: Storefront Child
Theme Author: Patrick Augurati
Template: storefront 
Version: 1.0.0 
Text Domain: storefront-fiddiam-child
*/


    /* Patrick Style */ 
/* Reflet on the add to cart */
/* BEGGIN REFLET */
button.single_add_to_cart_button{
	position: relative;
}
button.single_add_to_cart_button::before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}
button.single_add_to_cart_button:hover::before {
	-webkit-animation: shine 1s;
	animation: shine 1s;
}
@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}
/* END REFLET */

/* Better grey on cart and checkout - Patrick - 07/12/2023 */
#payment .place-order {
	background-color:#dedede
}
table:not( .has-background ) th, .form-row .place-order {
	background-color:#c7c7c7
}