@import url('https://fonts.googleapis.com/css?family=Shrikhand');
/* font-family: 'Shrikhand', cursive; */
@import url('https://fonts.googleapis.com/css?family=Montserrat');
/* font-family: 'Montserrat', sans-serif; */

.title_product {
	font-family: 'Montserrat', sans-serif;
	color: #000;

}

.price_order {
	color: red;
	font-family: Georgia,sans-serif;
	font-size: 25px;
}

.x_content_commerce {
	position: fixed;
	height: 220px;
	bottom: 0;
	right: 10px;
}

.x_content_commerce  > div {
	position: absolute;
	width: 320px;
	right: 10px;
}

.x_content_commerce  > div > i {
	position: absolute;
	right: 0;
	margin: 5px;
	font-size: 20px;
	cursor: pointer;
	z-index: 100;
}


/* Animiaciones del inicio de sesion */	
	
	.img-login {
		animation: slidein 3s ease infinite;
	}


	@keyframes slidein {
	  0% {
	  	border-radius: 50%;
	  	box-shadow: 0px 0px 5px 5px #70c4e0;
	  }
	  10% {
	  	border-radius: 50%;
	  	box-shadow: 0px 0px 10px 5px #70c4e0;
	  }
	  25% {
	  	border-radius: 50%;
	  	box-shadow: 0px 0px 12px 7px #70c4e0;
	  }
	  50% {
	  	border-radius: 50%;
		box-shadow: 0px 0px 15px 10px #70c4e0;
	  }
	  100% {
	  	border-radius: 50%;
	  	box-shadow: 0px 0px 15px 5px #70c4e0;
	  	
	  	transform: rotateY(360deg);
	  }
	}