@charset "utf-8";
/* CSS Document */
body{
	margin:0px;
	padding:0px;
	width: 100vw;
	overflow-x: hidden;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
}
header{
	background-color: #3380C7;
	padding:10px;
	top:0px;
	bkit-transition: top 2s;
    transition: top 2s;
	z-index: 999;
}
header h1{
	margin: 0px;
	color: #FFF;
	width: 50%;
}
header nav{
	float: right;
	margin-right: 20px;
}
footer{
	width: 100%;
	bottom: 0px;
}

.menu li,a{
	color:#FFF;
	display:inline-table;
	text-decoration: none;
	margin: auto 5px;
}
.menu li.new{
	background-color: #BC0003;
}
.menu li.promo{
	background-color: #373737;
}
.menu a:hover{
	color: #B6D9FF;
	font-weight: bold;
}
#productos{
	padding: 20px;
	width: 1200px;
	margin: 10px auto;
}
.producto{
	display: inline-table;
	width: 250px;
	max-width: 250px;
	height: 300px;
	max-height: 300px;
	border-radius: 8px;
	overflow: hidden;
	padding: 0px;
	margin:10px;
	position: relative;
}
.producto:hover{
	border: solid 1px #B4B4B4;
}
.producto:hover .verm{
	margin-left: 0px;
}
.producto img{
	width: 100%;
}
.producto h2{
	color: #003CA7;
	text-align: center;
	text-transform: uppercase;
	font-size: 16px;
}
.producto .verm{	
	position: absolute;
	color:#FFF;
	background-color: #045CAD;
	margin-left: -170px;
	margin-top:-50px;
	width: 150px;
	padding: 8px;
	transition:  0.5s;
}
.producto .newprod{
	background-color: #B50002;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	color:#FFF;
	text-align: center;
	padding: 8px;
	position: absolute;
	float: left;
	top: 50px;	
	right:0px;
	width: 20%;
}
.producto .proddesc{
	background-color: #F00;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	color:#FFF;
	text-align: center;
	padding: 8px;
	position: absolute;
	float: left;
	top: 50px;	
	right:0px;
	width: 25%;
}
.producto .prodviejo{
	background-color: #111111;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	color:#FFF;
	text-align: center;
	padding: 8px;
	position: absolute;
	float: left;
	top: 50px;	
	right:0px;
	width: 25%;
}
.precio{
	position: relative;
	float: right;
	right: -80px;
	background-color: #FF0004;
	color:#FFFFFF;
	padding: 2px 80px 10px; 
	font-weight: bold;
	transform: rotate(45deg);
}
.precio span{
	font-size: 8px;
}
footer{
	background-color: #3380C7;
	color: #EDEDED;
	text-align: center;
	padding: 10px;
}
footer div{
	margin: 0px;
	width: 48%;
	display: inline-table;
}
#login{
	width: 300px;
	position: fixed;
	top:50px;
	right: -310px;
	transition: right 1s;
	z-index: 9999;
}
#login input:not([type=submit]){
	width: 95%;
	margin:2px;
	height: 35px;	
}
.btnmenu{
	display: none;
	float: right;
}
@media only screen and (max-width: 800px){
	#productos{
		padding: 20px;
		width: 100%;
		margin: 10px auto;
	}
	header h1{		
		width: 100%;
		text-align: center;
	}
	header nav{	
		position: fixed;
		width: 300px;		
		text-align: center;
		margin-top: 60px;
		right: -310px;
		transition: right 1s;
	}
	.btnmenu{
		display: block;
		font-size: 18px;
		float: right;
		top:10px;
		right: 0px;
	}
	.menu li,.menu a{
		width: 100%;
		color:#FFF;
		display:inline-table;
		text-decoration: none;
		margin: 5px;
		padding: 3px;
		background-color: #3380C7;
		border-top-left-radius: 15px;
		border-bottom-left-radius: 15px;
	}
	.menu li.new{
		background-color: #BC0003;
	}
	.menu li.promo{
		background-color: #373737;
	}
	footer div{
		margin: 10px 0;
		width: 100%;
		text-align: center;
	}
}