body{
    
    padding: 0;
    margin: 0;
    font-size: 14px 'Roboto' sans-serif;
    background-color: rgb(5, 5, 5);
   box-sizing: border-box;
   /*overscroll-behavior-y: contain;
   overflow-y: hidden;*/
 
}
*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    
    
}
*:focus{
    outline: 0;
}
html,body,#app{
    height: 100%;
    width:100%;
    padding: 0;
    margin: 0;
   box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
 
:target {
  scroll-margin-top: .8em;
}
a{
    text-decoration: none;
    transition: opacity 0.2s ease;
}
a:visited {
    color:  inherit;
    text-decoration: none;
}
 a:hover{
    opacity: 0.7;
    
  }
a:focus{
    outline: 0;
    
}
.app{
    width:100%;
    height:100%;
    background-position: center;
    background-size: cover;
    /*margin-bottom:100px;*/
    
}
.btInstalacao {
  
    background-color:#fff;
    color:#000;
    border-radius:8px;
    box-sizing: border-box;
    display :none;
    padding:10px;
    width:80%;
    font-weight:bold;
    text-overflow: auto;
    text-align:center;
    margin: 10px auto;
    cursor:pointer;
    /*position: absolute;*/
    /*top: 5px;
    left: 50%;*/
    
    /*top:50%;
    left: 50%;*/
    /*transform: translate(-50% , 0);*/
 
 
}
.CardInicio{
position: relative;              
top: 50%; 
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%);
width:90%;
max-width: 380px;
background-image:linear-gradient(to top, #D8D8D8,#fff );    
/*background-color: rgb(255, 255, 255);*/
border-radius: 5px 5px;
text-align: center;
padding: 60px 10px 5px 10px;
}
.CardInicio p {
    margin:5px 0;
}
.imgInicio{
    position: absolute;              
    top: 0%; 
    left: 50%;
    transform: translate(-50%, -50%);
    height:150px;
    
}
.botaoAcessar{
    
    position: relative;
    overflow: hidden;   
    height: 60px;
    line-height: 60px;
    font-weight: bold;
    width: 100%;
    color: white;
  /*  background-image:linear-gradient(to top, #000000, #fc0ce0);*/
    border-radius: 5px 5px;
    text-align: center;
    font-size: 1.75rem;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    outline: 0;
    cursor:pointer;
}
.botaoAcessar:before {
    animation: mymove 3s;
    animation-iteration-count: infinite;
		content: "";
		position: absolute;
		top: -70px;
		left: -80px;
		height: 200px;
		width: 30px;
		background: rgba(255, 255, 255, .1);
		transform: rotate(20deg);
		cursor:pointer;
}
@keyframes mymove {
  
   0% {
    left: -80px;
  }
  25% {
    left: 400px;
    transition: all .5s;
  }
  100% {
    left: 400px;
    transition: all .5s;
  }
}  
.statusFuncionamento {
    font-size: 20px;
    display: inline-block;
    padding: 2px 10px;
    border-radius: 5px;
    margin:10px;
}
.statusFuncionamento-fechado {
    color: #ad1616;
    border: 1px solid #ad1616;
}
.statusFuncionamento-aberto {
    color: #36b902;
    border: 1px solid #36b902;
}
.statusFuncionamento-almoco {
    color: #c18626;
    border: 1px solid #c18626;
}
.ModalHorariosFuncionamento{
    width: 95%;
    height: 100%;
    margin: 0 auto;
    text-align: center;
}
legend{
    margin:10px;
}
.tabelaHorarios {
  border-collapse: collapse;
  font-weight: bold;
  margin:0 auto;
  border:1px solid black;
  background-color:#000;
  
}
th {
    padding-top: 2px;
    padding-bottom: 2px;
    color: #000;
    background-color:#fff;
    
    text-align:center;
    font-size:10px;
}
.tabelaHorarios td, .tabelaHorarios th {
  padding:10px;
  text-align: center;
   border-bottom:10px solid #fff;
   font-size:10px;
    background-color:#000;
    color:#fff;
}
.tabelaHorarios tr:hover {background-color: #ddd;}
tr{
   background-color: #F2F2F2; 
   color:#fff;
}  
.horario{
    margin-top:5px;
}

btModal{
    
    display:inline-block;
    background-color:black;
    color:#fff;
    width:80%;
    border:2px solid #fff;
    border-radius:10px;
    margin:8px auto;
    cursor:pointer;
    text-align:center;
    font-weight: bold; 
    padding:8px;
   
}
btModal > p{
    display:block;
    text-align:center;
    font-weight: 500; 
    color:#fff;
    margin:0;
    padding:0;
}
.rodape{
    background-color: rgb(5, 5, 5,.8);
    position:fixed;
    bottom:0;
    width:100%;
    text-align:center;
    font-size:20px;
    color:#fff;
    padding:10px;
}

