@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
@import url(menu.css?v=1.1.1);
@import url(banner.css?v=1.1.2);
@import url(ofertas.css?v=1.1.6);
@import url(info.css?v=1.1.6);
@import url(productos.css?v=1.1.14);
@import url(detalleProducto.css?v=1.0.7);
@import url(encuentranos.css?v=1.1.5);
@import url(contactanos.css?v=1.0.8);
/* CSS Document */
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	font-family: 'Open Sans', sans-serif;
}

header{
	width:100%;
	height::50px;
	background: #333;
	color: #fff;
	
	position:fixed;
	top:0;
	left:0;
	z-index:100;
}

.contenedor{
	width:98%;
	margin:auto;
}

h1{
	float:left;
}

header .contenedor{
	display:table;
}

section {
	width:100%;
	margin-bottom:15px;
}

#bienvenidos {
	text-align: center;
}

footer .contenedor {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding-bottom: 25px;
}

footer .contenedor p{
	width: 100%;
	text-align: center;
	font-size: 18px;
}

.copy {
	font-size: 20px;
}

.sociales {
	width: 100%;
	text-align: center;
	font-size: 28px;
}

.sociales a {
	color: #333;
	text-decoration: none;
}

#search-products
{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding: 15px 0 0 0;
}

#search-products input {
	border: 2px solid rgba(255,102,0,1);
	border-right: none;
	width: 80%;
	max-width: 400px;
	padding: 5px;
}
#search-products input:focus{
    outline:none;
} 

#search-products a {
	color: #fff;
	text-decoration: none;
	border: 2px solid rgba(255,102,0,0.5);
	background: rgba(255,102,0,1);
	padding: 3px;
}

#search-products a:hover {
	background: rgba(255,102,0,0.5);
}

#ver-mas-products a {
	color: #fff;
	text-decoration: none;
	border: 3px solid rgba(255,102,0,0.5);
	background: rgba(255,102,0,0.8);
	padding: 4px;
	border-radius: 7px;
	margin-top:5px;
	margin-bottom:5px;
}

#ver-mas-products a:hover {
	background: rgba(255,102,0,0.5);
}

/*
.encuentranos {
	width: 100%;
	text-align: center;
	/*font-size: 24px;
}

.encuentranos a {
	color: #333;
	text-decoration: none;
}
*/

@media (min-width:320px) {
	#search-products input {
		width: 85%;
	}
}

@media (min-width:768px) {
	.sociales{
		width:auto;
	}
	/*
	.encuentranos{
		width:auto;
	}*/
	
	footer .contenedor {
		justify-content: space-between;
	}
	
	footer .contenedor p{
		width: auto;
	}
	
}

@media (min-width:1024px) {
	.contenedor{
		width:1000px;
	}
}