﻿@charset "utf-8";
webkit-scrollbar
*{padding:0px; margin:0px;}

/* Barra de Rolagem -> body */
body::-webkit-scrollbar {
   width: 8px;      
}  
body::-webkit-scrollbar-track {
    background: #E9E9E9; 
    border-radius: 20px;
}  
body::-webkit-scrollbar-thumb {
    background-color: #A9A9A9; 
    border-radius: 20px; 
    /*border: 2px solid orange;*/
}
/* Barra de Rolagem -> body */

main{	
    padding-top: 85px;
    padding-bottom: 20px;    	
}

/*HTML RESPONSIVO PARA COMPUTADOR, TABLET E CELULAR*/
@media screen and (min-width:320px) and (max-width:1023px) {
	
    /* Visualizar site no celular somente na vertical */    
    #warning-message { display: none; }
    @media only screen and (orientation:landscape){
        body { display:none; }
        #warning-message { display:block; }
    }
    @media only screen and (orientation:portrait){
        #warning-message { display:none; }
    }
    /* Visualizar site no celular somente na vertical */
	
}