@charset "utf-8";
/* CSS Document */
#showprod {
position:fixed;
top: 50px;
right:0px;
width:250px;
height:390px;
background-color:#fff;
display:none;
padding:10px;
border: solid 1px #76a9e6;
border-radius:10px;
z-index:8000;
}

#showmodal {
position:fixed;
top: 60px;
right:2px;
width:560px;
height:360px;
background-color:#fff;
display:none;
padding:0px;
border: solid 1px #76a9e6;
border-radius:10px;
z-index:9000;
}

#cartbutton {
		width:200px;
		height:35px;
		position:fixed;
		left:0px;
		top:151px;
		cursor:pointer;
		background-color:#fff;
		line-height:35px;
		border:solid 1px #ccc;
		border-radius:5px;
		padding-left:35px;
		background-image:url(../images/cart.png);
		background-position:left;
		background-repeat:no-repeat;
		z-index:9100;
		font-size:1.3em;
		box-shadow:2px 2px 2px #000;
		}
		
		#showcart {
		width:100%;
		overflow-y:scroll;
		height:100%;
		position:fixed;
		left:0px;
		top:0px;
		background-color:rgba(255,255,255,.9);
		border:solid 1px #ccc;
		border-radius:20px;
		padding-left:35px;
		display:none;
		z-index:9200;
		box-shadow:2px 2px 2px #000;
		}

