/****************************************************************************************************************
// Job   : selectores con responsive web design implementado a través de media queries 
// Brain : Cristian Fernandez O.
// Email : cristian.fernandez@factobyte.cl
//--------------------------------------------------------------------------------------------------------------*/

#contenidos-theater {
	width: 100%;
	height: 100%;
	padding: 0;
	position: fixed;
	top: 0;
	z-index: 10000000;
	display: none;
	background-color: rgba(0,0,0,0.93);

	background-image: url(imgs/img_preloader.gif);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center 180px; 
}

#contenidos-theater h3 {
	color: #fff;
	text-align: right;
	cursor: pointer;
}

#contenidos-theater-galeria {
	width: 80%;
	max-width: 1000px;
	margin: 0 auto;
	margin-bottom: 15px;
}

#contenidos-theater-galeria img {
	width: 100%;
}

#contenidos-theater-close {
	margin-top: 30px;
	margin-bottom: 15px;
}

#contenidos-theater-previous {
	margin-top: 15px;
	float: left;
}

#contenidos-theater-next {
	margin-top: 15px;
	float: right;
}

/****************************************************************************************************************
// Job   : selectores con responsive web design implementado a través de media queries 
// Brain : Cristian Fernandez O.
// Email : cristian.fernandez@factobyte.cl
//--------------------------------------------------------------------------------------------------------------*/

@media screen and (min-width: 1600px) {
	/* propiedades CSS a aplicar en desktops con resolución de 1600px mínimo o mas */
	
}

@media screen and (min-width: 1025px) and (max-width: 1599px) {
	/* propiedades CSS a aplicar en notebooks y netbooks con resolución de 1024px mínimo y 1599px máximo */
	
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	/* propiedades CSS a aplicar en tablets con resolución de 768px mínimo y 1023px máximo */

	#contenidos-theater-galeria {
		width: 94%;
		margin-bottom: 10px;
	}

}

@media screen and (max-width: 767px) {
	/* propiedades CSS a aplicar en smartphones con resolución de 767px máximo */

	#contenidos-theater-galeria {
		width: 96%;
		margin-bottom: 0;
	}
	
	#contenidos-theater-close {
		margin-top: 15px;
	}

}
