@charset "utf-8";
/* CSS Document */

#cart_button
{
	
	margin-left:20px;
	padding-bottom:20px;
	cursor:pointer;

}
#cart_button img
{
	width:26px;
	height:25px;

}
#cart_button input[type="button"]
{ 
	background:none;
	border:none;
	background-color:#31A2AC;
	border-radius:100%;
	height:20px;
	width:20px;
	margin-top:0px;
	color:white;
	font-size:17px;
	padding-bottom:20px;

}
#mycart
{position:absolute;
	display:none;
	background-color:white;
	width:300px;
	z-index:999;
	right:0;
	opacity:0.9;
	border:1px solid #ccc;

	
}
#mycart .cart_items
{
	border-bottom:1px dashed silver;
	padding:20px;
	padding-left:10px;

	
}
#mycart .cart_items img
{ position:relative;
	width:70px;
	height:50px;
	float:left;
}
#mycart .cart_items p
{
	margin:0px;
	font-size:17px;
	color:green;
}

#item_div
{

}
.items
{
}
.items:hover input[type="button"]
{
	display:block;
}
.items input[type="button"]
{
	background:none;
	background-color:#31A2AC;
	width:200px;
	height:50px;
	border:none;
	font-size:20px;
	color:white;
	cursor:pointer;
	float: right;
}
.items img
{
	width:200px;
	height:200px;
}
.items p
{
	color: green;
}
