/* fonts  */
@import url("https://fonts.googleapis.com/css?family=Abel|Aguafina+Script|Artifika|Athiti|Condiment|Dosis|Droid+Serif|Farsan|Gurajada|Josefin+Sans|Lato|Lora|Merriweather|Noto+Serif|Open+Sans+Condensed:300|Playfair+Display|Rasa|Sahitya|Share+Tech|Text+Me+One|Titillium+Web");

#container {
	box-shadow: 0 15px 30px 1px rgba(128, 128, 128, 0.31);
	background: rgba(255, 255, 255, 0.9);
	text-align: center;
	border-radius: 5px;
	overflow: hidden;
	margin: 1em auto;
	height: 200px;
	width: 100%;
}

/* 	Product details  */
.product-details {
	position: relative;
	text-align: left;
	overflow: hidden;
	padding: 10px;
	height: 100%;
	float: left;
	width: 100%;
}

/* 	Product Name */
#container .product-details h1 {
	font-family: "Old Standard TT", serif;
	display: inline-block;
	position: relative;
	font-size: 15px;
	color: #344055;
	margin: 0;
}

#container .product-details h1:before {
	position: absolute;
	content: "";
	right: 0%;
	top: 0%;
	transform: translate(80px, -15px);
	font-family: "Farsan", cursive;
	display: inline-block;
	background: #ffa69e;
	border-radius: 5px;
	font-size: 15px;
	padding: 2px;
	color: #fff;
	margin: 0;
	/*animation: chan-sh 6s ease infinite;*/
}

/*@keyframes chan-sh {
	from {
		content: "free";
	}
	to {
		content: "New";
	}
}*/

/*Product Rating  */
.hint-star {
	display: inline-block;
	margin-left: 0.5em;
	color: gold;
	width: 50%;
}

/* The most important information about the product */
#container .product-details > p {
	font-family: "Farsan", cursive;
	text-align: left;
	font-size: 15px;
	color: #7d7d7d;
}

/* control */

.control {
	position: absolute;
	bottom: 20%;
	left: 22.8%;
}

/* product image  */
.product-image {
	transition: all 0.3s ease-out;
	display: inline-block;
	position: relative;
	overflow: hidden;
	border: 4px solid white;
	border-radius: 50%;
	height: 180px;
	/*float: right;*/
	width: 180px;
}

#container img {
	width: 100%;
	height: 100%;
}

.info {
	background: rgba(27, 26, 26, 0.9);
	font-family: "Farsan", cursive;
	transition: all 0.3s ease-out;
	transform: translateX(-100%);
	position: absolute;
	line-height: 1.9;
	text-align: left;
	font-size: 20%;
	cursor: no-drop;
	color: #fff;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
}

.product-image:hover img {
	transition: all 0.3s ease-out;
}
.product-image:hover img {
	transform: scale(1.2, 1.2);
}
