.loading {
display: none; /* Inicia oculto */
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.75); /* Fundo preto 50% transparente */
z-index: 30;
justify-content: center;
align-items: center;
color: #ffffff;
}

.circle-container {
position: relative;
width: 150px;
height: 150px;
}

.circle {
fill: none;
stroke: #ffffff;
stroke-width: 10;
stroke-dasharray: 0, 400; /* Começa com escala zero */
stroke-dashoffset: 0;
transform: rotate(-90deg);
transform-origin: center;
transition: stroke-dasharray 0.3s ease;
}

.percentage {
display:flex;
position:absolute;
top:0px;
font-size: 24px;
fill: #ffffff;
text-anchor: middle;
dominant-baseline: middle;
transform: translateY(0.25em); /* Ajuste para centralizar verticalmente */
}

.wait-message {
display:flex;
position:absolute;
/*top:120px;*/
margin-top: 185px; /* Espaçamento entre o círculo e a mensagem */
font-size: 22px; /* Tamanho da fonte */
font-weight: bold; /* Texto em negrito */
text-align: center;
}

.alerta {
    display:block;
    position:relative;
    padding-top:5px;
    padding-bottom:5px;
    /*
    margin-left:3px;
    margin-right:3px;
    */
    justify-content: center;
    align-items: center;
    text-align:center;
    /*font-size: 16px;*/
    background-color: #fff; /* rgba(0, 0, 0, 0.75); /* Fundo preto 50% transparente */
    border-radius: 5px;
}
.alerta > H1 {
    font-size: 1.4rem;
}
.borda{
    display:none;
    position:relative;
    height:0px;
}
@keyframes animate-neon-sinza {
    100% {
      background-position: 0%;
    }
    50% {
      background-position: 150%;
    }
    0% {
      background-position: 300%;
    }
  }

  .Auvo-Local{
    display:flex;
    position: fixed;
    top: 130px;
    left: 130px;
    width: 240px;
    height: 135px;
    background-size: cover;
    background-position: center;
    border: 2px solid #2eacfb;
    border-radius: 7px; /* Borda arredondada com raio de 10px */
    opacity: 0.0; /* Começa oculta */
    transition: opacity 2s ease; /* Transição suave de 1 segundo */
  }
  .Auvo-Id {
    display:flex;
    position: fixed;
    top: 130px;
    right: 130px;
    width: 240px;
    height: 135px;
    background-size: cover;
    background-position: center;
    border: 2px solid #2eacfb;
    border-radius: 7px; /* Borda arredondada com raio de 10px */
    opacity: 0.0; /* Começa oculta */
    transition: opacity 2s ease; /* Transição suave de 1 segundo */
  }

@media screen and (max-width: 700px){
    .Auvo-Local{
        width: 34%;
        height: 11%;
        top: 130px;
        left: 8px;
        border-radius: 4px;
    }
    .Auvo-Id{
        width: 34%;
        height: 11%;
        top: 130px;
        right: 8px;
        border-radius: 4px;
    }
}
