@media 
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {
    #partes table tbody tr td, #tiempos table tbody tr td{
        border:0;
    }

    /* Force table to not be like tables anymore */
    #partes table, #partes thead, #partes tbody, #partes th, #partes td, #partes tr,
    #tiempos table, #tiempos thead, #tiempos tbody, #tiempos th, #tiempos td, #tiempos tr { 
        display: block; 
    }
    
    /* Hide table headers (but not display: none;, for accessibility) */
    #partes thead tr,  #tiempos thead tr  { 
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    #partes tr, #tiempos tr { border: 1px solid #74163A; 
    padding:10px 0;
    margin: 10px 0;
    }
    
    #partes td, #tiempos td { 
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee; 
        position: relative;
        padding-left: 50%; 
    }
    
    #partes td:before, #tiempos 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
    */
    #partes td:nth-of-type(1):before { content: "Fecha Parte"; }
    #partes td:nth-of-type(2):before { content: "T. Acumulado"; }
    #partes td:nth-of-type(3):before { content: "Tiempos"; }
    #partes td:nth-of-type(4):before { content: "Capturado"; }
    #partes td:nth-of-type(5):before { content: "Editar"; }
    #tiempos td:nth-of-type(1):before { content: "Cod. Obra"; }
    #tiempos td:nth-of-type(2):before { content: "Nom. Obra"; }
    #tiempos td:nth-of-type(3):before { content: "Nom. Operación"; }
    #tiempos td:nth-of-type(4):before { content: "Tiempo"; }
    #tiempos td:nth-of-type(5):before { content: "Editar"; }
    #tiempos td:nth-of-type(6):before { content: "Borrar"; }
    
    #ui-datepicker-div{
        width:100%;
        max-width: 70%;
        min-height: 200px;
    }
    
}