@charset "utf-8";
/* ==================== HEADER ==================== */
header {
	position:relative;/*posicion libre*/
	background-color:#007DB9;
}
/* ==================== FILTROS ==================== */
#section_filtros{
	padding: 12px;
	-webkit-box-shadow: inset 0px 8px 8px 0px rgba(0,0,0,0.4);
	-moz-box-shadow: inset 0px 8px 8px 0px rgba(0,0,0,0.4);
	box-shadow: inset 0px 8px 8px 0px rgba(0,0,0,0.4);
}
#section_filtros .wrapper{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
#section_filtros article{
	padding: 12px;
	width: 120px;
}


/* ==================== Selector de paginas ==================== */
.listaPaginas{
	display: flex;
	padding: 12px;
	background-color: #C30800;
	background-color: rgba(195,8,0,0.60);
	color: #F0F0F0;
	border-radius: 24px;
	border: solid 4px rgba(153,0,0,0.60);
}
.listaPaginas h3{
	padding: 0 4px;
}
.listaPaginas .botonPagina{
	cursor: pointer;
}

/* ==================== PRODUCTOS ==================== */
#section_productos{
	padding: 12px;
	-webkit-box-shadow: inset 0px 8px 8px 0px rgba(0,0,0,0.4);
	-moz-box-shadow: inset 0px 8px 8px 0px rgba(0,0,0,0.4);
	box-shadow: inset 0px 8px 8px 0px rgba(0,0,0,0.4);
	background: url(../images/baterias_bonn_resistencia_chaco_fondoProductos.jpg) no-repeat center;
	background-size: cover;
}
#section_productos .wrapper{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	padding: 12px;
}
#section_productos #container_productos{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	width: 100%;
}
#section_productos article{
	position: relative;
	background-color: #333333;
	background-color: rgba(0,0,0,0.60);
	padding: 12px;
	margin: 12px;
	width: 328px;
	border-radius: 12px;
	box-sizing: border-box;
	cursor: pointer;
}
#section_productos article h1{
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 12px;
	text-shadow: 1px 1px 4px #000;
	color: #FFF;
	font-weight: bold;
}

/* ==================== POPUP ==================== */
#section_popup{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 11000;/*arriba del todo*/
	background-color: #333333;
	background-color: rgba(0,0,0,0.80);
	width: 100%;
	min-height: 100%;
	display: none;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
#section_popup article{
	background-color: #F0F0F0;
	border-radius: 12px;
	overflow: hidden;
	width: 1200px;
	margin: 12px;
}
#section_popup article .barra_popup{
	-webkit-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.4);
	-moz-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.4);
	box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.4);	
	background-color:#007DB9;
	background-image: linear-gradient(180deg, #007DB9 0%, #004566 100%);
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #F0F0F0;
	font-weight: bold;
}
#section_popup article .barra_popup h1{
	padding: 0px 12px;
}
#section_popup article .barra_popup .close_popup{
	font-size: 24px;
	padding: 8px 12px;
	cursor: default;
	transition-duration: 300ms;
	-moz-transition-duration: 300ms;
	-o-transition-duration: 300ms;
	-webkit-transition-duration: 300ms;
}
#section_popup article .barra_popup .close_popup:hover{
	background-color: #B00;
}
#section_popup article .body_popup{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	background-image: url(../images/index/fondoFibra2.png);
}
#section_popup article .body_popup .imagen_popup{
	padding: 12px;
	box-sizing: border-box;
	background-color: rgba(255,255,255,0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	display: none;
}
#section_popup article .body_popup img{
	width: 75%;
}
#section_popup article .body_popup .description_popup{
	padding: 12px;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: center;
	align-content: center;
	width: 100%;
}
#section_popup article .body_popup .etiqueta{
	background-color: #FF7E30;
	padding: 6px 12px;
	margin: 12px;
	border-radius: 12px;
}
#section_popup article .body_popup .etiqueta h3{
	font-weight: bold;
	padding: 6px 0;
}
#section_popup article .body_popup .etiqueta p{
	color: #F0F0F0;
	border-top: solid 1px #F0F0F0;
	padding: 6px 0;
}
#section_popup article .body_popup .description_popup span{
	color: #F0F0F0;
	padding: 12px;
}

/* ======================================== Modo Escritorio ======================================== */
@media only screen and (min-width: 600px) {
	/* ==================== FILTROS ==================== */
	#section_filtros article{
		width: 200px;
	}
	
	/* ==================== POPUP ==================== */
	#section_popup article .body_popup{
		flex-wrap: nowrap;
		align-items: stretch;
	}
	#section_popup article .body_popup .imagen_popup{
		display: flex;
	}
}