.hidden{
    display: none;
  }
  #alert{
    background-color: red;
    text-transform: uppercase;
    padding: 1rem;
    color: #FFF;
  }

  #reload-btn {
            background-color: #fff !important;
            color:rgba(255, 0, 0, 0.91) !important;
            border: 1px solid white;
            padding: 5px 10px;
            cursor: pointer;
            margin-left: 10px;
            border-radius: 5px;
        }
        
    #reload-btn:hover {
        background-color:rgb(99, 20, 0) !important;
        color: #FFF  !important;
    }

    .notificacoes {
    font-size: 12px;
    padding-left:12px;
    margin-top:-25px;
    }

    .balancar {
      animation: shake 0.5s ease-in-out infinite alternate;
    }

    @keyframes shake {
      0% { transform: rotate(0deg); }
      25% { transform: rotate(-15deg); }
      50% { transform: rotate(15deg); }
      75% { transform: rotate(-15deg); }
      100% { transform: rotate(0deg); }
    }


    
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2); /* Cor preta com opacidade 0.2 */
  z-index: 99999999;
  display: none; /* Inicialmente escondido */
}

.loader {
  border: 10px solid #efeee8;
  border-top: 10px solid #0032A0; /* Cor do preloader */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1.15s linear infinite;
  position: absolute;
  top: 50%;
  left: 52%;
  margin-top: -60px;
  margin-left: -60px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg); /* Começa a girar */
  }
  100% {
    transform: rotate(360deg); /* Gira completamente */
  }
}

.pagination{
  margin-bottom: 100px;
  text-align: center;
  }
  
  .pag_item{
    width: 33px;
    height: 33px;
    float:left;
    border-radius: 3px;
    border:1px solid #000;
    margin-right: 3px;
    text-align: center;
    line-height: 33px;
  
  }
  .pag_item a{
  color:#000;
  text-decoration: none;
  font-weight: bold;
  
  }
  
  .pag_item:hover{
    background-color: #1D4270;
    color:#fff;
    text-decoration: none;
    font-weight: bold;
  }
  
  .pag_ativo{
    background-color: #1D4270;
  }
  
  .pag_ativo a{
    color: #fff;
  }

.menu-mobile {
    display: flex;
    background-color: #1D4270;
    color: #FFF;
    width: 100%;
    height: 60px;
    bottom: 0px;
    z-index: 99;
    position: fixed;
    justify-content: space-evenly;
    align-items: center;
  }
  
  .menu-mobile-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #FFF;
    position: relative;
  }
  
  .menu-mobile-item span {
    text-align: center;
    font-size: 11px;
  }
  
  .menu-mobile-item.center {
    position: relative;
    width: 50px;
    height: 50px;
    background-color: #FFF;
    color: #1D4270;
    border-radius: 80px;
    justify-content: center;
    align-items: center;
    display: flex;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .menu-mobile-item.center span {
    font-size: 12px;
    font-weight: bold;
  }
  
  .menu-mobile-item i {
    font-size: 20px;
    margin-bottom: 5px;
  }


@media (max-width: 768px) {

.loader {
  left: 60%;
}

}
