﻿@media screen and (max-width: 700px) {

}

/*FORMULARIOS*/
@media screen and (max-width: 800px) {
    .formulario article, 
    .formulario .navegacion 
    {
        width: 100%;
     }
     
     .formulario #contentFormaPago article
     {
        width: 100%;
         }
}

/*REPORTES*/
@media screen and (max-width: 900px) {
    #contenedorReporte
    {
        display: none;}
}

@media screen and (min-width: 901px) 
{
        
    #contenedorMensajeReporteMovil
    {
        display: none;}
}

@media screen and (min-width: 700px)  and (max-width: 1500px) {

    /*LISTADOS*/
    .hidden-1500
    {
        display:none;
        }
}

@media screen and (min-width: 700px)  and (max-width: 900px) {

    /*LISTADOS*/
    .hidden-900
    {
        display:none;
        }
}

/*CAMBIO AL MENU DE MOVILES*/
@media screen and (max-width: 550px) 
{
    
    /*MASTER PAGE*/
    #contenedorMenu
    {
        display:none;
        }
        
     #cerrarSesion
     {
        display:none;
         }   
         
    .contenido 
    {
        top:auto;
        right:auto;
        left:auto;
    }
}


@media screen and (min-width: 551px) 
{
    
    /*MASTER PAGE*/
    #contenedorMenuMovil
    {
        display:none;
        }
}


@media only screen and (max-width: 700px) {
	
	/* Force table to not be like tables anymore */
	#gdvListado table, 
	#gdvListado thead, 
	#gdvListado tbody, 
	#gdvListado th, 
	#gdvListado td, 
	#gdvListado tr { 
		display: inline-block; 
	}
 
	/* Hide table headers (but not display: none;, for accessibility) */
	#gdvListado thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
 
	#gdvListado tr { border: 1px solid #ccc; }
 
	#gdvListado td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-left: 50%; 
		white-space: normal;
		text-align:left;
	}
	
	/*Caso especial emisor de comprobantes*/
	#contenedorComprobantesEditor #gdvListado td { 
		padding-left: 36%;
		text-align:center; 
		width: 50%; 
	}
 
	#gdvListado td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
		text-align:left;
		font-weight: bold;
	}
 
	/*
	Label the data
	*/
	#gdvListado td:before { content: attr(data-title); }

    #gdvListado .listadoHeader {
        display:none;
    }
    
    .contenido {
        width: auto;
    }   
}