#7e1cab
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
  }  


.content-titulo-de-categorias::-webkit-scrollbar-thumb {
    background-color: white;
    border-radius: 10px;
    border: solid 4px var(--blue-color);
}

.content-titulo-de-categorias::-webkit-scrollbar {
    width: 10px;
    padding: 0 2px;
}


  :root {
    --main-color-datails: #3b6fdf;
    --main-color-transparent: #105bcc26;
    --main-color-dark: #0a4e8d;
    --clr: #333;
    --branco-roxo: #E9E7F4;
    --green-preco: #54cb5d;
    --blue-color: #0679cb;
    --color-modest: #1b99e2;
    --red:#df5050;
    --yellow: #f5b423;
    --green: #54cb5d;
    --cor-empresa: #7e1cab;
  }


    /* ini: Preloader */

#preloader {
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color: var(--blue-color); /* cor do background que vai ocupar o body */
    z-index: 9999; /* z-index para jogar para frente e sobrepor tudo */
  }
  #preloader .inner {
    position: absolute;
    top: 50%; /* centralizar a parte interna do preload (onde fica a animação)*/
    left: 50%;
    transform: translate(-50%, -50%);  
  }
  .bolas > div {
  display: inline-block;
  background-color: #fff;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  margin: 3px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: animarBola;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
   
  }
  .bolas > div:nth-child(1) {
    animation-duration:0.75s ;
    animation-delay: 0;
  }
  .bolas > div:nth-child(2) {
    animation-duration: 0.75s ;
    animation-delay: 0.12s;
  }
  .bolas > div:nth-child(3) {
    animation-duration: 0.75s  ;
    animation-delay: 0.24s;
  }
  
  @keyframes animarBola {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  16% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0.7;
  }
  33% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; 
  } 
  }
  /* end: Preloader */





  .btn_padrao {
    width: 100%;
    outline: none;
    height: 35px;
    border-radius: 5px;
    cursor: pointer;
}

  .status-ativo{
    background: var(--green);
    color: var(--clr);
    padding: 2px 11px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
}

.status-desativado{
    background: var(--yellow);
    color: var(--clr);
    padding: 2px 11px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
}
  

  .box-alert2 {
    background: white;
    padding: 5px;
    border-radius: 5px;
    font-weight: bold;
    width: max-content;
    margin: 10px;
    top: 30px;
    transform: translateX(-50%);
    left: 50%;
    position: fixed;
    z-index: 999;
}
.sucesso {
    border: 4px solid #58fb8c;
    border-left: 30px solid #58fb8c;
    
}
.atencao {
    border: 4px solid #fbd958;
    border-left: 30px solid #fbd958;

}
.error {
    border: 4px solid #fb5858;
    border-left: 30px solid #fb5858;
    
}
.corpo_erro404 {
}

img.img_404 {
    width: 50%;
}

.group_erro404 {
    text-align: center;
}

@media only screen and (max-width: 535px) {
 
    .notfy {
        width: 100%;
    }
}