:root{
	
    --cor-texto:#fff ;
	--cor-card:#6d0606 ;
	--cor-icones:#f2bd0f ;
    --cor-fundo:#c1c1c1 ;
	--fonte-primaria:'Fredoka One', cursive;
	--fonte-secundaria:'Raleway', cursive;
	/*--fonte-primaria:'Bungee', cursive;
	--fonte-primaria:'Great Vibes', cursive;
	--fonte-primaria:'Raleway', cursive;*/
	
	
}
body{
    
   font-size: 14px 'Roboto' sans-serif;
   background-color: var(--cor-fundo);
   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;
}
 .logotipo{
    height: 120px;
 }
: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;
   
    
}
.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;
   
 
 
}
.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 );    

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;
  
    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;
}
.icone{
    color:var(--cor-icones);
}

input[type='file'] {
  display: none
}
input{
    width:90%;
    margin-bottom:10px;
    padding:2px;
    text-align:center;
    margin: 0 auto;
}
.BtSalvar{
    width:100%;
    color:white;
    margin:0 auto;
    padding:15px;
    background-color:green;
    color:#fff;
    position:fixed;
    bottom:0;
    z-index:1000;
    border-radius:2px;
    font-weight: 600;
    cursor:pointer;
    font-size:18px;
}
/* Estilo padrão do ícone */
.fechar{
    position:absolute;
    right:10px;
    top:15px;
    z-index:10;
    cursor:pointer;
    color:red;
}
.fechar :hover{
    color:black; 
}