body{
    background-color: #f9f9f9;
}
.shadow-btn{
    box-shadow: 1px 10px 10px 10px rgba(0, 0, 0, 0.12);
}
.btn-geral {
            background-color: #fff;
            border: solid 1px #eee;
            color: #000 !important;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            display: inline-block;
            margin-top: 15px;
            font-weight: 800;
            font-size: 16px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
            margin-right: 4px;
            
        }
.btn-geral:hover {
        background-image: linear-gradient(to left, #ff00ca, #f500a7, #e60088, #d4006d, #c00055);
        border: none;
        color: #fff !important;
    }
.btn-ativo {
            background-color: #45a049;
            border: solid 1px #eee;
            color: #fff !important;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            display: inline-block;
            margin-top: 15px;
            font-weight: 800;
            font-size: 16px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
            margin-left: 12px;
            width: 150px;
        }
.btn-ativo:hover {
        background-image: linear-gradient(to left, #ff00ca, #f500a7, #e60088, #d4006d, #c00055);
        border: none;
        color: #fff !important;
    }    
.center-div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Define a altura da div para ocupar a altura da tela inteira */
    background-color: #f0f0f0; /* Apenas para fins de demonstração */
}
/* Estilos para os botões fixos no rodapé */
 .fixo1 {
            text-align:center;
          
            padding: 20px;
            position: fixed;
            bottom: 65px;
            width: 100%;
        }
    .fixo2 {
            text-align:center;
            
            padding: 20px;
            position: fixed;
            bottom: 0;
            width: 100%;
        }
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
}

.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
}

#popupImage {
  max-width: 90%;
  max-height: 90%;
}
/* Estilos para o contêiner do botão com indicador de carregamento */
.botao-com-indicador {
  position: relative;
  width:100%;
}

/* Estilos para o indicador de carregamento 1 */
.indicador-de-carregamento1 {
  position: absolute;
  top: 5%;
  left: 45%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  animation: spin 2s linear infinite;
}

/* Classe para ocultar o indicador de carregamento */
.hidden1 {
  display: none;
}

/* Estilos para o contêiner do botão com indicador de carregamento */
.botao-com-indicador1 {
  position: relative;
  display: inline-block;
  width:100%;
}

/* Estilos para o indicador de carregamento */
.indicador-de-carregamento {
  position: absolute;
  top: 5%;
  left: 45%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  animation: spin 2s linear infinite;
}

/* Classe para ocultar o indicador de carregamento */
.hidden {
  display: none;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.cursor{
        

	padding: 10px 30px;
	border-radius: 0;
	border-width: 1px;
	border-style: solid;
	border-color: transparent;
	border-radius: 3px;
	box-shadow: 0 2px 3px rgba(223, 230, 232, 0.3);
	margin-bottom: 5px;
	width: 100%;
	height:200px;

}

/* Button 
.btn:hover {
    
background-color: #fff;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: 0 1px 2px 0 rgba(0,0,0,.12);
	box-shadow: 0 1px 2px 0 rgba(0,0,0,.12);
  width:100%;

  position: relative;

  color: rgba(0, 0, 0, 0.01);
  cursor: default;


  border: 2px solid rgba(0, 0, 0, 0.01);
  text-decoration: none;
  transform: none;
} */

/* In Progress Button */
.btn-progress {
  width: 100%;
  color: transparent;
}

.btn-fill:after {
  content: '';
  background: rgba(0, 0, 0, 0.01);
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0;
  display: block;
  -webkit-animation: fill 3.2s linear forwards;
          animation: fill 3.2s linear forwards;
}

/* Button Complete */
.btn-complete {
  padding: 10px;
  width: 50px;
  color: #fff;
  pointer-events: none;
}

.btn-complete:after {
  
  content: '';
  color: #fff;
  width:100%;
  height: 100%;
  padding-left: 3px;
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  background: rgba(0, 0, 0, 0.01);
}

/* Animation */
@-webkit-keyframes fill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes fill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}


    a:link {
  color: #000;
}

/* visited link */
a:visited {
  color: #000;
}

/* mouse over link */
a:hover {
  color: #000;
}

/* selected link */
a:active {
  color: #000;
}
    input, textarea, button #btn-load{
    height: 25px;
    margin: 0;
    padding: 10px;
    font-family: Raleway, sans-serif;
    font-weight: normal;
    font-size: 12pt;
    outline: none;
    border-radius: 0;
    background: none;
    border: 1px solid #282B33;
}
button #btn-load, select {
    height: 45px;
    padding: 0 15px;
    cursor: default;
}
button #btn-load {
    background: none;
    border: 1px solid black;
    margin: 25px 0;
}
button #btn-load:hover {
    background-color: #282B33;
    color: white;
}


.tools {
  overflow: auto;
  zoom: 1;
}
.search-area {
  float: left;
  width: 60%;
}
.settings {
  display: none;
  float: right;
  width: 40%;
  text-align: right;
}
#view {
  display: none;
  width: auto;
  height: 47px;
}
#searchbutton {
  width: 60px;
  height: 47px;
}
input#search {
    width: 30%;
    width: calc(100% - 90px);
    padding: 10px;
    border: 1px solid #282B33;
}
@media screen and (max-width:400px) {
  .search-area {
    width: 100%;
  }
}
.logado {
background-color: #fff;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: 0 1px 2px 0 rgba(0,0,0,.12);
	box-shadow: 0 1px 2px 0 rgba(0,0,0,.12);
	  margin: 7px 0px;
    float:center;
    color: #333;
    text-align:center;
    display: inline-block;
    line-height: 4.5;

}
.btn-sair{ 
 background-color: #b6127c; 
 border: none; 
 border-radius: 6px; 
 flex-grow: 1;
 font-family: SFProText-Regular, Helvetica, Arial, sans-serif;
 font-size: 15px; 
 height: 33px; 
 line-height: 20px; 
 margin-left: 8px;
 margin-right: 6px; 
 min-width: 30px; 
 padding: 0 16px 0 16px; 
 transition: 0.3s; 
 cursor: pointer; 
 } 
 
 .btn-sair:hover{
 background-color: #e4e6eb; 
 color: #050505; 
 font-size: 15px; 
 transition: 0.3s; 
 } 
 

.produto{
    background-color: #fff;
	-webkit-box-shadow: 0 1px 2px 0 rgba(0,0,0,.12);
	box-shadow: 0 1px 2px 0 rgba(0,0,0,.12);
  
  

}
/* mouse over */
.produto:hover {
  background-image: linear-gradient(to left, #ff00ca, #f500a7, #e60088, #d4006d, #c00055);
  color:#fff;
}

.produtocomprar{

background-color: #fff;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: 0 1px 2px 0 rgba(0,0,0,.12);
	box-shadow: 0 1px 2px 0 rgba(0,0,0,.12);
  
  

}
/* mouse over */
.produtocomprar:hover {
  background-image: linear-gradient(to left, #ffffff, #ffffff, #ffffff, #ffffff, #ffffff);
  color:#333;
}
.product-img {
  display: flex;
  justify-content: center; /* Centraliza horizontalmente */
  align-items: center; /* Centraliza verticalmente */
  margin: 0 auto;
  max-width: 200px; /* Largura máxima da imagem */
  height: auto; /* Altura da imagem */
  position: relative;
 
}

/* Estilos para a tarja verde */
.tarja-verde {
  font-size:11px;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #db0f64;
  color: white;
  padding: 5px;
  border-radius: 0 15px 0 15px; /* Adicione bordas arredondadas conforme necessário */
}

.product-img img {
  max-width: 100%; /* Ajuste a largura da imagem conforme necessário */
  max-height: 100%; /* Ajuste a altura da imagem conforme necessário */
}
.products {
  width: 100%;
}
.products-table .product {
    position: relative;
  display: flex; /* Usar flex para alinhar verticalmente */
  justify-content: center; /* Alinhar horizontalmente ao centro */
  align-items: center; /* Alinhar verticalmente ao centro */
    width: auto;
    margin: 10px 10px 30px 10px;
  }
  
.action {
        position: fixed;
        bottom: 10px;
        right: 12px;
        width: 50px;
        height: 50px;
        background-color: #00b7ff;
        border-radius: 50%;
        cursor: pointer;
        box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .action span {
        color: #fff;
        font-size: 2em;
        transition: transform 0.3s ease-in-out;
    }

    .action.active span {
        transform: rotate(135deg);
    }

    .menu {
        position: absolute;
        bottom: 100%;
        right: -7px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        background-color: #db0f64;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        transition: 0.3s ease-in-out;
    }

    .action.active .menu {
        opacity: 1;
        visibility: visible;
    }
     #recarga {
        bottom: 200px;
        background-color: #ffd700 !important;
    }

    #troca {
        bottom: 70px;
        background-color: #08cea0 !important;
    }
    #shopp {
        bottom: 70px;
    }
    @media (max-width: 1024px) {
        .action {
            bottom: 80px;
        }
         #troca {
        bottom: 130px;
    }
        #shopp {
        bottom: 130px;
    }
    .product-category {
    min-width: 800px !important;
    }
    }
    
    @media screen and (max-width: 768px) {
        .action {
            bottom: 80px;
        }
        #troca {
        bottom: 130px;
    }
        #shopp {
        bottom: 130px;
    }
    .product-category {
    min-width: 100% !important;
    }
    }    