﻿
/* ----------- Non-Retina Screens ----------- */
@media screen and (min-device-width: 1200px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
    html {
        /*zoom:0.9;*/
    }
    .rb_table tbody tr td {
        padding: 7px !important;
    }
    .container {
        width: calc(100% - 60px) !important;
        max-width: calc(100% - 60px) !important;
    }
    .showOnFullScreen {
        display: none !important;
    }
}

/* ----------- Retina Screens ----------- */
@media screen and (min-device-width: 1200px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    html {
        /*zoom: 0.9;*/
    }
    .rb_table tbody tr td {
        padding: 7px !important;
    }

    .container {
        width: calc(100% - 60px) !important;
        max-width: calc(100% - 60px) !important;
    }
    .showOnFullScreen {
        display: none !important;
    }
}


/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/
@media (min-width: 768px) and (max-width: 1024px) {
    .top_row_global {
        margin: 0px !important;
    }

    .top_kpi_right_panel {
        padding: 0px !important;
    }
    .showOnFullScreen {
        display: none !important;
    }
}

/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    /* Hace que el menu lateral no se posicione por encima de lo que haya en el body */
    /*.rb_extranet_container {
        padding: 0px !important;
    }*/
        .rb_extranet_container[data-hideleftmenu] {
            padding: 0px !important;
        }
    .showOnFullScreen {
        display: none !important;
    }
}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {
    /* Hace que el menu lateral no se posicione por encima de lo que haya en el body */
    /*.rb_extranet_container {
        padding: 0px !important;
    }*/
        .rb_extranet_container[data-hideleftmenu] {
            padding: 0px !important;
        }
    .showOnFullScreen {
        display: none !important;
    }
}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/
@media (min-width: 320px) and (max-width: 480px) {

    .rb_extranet_container {
        padding: 0px !important;
    }
        .rb_extranet_container[data-hideleftmenu] {
            padding: 0px !important;
        }
    .showOnFullScreen {
        display: none !important;
    }
}
