<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*  all devices
    ......................*/
@media (-webkit-min-device-pixel-ratio: 1)
{
    body
    {
        min-width: 0px !important;
        min-height: 0px !important;
    }

    .wrapper-box-mensaje-error
    {
        width:90% !important;
        margin:0 auto !important;
    }

    .box-mensaje-error
    {
        width:100% !important;
    }
}

@media (-webkit-min-device-pixel-ratio: 1) and (orientation:portrait)
{
    .header-manage-guests.upload,
    .header-manage-cars.upload
    {
        display: none;
    }

    .header-manage-routes,
    .wrapper-route-map
    {
        width: 95% !important;
    }

    .wrapper-header-manage-guests
    {
        width: 103% !important;
    }

    .wrapper-grid-manage-groups
    {
        width: 98% !important;
    }

    .wrapper-locations-list,
    .wrapper-routes-list,
    .wrapper-grid-eventPLs,
    .wrapper-grid-routes
    {
        float: none;
        margin: 0 auto;
    }

    .wrapper-routes-list
    {
        margin-top: 20px;
    }

    .header-view-records.events
    {
        padding:5px 1%;
        width:98%;
    }
    .wrapper-select-event
    {
        margin-right: 5px;
    }

}




/*  ipad (portrait)
    ......................*/
@media (min-device-width : 768px) and (max-device-width : 1024px) and (orientation:portrait) and (-webkit-min-device-pixel-ratio: 1)
{
    #body
    {
        min-height: 890px !important;
    }
}

/*  ipad (landscape)
    ......................*/
@media (min-device-width : 768px) and (max-device-width : 1024px) and (orientation:landscape) and (-webkit-min-device-pixel-ratio: 1)
{   
    #body
    {
        min-height: 650px !important;
    }
}

/*  nexus 7 (portrait)
    ......................*/
@media (-webkit-min-device-pixel-ratio: 1.3) and (orientation:portrait)
{
    #body
    {
        /*min-height: 850px !important;*/
        min-height: 770px !important;
    }
}

/*  nexus 7 (landscape)
    ......................*/
@media (-webkit-min-device-pixel-ratio: 1.3) and (orientation:landscape)
{
    #body
    {
        /*min-height: 490px !important;*/
        min-height: 410px !important;
    }
}

</pre></body></html>