@import url('https://fonts.googleapis.com/css?family=Oleo+Script:400,700');

body{
	padding-top: 74px;
	font-family: 'Oleo Script', cursive;
	font-weight: 400;
	font-size: 20px;
	color: #333;
	background: #e6e6e6;
	line-height: 1.2em;
}

header{
	position: fixed;
	top: 0;
	left: 0;
	background: #fff;
	border: 1px solid #ccc;
	height: 60px;
	width: 100%;
	z-index: 999;
}

header nav .logo{
	max-width: 190px;
	height: auto;
}

header nav .carrito-menu{ 
	float: right;
	margin-top: 10px;
	}

header nav .carrito-menu img{ 
	width: 24px;
	height: auto;
	display: inline-block;
	margin-top: 10px;
}

header nav .carrito-menu span.cantidad-menu{
	border-radius: 50%;
	width: 18px;
	height: 18px;
	text-align: center;
	padding: 4=2px;
	margin-left: -8px;
	font-size: 10px;
	opacity: 0.8;
	line-height: 14px;
	display: inline-block;
}

header nav .carrito-menu span.balance{
	display: block;
	float: right;
	text-align: center;
	line-height: 16px;
	margin-left: 20px;
}


header nav .carrito-menu span.balance span{ font-size: 14px; }
header nav .carrito-menu span.balance strong.total{ font-weight: 700; }

header nav .menu-ham{
	float: left;
	margin-top: 10px;
}

footer{
	background: #008FC2;
	width: 100%;
	position: relative;
	margin-top: 110px;
	padding: 40px 0;
	color: #fff;
}

footer::before{
	content: '';
	background: url(../images/pie.png) repeat-x;
	height: 88px;
	width: 100%;
	position: absolute;
	top: -60px;
	left: 0px;
	animation:         wave-footer 10s infinite linear; /* IE 10+ */
}

footer a{
	color: #fff;
}

footer .logo-footer{
	max-width: 240px;
	height: auto;
	display: inline-block;
}

@keyframes wave-footer {
	0%   { background-position: 0 -2px; }
	20% {background-position: -80px 2px;}
	40% {background-position: -120px -3px;}
	60% {background-position: -80px 4px;}
	80% {background-position: -30px 0px;}
	100% {background-position: 0 -2px;}
  } 

.btn-item button {
	border: 1px solid #ff8000;
	padding: 4px;
	border-radius: 4px;
	display: inline-block;
	min-width: 24px;
	cursor: pointer;
}

.btn-item button:hover{
	color: #fff;
	background: #ff8000;
}

.cantidades.off, .crear.off{
	display: none !important;
}



.productos .col button.crear{
	display: inline-block;
	border-radius: 8px;
	padding: 8px 16px;
	margin-top: 2px;
	line-height: 16px;
	font-size: 16px;
	cursor: pointer;
	margin-top: 6px;
	overflow: hidden;
	position: relative;
}

.productos .col button.crear::before{
	content: '';
	width: 100%;
	height: 10px;
	background: url(../images/wave-mini.png) repeat-x;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 6;
	animation:         wave-boton 3s infinite linear; /* IE 10+ */
	background-attachment: initial;
}

.check{
	transition: all 0.8s;
	background: url("../images/iconos/check.png");
	background-position: center;
	background-size: 100% 100%;
	width: 300px;
	height: 300px;
	position: fixed;
	bottom: 50px;
	left: 50%;
	margin-left: -120px;
	z-index: -1;
	opacity: 0;
}

.check.animated{
	transition: all 0.6s;
	z-index: 500;
	opacity: 1;
}

.listaCompra{
	transition: all 1s;
	display: block;
	position: fixed;
	left: 0;
	background: #008FC2;
	width: 100%;
	height: 0px;
	bottom: 0;
	padding: 0;
	opacity: 0;
	z-index: 99;
}

.listaCompra.on{
	transition: all 1s;
	opacity: 1;
	height: 50%;
	padding: 25px 0 15px 0;
	
	color: #fff;
}

.listaCompra .container{
	padding-bottom: 30px;
	overflow-y: scroll;
	height: 90%;;
}

.listaCompra::before{
	content: '';
	background: url(../images/pie.png) repeat-x;
	height: 88px;
	width: 100%;
	position: absolute;
	top: -60px;
	left: 0px;
	animation:         wave-footer 10s infinite linear; /* IE 10+ */
}


.listaCompra .row{
	padding: 0;
}

.listaCompra .articulo{
	border-bottom: 1px solid #ccc;
	margin-bottom: 20px;
	display: inline-block;
	position: relative;

}

.listaCompra .articulo img{
	max-width: 85px;
	height: auto;
	float: left;
	margin-right: 18px;
	margin-bottom: 8px;
}

.listaCompra .cerrar{
	float: right;
	width: 24px;
	height: 24px;
	cursor: pointer;
}

.listaCompra .cantidades button{
	width: 30px;
	height: 30px;
	line-height: 16px;
	font-weight: 700;
}

.listaCompra .cantidades{
	display: inline-block;
	
}

.listaCompra .cantidades .cantidad{
	height: 30px;
	line-height: 26px;
	font-weight: 700;
	width: 40px;
	text-align: center
}

.listaCompra .cantidades div{
	display: inline-block;
}

.listaCompra .nombre{
	font-size: 22px;
	line-height: 20px;
}

.listaCompra .borrar{
	width: 35px;
	padding: 4px;
	float: right;
	position: absolute;
	right: 30px;
	top: 0;
}


.listaCompra .borrar img{
	width: 100%;
	height: auto;
}


.listaCompra .pagar{
	width: 100%;
	text-align: center
}