div#dbc_visor{	position: fixed;	top: 60px;	/* header / menu fijo */	left: 0;	right: 0;	bottom: 0px;	display: block;	z-index: 10000;	/*por encima del menu*/	background-color: rgba(0, 0, 0, 0.9);	background-image: url(../img/loading_transparente.gif);	background-position: center center;	background-repeat: no-repeat;	font-family: app, Verdana, Arial;}div#dbc_visor button.atras{	display: none;	position: absolute;	top: 10px;	right: 50px;	width: 32px;	height: 32px;	border: none;	background: none;	font-size: 0;	background-image: url(../img/icono_atras.svg);	background-repeat: no-repeat;	background-position: center center;	background-size: 100% auto;	cursor: pointer;	transition: .2s;}div#dbc_visor button.cerrar{	position: absolute;	top: 10px;	right: 10px;	width: 32px;	height: 32px;	border: none;	background: none;	font-size: 0;	background-image: url(../img/icono_cerrar.svg);	background-repeat: no-repeat;	background-position: center center;	background-size: 100% auto;	cursor: pointer;	transition: .2s;}div#dbc_visor button.cerrar:hover	{	box-shadow: 0 0 4px white;	}div#dbc_visor button.anterior{	position: absolute;	left: 2%;	bottom: 50%;	width: 32px;	height: 32px;	border: none;	background: none;	font-size: 0;	background-image: url(../img/icono_izquierda.svg);	background-repeat: no-repeat;	background-position: center center;	background-size: 100% auto;	cursor: pointer;	transition: .2s;}div#dbc_visor button.anterior:hover	{	box-shadow: 0 0 4px white;	}div#dbc_visor button.posterior{	position: absolute;	right: 2%;	bottom: 50%;	width: 32px;	height: 32px;	border: none;	background: none;	font-size: 0;	background-image: url(../img/icono_derecha.svg);	background-repeat: no-repeat;	background-position: center center;	background-size: 100% auto;	cursor: pointer;	transition: .2s;}div#dbc_visor button.posterior:hover	{	box-shadow: 0 0 4px white;	}div#visor_titulo{	position: absolute;	top: 10px;	left: 60px;	right: 60px;	height: 32px;	border-radius: 6px;	background-color: black;	padding: 0 10px 0 10px;	text-align: center;	line-height: 32px;	font-size: 16px;	font-weight: bold;	color: white;	overflow: hidden;	white-space: nowrap; 	text-overflow: ellipsis;}	div#visor_titulo span.etiqueta	{		margin: 0px 0px 0px 8px;		border-radius: 6px;		padding: 3px 6px 3px 6px;		font-size: 12px;		cursor: pointer;		box-shadow: 0px 0px 3px 1px #333;		overflow: hidden;	}div#visor_cargador{	position: absolute;	top: 50px;	left: 45px;	right: 45px;	bottom: 100px;	background-position: center center;	background-repeat: no-repeat;	background-size: contain;}div#visor_cargador_iframe{	position: absolute;	top: 50px;	left: 10px;	right: 10px;	bottom: 10px;}div#visor_cargador_iframe iframe{	width: 100%;	height: 100%;	border-radius: 6px;	background-color: white;	background-image: url(../img/loading_transparente.gif);	background-repeat: no-repeat;	background-position: center center;	background-size: auto;}div#visor_galeria{	position: absolute;	height: 70px;	left: 2%;	right: 2%;	bottom: 20px;	border-radius: 6px;	background-color: black;	text-align: center;	overflow: hidden;	overflow-x: auto;	white-space: nowrap; }div.visor_galeria_elemento{	margin: 5px 5px 5px 5px;	display: inline-block;	border-radius: 6px;	width: 60px;	height: 60px;	background-size: contain;	background-position: center center;	background-repeat: no-repeat;	overflow: hidden;	cursor: pointer;}/*/////////////////////////////////////////////////////////////////////// WIDTH < 780px */@media only screen and (max-width: 779px){	div#dbc_visor	{		top: 50px;	/* header / menu fijo */	}}