/* Avis enviament Covid-19 */
.avis-botiga{
	display: none;
}
.post-type-archive-product .avis-botiga, .product-template-default .avis-botiga{
		display: block !important;
		background-color: #000;
		position: fixed;
		bottom: 0;
		width: 90%;
		left: 50%;
		transform: translateX(-50%);
		color: #fff;
		padding: 15px 20px;
		text-align: center;
		z-index: 10;
}
.avis{
	width: 80%;
	margin: auto 10%;
	text-align: center;
	background-color: black;
	color: white;
	padding-top: 20px;
	padding-bottom: 20px;
	position: fixed;
	bottom: 0;
	z-index: 9;
	animation-name: cPral_banner;
	animation-duration: 1s;
	animation-iteration-count: 1;
	animation-timing-function: ease-in-out;
}
@keyframes cPral_banner {
	0% {
			bottom: -60px;
			opacity: .2;
	}
	100% {
			bottom: 0px;
			opacity: 1;
	}
}