/**
 * Detect risoluzione smarthphone e tablet (v.js)
 */
.sniff_res_phone {display: none;}
.sniff_res_tablet {display: none;}



/**
 * Tablet
 */
@media (max-width: 1200px) {

    body,html {min-width: 1280px;}
    
    .sniff_res_phone {display: none;}
    .sniff_res_tablet {display: block;}

}

/**
 * Smartphone
 */
@media (orientation: portrait) and (max-width: 599px),(orientation: landscape) and (max-width: 768px) {
    .sniff_res_phone {display: block;}
    .sniff_res_tablet {display: none;}
    .smart_hidden {display: none !important;}
    .desk_hidden {display: block;}

    body,html,#main_wrapper {min-width: 0;}
}

@media (min-width: 600px) {
    .desk_hidden {display: none !important;}
}