@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,500;0,700;0,800;0,900;1,300&display=swap');

html, body {
    height: auto;
    margin: 0;
  }

#body{

    background-image: url('../imagens/bg.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-family: Nunito, sans-serif;
    width: 100%;
    
}

#bodysucesso{
    background-color: #00b3f6;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: Nunito, sans-serif;
    width: 100%;
    height: 100vh; 
    
}

#bodyfalha{

    background-color: red;
    font-family: Nunito, sans-serif;
    width: 100%;
    height: 100%;
   
}

.claro{

    color: white !important;
}

#resolucao{

    color: white;
    font-size: 16pt;
    font-weight: 900;
    margin: 2;
    display: none;
}

#modal {
    
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.650);
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    pointer-events: none; /* Desativa eventos do mouse enquanto o modal está escondido */
    transform: scale(0);
    overflow: hidden;
    padding-bottom: 50rem;
    
  }
  
#modal.show {

z-index: 200;
opacity: 1;
pointer-events: auto; /* Ativa eventos do mouse enquanto o modal está visível */
display: block; /* Mostra o modal quando a classe "show" é adicionada */
transform: scale(1);
position: fixed;
}


.modal-content {
    background-color: rgba(255, 255, 255, 0.940);
    padding: 3rem;
    padding-bottom: 3rem;
    padding-top: 3rem;
    padding-right: 2.5rem;
    width: 50%;
    height: auto;
    border-radius: 1.5rem;
    position: relative;
    margin: 0rem auto;
    

}

#hidden{

    visibility: hidden;
}

#close {
    color: #004aad;
    float: right;
    font-size: 35pt;
    font-family: Nunito, sans-serif;
    position: fixed;
    justify-content: right;
    align-items: center;
    z-index: 200;
    font-weight: 900;
    padding: 0rem;
    margin: 0rem auto;
}

#close:hover,
#close:focus {
    color: #00b3f6;
    text-decoration: none;
    cursor: pointer;
}

#msgerror{

    font-size: 12pt;
    font-family: Nunito, sans-serif;
    color: red;
    display: flex;
    margin: 0rem;
    margin-left: 5%;
    margin-bottom: 0rem;
    text-align: left;
    line-height: 1.1;
    align-items: center;
    justify-content: center;
    margin-top: 0rem;
    font-weight: 500;
    margin-right: 5%;
    padding: 0.2rem;

}

#title4 {
    font-family: Nunito, sans-serif;
    font-size: 16pt;
    text-align: left;
    padding: 0rem;
    padding-bottom: 0rem;
    padding-left: 0rem;
    margin: 12vh 15%;
    margin-bottom: 0.2rem;
    color: #00b3f6;
    position: relative;
    justify-content: center;
    align-items: center;
    font-weight: 900;

}

.alignclose {
    position: fixed;
    justify-content: right;
    align-items: center;
    margin: -0.5rem 74.5%;
    margin-right: 0rem;
    z-index: 1;
}

.progress-bar {
    position: absolute;
    width: 70%;
    height: 2rem;
    margin-top: 1rem;
    background-color: white;
    border-radius: 99.9rem;
    overflow: hidden;
    left: 50%; /* Define o ponto central horizontal da tela */
    transform: translateX(-50%);
    border: solid 0.10rem transparent;
    
}

.progress-bar::-webkit-progress-bar {
    background-color: transparent;
    
}

.progress-bar::-webkit-progress-value {
    background-image: linear-gradient(to right, #004aad, #00b3f6);
    border-radius: 99.9rem;
    transition: width 0.1s ease;
    
}

.progress-bar::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background-image: linear-gradient(to right, #4f4f4f, #00b3f6);
    border-radius: 99.9rem;
    transition: all 1s  ease-in-out;
    
}

.progress-bar[data-percentage="100"]::before {
    width: 100;
}


#areaprogress{
    
    position: relative;
}

#progress-bar.show {
    display: block;
}

#foto-container{

    width: 100%;
    height: 100%;
    padding-bottom: 50rem;
    background-color: rgba(255, 255, 255, 0.940);
    position: fixed;
    z-index: 500;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: none;
    
}

.fecharfoto-container {
    height: 100%;
    position: fixed;
    align-items: start;
    margin: auto 63.5%;
    margin-right: 0rem;
    z-index: 1;
}

.imgcamera{

    width: 3rem;
}

#fecharfoto {
    color: #004aad;
    float: right;
    font-size: 50pt;
    font-family: Nunito, sans-serif;
    position: fixed;
    justify-content: right;
    align-items: center;
    z-index: 1000;
    font-weight: 900;
    padding: 0rem;
    margin: 0rem auto;
}

#fecharfoto:hover,
#fechafoto:focus {
    color: #00b3f6;
    text-decoration: none;
    cursor: pointer;
}

.title1foto {
    font-size: 20pt;
    font-weight: 800;
    color: #00b3f6;
    line-height: 1;
    text-align: center;
    margin-left: 1rem;
    margin-right: 1rem;
    margin-bottom: 2.5rem;

  }

  .classTitleFoto{

    opacity: 0;
    transform: scale(0.0);
    position: absolute;
    animation: fade-in-out 6s ease-in-out forwards;

  }
  
  @keyframes fade-in-out {
    0% {
      opacity: 0;
      transform: scale(0);
    }
    40% {
        opacity: 1;
        transform: scale(1);
      }
    50% {
      opacity: 1;
      transform: scale(1);
    }
    60% {
        opacity: 1;
        transform: scale(1);
      }
    70% {
    opacity: 1;
    transform: scale(1);
    }
    100% {
      opacity: 0;
      transform: scale(0.5);
      display: none;
    }
  }

  .titlecamera {
    font-size: 16pt;
    font-weight: 900;
    color: red;
    margin: 2rem;
    margin-bottom: 0;
    margin-top: 0.5rem;
    text-decoration: underline;
    text-align: center;
    line-height: 1.2;

  }

  .bodytextcamera{
    font-size: 12pt;
    margin-right: 2rem;
    margin-left: 2rem;
    text-align: center;
    margin-top: 0.3;
    line-height: 1.1;

  }

  .msgcamera {
    opacity: 0;
    transition: ease-in-out 0.5s;
  }
  
  .msgcamera.show {
    opacity: 1;
  }


    #vídeofoto{

        width: 100%; 
        height: auto;
        display: flex;
        justify-content: center;
        align-items: self-end;
        position: static;
        

    }

#video{

    width: 85%;
    height: auto;
    margin: 0 auto;
    border-radius: 2.5rem;
    position: relative;
}

  #container-buttonfotos{

    display: flex;
    flex-direction: column;
    justify-content: space-around;

  }

.buttonsfotostyle{
    width: 10rem;
    height: 3.5rem;
    margin-top: 1.5rem;
    border: 0;
    border-radius: 8rem;
    box-shadow: 0.2rem 0.2rem 0.2rem 0rem rgba(0, 0, 0, 0.300);
    background-repeat: no-repeat;
    background-size: 1.7rem;
    position: relative;
    background-position: 50%;
    z-index: 1000;
    
}

#fotografar{

    background-color: #47A896;
    background-image: url("../imagens/icon-foto.webp");
    
}

#fotografar:hover{

    background-color: #5fffd7;
    background-image: url("../imagens/icon-foto-verde.webp");
}

#spacebuttons{

    width: 10%;
}

#confirmarfoto{

    background-color: #00b3f6;
    background-image: url("../imagens/confirmar.webp");
    
}

#confirmarfoto:hover{

    background-color: #004aad;
    background-image: url("../imagens/confirmar-azul.webp");
}

.novafoto{

    background-color: red !important;
    background-image: url("../imagens/refazer.webp") !important;
    
}

.fotosalva{

    background-color: #47A896 !important;
    background-image: url("../imagens/confirmar.webp") !important;

}

.fotosalva:hover{

    background-color: #5fffd7 !important;
    background-image: url("../imagens/confirmar-verde.webp") !important;

}

#canvas{

    display: none;
}

.showfoto{
    opacity: 0;
    transform: scale(0.5);
    display: none;
    animation: entradafoto 1s ease-in forwards;

}

@keyframes entradafoto {

    0%{
        opacity: 0;
        transform: scale(0.5);
    }
    100%{
        opacity: 1;
        transform: scale(1);
    }
}

.fecharconsultores-container {
    height: 100%;
    position: absolute;
    align-items: start;
    margin: -1rem 77.5%;
    margin-right: 0rem;
    z-index: 4000;
}

#fecharconsultor {
    color: #004aad;
    float: right;
    font-size: 50pt;
    font-family: Nunito, sans-serif;
    position: absolute;
    justify-content: right;
    align-items: center;
    font-weight: 900;
    padding: 0rem;
    margin: 0rem auto;
    cursor: pointer;
    z-index: 5000;
    
}

#fecharconsultor:hover,
#fechaconsultor:focus {
    color: #00b3f6;
    text-decoration: none;
    cursor: pointer;
}

#corpoconsultor{
    width: 100%;
    height: 100%;
    position: fixed;
    overflow: scroll;
    z-index: 200;
    display: none;
    background-color: rgba(255, 255, 255, 0.940);
    /* animation: inandout 0.5s ease-in-out forwards; */
    align-items: center;
    justify-content: center;
      
}

@keyframes inandout{

    0%{
        opacity: 0;
        
    }

    100%{

        opacity: 1;
       
    }

}

@keyframes fade-out{

    0%{
        opacity: 1;
        
    }

    100%{

        opacity: 0;
       
    }

}

.animacao-in{

    animation: inandout 1s ease-in-out forwards;
    
}

.animacao-out {
    animation: fade-out 1s ease-out forwards;
  }

 #modalconsultores{

    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 0rem;
    padding-top: 2rem;
    padding-bottom: 0rem;
    position: absolute;
    justify-content: center;
    align-items: center;
    z-index: 3000;

}

.consultores{

    display:flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    /* box-sizing: border-box; */

}

.imgconsultor{
    box-sizing: border-box;
    width: 8rem;
}

.imgconsultor:hover{

    border-radius: 99.9rem;
    scale: 1.07;

}

.consultor{

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}

#spaceconsultor{

    width: 15rem;
}

.txtconsultor{

    font-size: 14pt;
    margin-top: 0.1rem;
    margin-bottom: 2rem;
    font-family: Nunito, sans-serif;
    font-weight: 900;
    color: #00b3f6;
}

.consultorselect{

    border: 0.4rem solid #47A896;
    border-radius: 99.9rem;
    scale: 1.07;
    
}

#modalconfirmacao{
    height: 100%;
    width: 100%;
    z-index: 5000;
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    animation: modalconfirmacao 1s ease-in-out forwards;
    overflow: hidden;
    background-color: white;
    
}

#modalconfirmacao_sucesso{
    height: 100%;
    width: 100%;
    z-index: 5000;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: modalconfirmacao 1s ease-in-out forwards;
    overflow: hidden;
}

@keyframes modalconfirmacao {

    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
    
}

#loading{

    animation: loader 5s ease-in-out forwards;
    animation-delay: 0s;
    animation-fill-mode: both;
    position: absolute;
    padding-bottom: 5rem;

}

@keyframes loader {
    0% {
      opacity: 0;
      transform: scale(0);
    }
    30% {
        opacity: 0.5;
        transform: scale(0.5);
      }
    40% {
        opacity: 1;
        transform: scale(1);
      }
    /* 50% {
      opacity: 1;
      transform: scale(1);
    }
    60% {
        opacity: 1;
        transform: scale(1);
      }
    70% {
    opacity: 1;
    transform: scale(1);
    }
    80% {
        opacity: 1;
        transform: scale(1);
        }
    90% {
        opacity: 1;
        transform: scale(1);
        }

    95% {
        opacity: 0.5;
        transform: scale(1);
        }
    100% {
      opacity: 0;
      transform: scale(0.5);
      display: none;
    } */
  }

.loader  {
    animation: rotate 1s infinite;  
    height: 50px;
    width: 50px;
  }
  
  .loader:before,
  .loader:after {   
    border-radius: 50%;
    content: '';
    display: block;
    height: 20px;  
    width: 20px;
  }
  .loader:before {
    animation: ball1 1s infinite;  
    background-color: #00b3f6;
    box-shadow: 30px 0 0 #f8b334;
    margin-bottom: 10px;
  }
  .loader:after {
    animation: ball2 1s infinite; 
    background-color: #004aad;
    box-shadow: 30px 0 0 #97bf0d;
  }
  
  @keyframes rotate {
    0% { 
      -webkit-transform: rotate(0deg) scale(1.3); 
      -moz-transform: rotate(0deg) scale(1.3);
    }
    50% { 
      -webkit-transform: rotate(360deg) scale(1.7); 
      -moz-transform: rotate(360deg) scale(1.7);
    }
    100% { 
      -webkit-transform: rotate(720deg) scale(1.3); 
      -moz-transform: rotate(720deg) scale(1.3);
    }
  }
  
  @keyframes ball1 {
    0% {
      box-shadow: 30px 0 0 #004aad;
    }
    50% {
      box-shadow: 0 0 0 #004aad;
      margin-bottom: 0;
      -webkit-transform: translate(15px,15px);
      -moz-transform: translate(15px, 15px);
    }
    100% {
      box-shadow: 30px 0 0 #004aad;
      margin-bottom: 10px;
    }
  }
  
  @keyframes ball2 {
    0% {
      box-shadow: 30px 0 0 #00b3f6;
    }
    50% {
      box-shadow: 0 0 0 #00b3f6;
      margin-top: -20px;
      -webkit-transform: translate(15px,15px);
      -moz-transform: translate(15px, 15px);
    }
    100% {
      box-shadow: 30px 0 0 #00b3f6;
      margin-top: 0;
    }
  }

  #concluido{

    width: 6rem;
    animation: fimconcluido 3s ease-in-out forwards;
    /* animation-delay: 5s; */
    animation-fill-mode: both;
    display: inline;

  }

  #containercadastrando{
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:center;
    position: relative;
    

  }
  .cadastrando{
   
    padding-top: 8rem;
    animation: cadastrando 8s ease-in-out infinite;
    animation-name: cadastrando;
    opacity: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    
  }

  @keyframes cadastrando{

    0% {
        display: flex;
        opacity: 0;
        transform: scale(0);
        
      }
      40% {
          opacity: 1;
          transform: scale(0.8);
        }
      50% {
        opacity: 1;
        transform: scale(0.8);
      }
      60% {
          opacity: 1;
          transform: scale(0.8);
        }
      70% {
      opacity: 1;
      transform: scale(0.8);
      }
      100% {
        opacity: 0;
        transform: scale(0.5);
        display: none;
      }
   
  }

  @keyframes fimconcluido {

    0%{

        opacity: 0;
        scale: 0;    
    
    }

    25%{

        opacity: 0.8;
        scale: 1.5;
    }

    50%{

        opacity: 1;
        scale: 1;
    }
    60%{

        opacity: 1;
        scale: 1;
    }
    65%{

        opacity: 1;
        scale: 1;
    }
    70%{

        opacity: 1;
        scale: 1;
    }
    72%{

        opacity: 1;
        scale: 1;
    }
    75%{

        opacity: 0.8;
        scale: 1.5;
    
    }

    100%{

        opacity: 0;
        scale: 0;    
    
    }


  }

#imgreload{

width: 2.5rem;
margin-bottom: 1rem;
animation: btnreload 2s ease-in forwards;
animation-delay: 3s;
animation-fill-mode: both;
margin-top: 2rem;
}

@keyframes btnreload{

    0%{

        opacity: 0;
    }

    50%{

        opacity: 0.5;
    }

    100%{

        opacity: 1;
    }
}

#modalusuario{

    display: flex;
    position: fixed;
    flex-direction: column;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;

}

.img-container {
    width: 7rem; /* Defina a largura desejada */
    height: 7rem; /* Defina a altura desejada */
    overflow: hidden;
    margin-bottom: 1rem;
    border: 0.5rem solid #004aad;
    border-radius: 999px;
    animation: consultorimg 2s ease-in forwards;
    animation-delay: 3s;
    animation-fill-mode: both;
  }

#imgusuario{
    width: 100%;
    height: 100%;
    object-fit: cover;
    text-align: center;
}

@keyframes consultorimg{

    0%{

        opacity: 0;
        scale: 0.7;

    }

    100%{

        opacity: 1;
        scale: 1;

    }

}

#perfil{

    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 0;

}

#nomeusuario{

    font-size: 17pt;
    color: white;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    margin: 0;
    margin-bottom: 0.5rem;
    animation: perfilusuario 1.5s ease-in forwards;
    animation-delay: 4s;
    animation-fill-mode: both;

}

#idadeusuario{

    font-size: 13pt;
    color: #004aad;
    font-weight: 700;
    font-style: italic;
    margin: 0;
    margin-bottom: 3rem;
    animation: perfilusuario 1.5s ease-in forwards;
    animation-delay: 3s;
    animation-fill-mode: both;
    
}

.left{

    display: flex;
    align-items: start;
    width: 100%;
    height: auto;
}

#lineusuario{

    height: 0.4rem;
    background-image: linear-gradient(to right, #00b3f6, #004aad);
    animation: linein 1s ease-in forwards;
    animation-fill-mode: both;
    animation-delay: 4s;
    border-radius: 99.9px;

}

@keyframes perfilusuario{

    0%{

    opacity: 0;        

    }

    50%{

    opacity: 0.7;

    }

    100%{

        opacity: 1;

    }

}

@keyframes linein{

    0%{
        width: 0%;
    }

    100%{

        width: 100%;
        border-radius: 0;

    }

}

#modalError{
    background-color: transparent;
    z-index: 8000;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#iconError{

    animation: erro 1s ease-in forwards;
    opacity: 0;
    animation-fill-mode: both;
}


@keyframes erro {

    0%{

        opacity: 0;
        scale: 0.8;

    }

    
    100%{

        opacity: 1;
        scale: 1;

    }
}

#full-container{

    width: 100%;
    height: auto;
    position: absolute;
    display: flex;
    flex-direction: row-reverse;

}

#full{

    width: 2rem;
    display: block;
    padding: 1.5rem;
    
}

#full:hover{

    cursor: pointer;
}

#header{

    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;

}

#logo{

    width: 8rem;
    height: auto;
    margin-top: 2rem;

}

#title1{

    font-family: Nunito, sans-serif;
    font-size: 30pt;
    color: white;
    text-align: center;
    margin: 1rem;
    margin-top: 0rem;
    line-height: 1;
    font-weight: 900;

}

#center{

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.centerbox{
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;     
    align-items: center;  

}

#boxforms{
    height: auto;
    width: 85%;
    background-color: white;
    border-radius: 3rem;
    margin: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-right: 0.2rem;
    padding-left: 0.2rem;
    padding-top: 2rem;
    padding-bottom: 5rem;
    margin-bottom: 0rem;
    box-shadow: 0.5rem 0.5rem 0.5rem 0rem rgba(0, 0, 0, 0.400);
    max-width: 1000px !important;

}

#title2{

    font-family: Nunito, sans-serif;
    font-size: 25pt;
    color: #00b3f6;
    line-height: 0.7;
    margin-top: 2rem;
    font-weight: 900;
    text-align: center;


}

#title3 {
    
    font-family: Nunito, sans-serif;
    font-size: 14pt;
    color: #004aad;
    text-decoration: underline 1px;
    margin-bottom: 0.5rem;
    text-align: center;
    margin-left: 5%;
    margin-right: 5%;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 0.6rem;
    

}

.centerleft{

    width: 100%;
    height: auto;
    

}

.titleforms {

    font-family: Nunito, sans-serif;
    font-size: 14pt;
    justify-content: left;
    margin-left: 0.8rem;
    color: black;
    margin-top: 1rem;
    font-weight: 800;
    

}

.inputstyle{

    width: 100%;
    height: 4.5rem;
    border: solid 0.15rem #00b3f6;
    border-radius: 99.9rem;
    padding-left: 1rem;
    padding-right: 1rem;
    font-family: Nunito, sans-serif;
    color: black;
    font-size: 13pt;
    box-sizing: border-box;
    font-weight: 500;
    padding-bottom: 0rem;
    
   
}

.inputstyle:focus {

outline: none;
border: solid 0.15rem #004aad;

}

.dropstyle{

    width: 100%;
    height: 4.5rem;
    border: solid 0.15rem #00b3f6;
    border-radius: 99.9rem;
    padding-left: 1rem;
    padding-right: 1rem;
    font-family: Nunito, sans-serif;
    color: gray;
    font-size: 12pt;
    appearance: none;
    background-image: url("../imagens/seta-azul.webp");
    background-size: 1.8rem;
    background-repeat: no-repeat;
    background-position: right 8% center;
    box-sizing: border-box;
    cursor: pointer;
    font-weight: 500;
    background-color: white;
    padding-bottom: 0rem;

}

.dropstyle:focus {
    
    color: black;
    outline: none;
    border: solid 0.15rem #004aad;
    background-image: url("../imagens/seta.webp");
}

.dropstyle:hover {
    
    outline: none;
    background-image: url("../imagens/seta.webp");
}

.responsavel {
    display: none;
  }

  .responsavel.show {
    display: block;
    animation: inandout 1s ease-in-out forwards;
  }

  #cpfresponsavel, #titlecpfresponsavel {
    animation: opacidade 1.5s ease-in;
  }

  @keyframes opacidade {
    0%{

        opacity: 0;
    }

    50%{

        opacity: 0;
    }

    100%{

        opacity: 1;
    }
  }

  .buttonfotostyle{

    width: 100%;
    height: 4.5rem;
    border: 0;
    border-radius: 99.9rem;
    box-sizing: border-box;
    padding-right: 1.5rem;
    background-color: #00b3f6;
    margin-top: 1.5rem;
    background-image: url("../imagens/icon-foto.webp");
    background-repeat: no-repeat;
    background-size: 1.5rem;
    background-position: right 10% center;
    font-size: 14pt;
    font-family: Nunito, sans-serif;
    font-weight: 900;
    color: white;
   
}

.buttonfotostyle:hover {

background-color: #004aad;
background-image: url("../imagens/icon-foto-azul.webp");
color: #00b3f6;

}

.confirme{

    background-color: green !important;
    background-image: url("../imagens/confirmar.webp") !important;
    
}

.confirme:hover{

    color: white;
}


#titlecep{

    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-top: 1.5rem;
    
}

#searchcep{

    color: #004aad;
    padding-right: 1rem;
    line-height: 1.6;
    font-size: 11pt;

}

#campocep{

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;

}

#buttoncep{

    width: 1.7rem;
    z-index: 0;
    display: block;
    position: absolute;
    padding-right: 6%;
    padding-top: 0.1rem;
    
    
}



#buttoncep:hover{

    cursor: pointer;
}

#colunas{

    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    margin-bottom: 2.5rem;

}

.titleendereco{

    font-family: Nunito, sans-serif;
    font-size: 12pt;
    justify-content: left;
    margin-left: 0.8rem;
    color: black;
    margin-top: 1rem;
    font-weight: 800;


}

#space{

    width: 10%;
}

.divisao{

    width: 45%;
}

.inputendereco{

    width: 100%;
    height: 3.5rem;
    border: solid 0.15rem #00b3f6;
    border-radius: 99.9rem;
    padding-left: 1rem;
    padding-right: 1rem;
    font-family: Nunito, sans-serif;
    color: black;
    font-size: 12pt;
    box-sizing: border-box;
    font-weight: 500;
    padding-bottom: 0rem;
   
}

.inputendereco:focus {

outline: none;
border: solid 0.15rem #004aad;

}

#consultoresacqua, #consultores-nota{

    background-color: transparent;
    background-image: url("../imagens/profile.webp");
    background-size: 2rem;
    background-repeat: no-repeat;
    background-position: right 5% center;
    text-align: left;
    box-sizing: border-box;
    cursor: pointer;
    padding-left: 1rem;
    padding-right: 1rem;
    font-family: Nunito, sans-serif;
    color: gray;
    font-size: 12pt;
    box-sizing: border-box;
    font-weight: 500;
    padding-bottom: 0rem;
    padding-right: 0rem;

}

#consultoresacqua:hover{
    
    background-image: url("../imagens/profile-azul.webp");
    
}

#consultoresacqua:focus{
    outline: none !important;
    color: black;
}

#consultores-nota:hover{
    
    background-image: url("../imagens/profile-azul.webp");
    
}

#consultores-nota:focus{
    outline: none !important;
    color: black;
}


#enviar, #enviar-notas, #enviar-senha{
    width: 100%;
    height: 3.5rem;
    font-family: Nunito, sans-serif;
    font-size: 20pt;
    color: white;
    background-image: linear-gradient(to right, #00b3f6, #004aad);
    border: 0rem;
    border-radius: 99.9rem;
    margin-top: 2rem;
    cursor: pointer;
    font-weight: 900;

}

#enviar:hover{

    background-image: linear-gradient(to right, #00b3f6, #47A896);

}

#enviar-notas:hover{

    background-image: linear-gradient(to right, #00b3f6, #47A896);

}

#enviar-senha:hover{

    background-image: linear-gradient(to right, #00b3f6, #47A896);

}

#rodape{

    width: 100%;
    height: auto;
    background-color: white;
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 3rem;
    
}

#favicon{

    width: 30%;
    height: auto;
    margin-top: 1rem;

}

#bodytext{

    font-family: Nunito, sans-serif;
    text-align: justify;
    font-size: 11pt;
    line-height: 1.2;
    margin-left: 1rem;
    margin-right: 1rem;
    font-weight: 500;
    
}

.link{

    color: #004aad;
    text-decoration: underline;

}

#sign{

    font-family: Nunito, sans-serif;
    color: #004aad;
    font-size: 14pt;
    margin: 2rem;
    margin-top: 1.5rem;
    margin-bottom: 0rem;
    line-height: 1;
    text-align: center;
    font-weight: 800;

}

#input-button{

    background-color: transparent;
    background-image: url("../imagens/upload.webp");
    background-size: 2rem;
    background-repeat: no-repeat;
    background-position: right 5% center;
    text-align: left;
    box-sizing: border-box;
    cursor: pointer;
    padding-left: 1rem;
    padding-right: 1rem;
    font-family: Nunito, sans-serif;
    color: gray;
    font-size: 12pt;
    box-sizing: border-box;
    font-weight: 500;
    padding-bottom: 0rem;
    padding-right: 0rem;

}

#input-button:hover{
    
    background-image: url("../imagens/upload-azul.webp");
    
}

#input-button:focus{
    outline: none !important;
    color: black;
}

#inputFile{
    display: none;
}

.input-add{
    background-color: #47A896 !important;
    font-weight: 900 !important;
    color: white !important;
    border: none !important;
    background-image: url("../imagens/confirmar.webp") !important;
}

.input-add-refazer{
    background-color: red !important;
    font-weight: 900 !important;
    color: white !important;
    border: none !important;
    background-image: url("../imagens/refazer.webp") !important;
    transition: background 0.5s;
}

/* NOTAS NOTAS NOTAS NOTAS NOTAS NOTAS NOTAS NOTAS 
NOTAS NOTAS NOTAS NOTAS NOTAS NOTAS NOTAS NOTAS 
NOTAS NOTAS NOTAS NOTAS NOTAS NOTAS NOTAS NOTAS 
NOTAS NOTAS NOTAS NOTAS NOTAS NOTAS NOTAS NOTAS 
NOTAS NOTAS NOTAS NOTAS NOTAS NOTAS NOTAS NOTAS 
NOTAS NOTAS NOTAS NOTAS NOTAS NOTAS NOTAS NOTAS 
NOTAS NOTAS NOTAS NOTAS NOTAS NOTAS NOTAS NOTAS 
*/

/* Tamanho 325 de largura de tela */

#title-modal-notas{
    font-family: Nunito, sans-serif;
    font-size: 13pt;
    text-align: center;
    padding: 0rem;
    padding-bottom: 0rem;
    padding-left: 0rem;
    margin: 20vh 0;
    margin-bottom: 0.2rem;
    color: #00b3f6;
    position: relative;
    justify-content: center;
    align-items: center;
    font-weight: 900;

}

.titleforms-notas{
    font-family: Nunito, sans-serif;
    justify-content: left;
    margin-left: 0.8rem;
    color: black;
    font-weight: 800;
    font-size: 12pt;
    margin-top: 0;
}

#camposenha{

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;

}

.content-senha{
    width: 70%;
    padding: 50px 30px;
    max-width: 800px;
}

#senha{
    font-size: 13pt;
}

#enviar-senha{
    font-size: 16pt;
    height: 3rem;
}

#button-senha{
    width: 1.5rem;
    z-index: 0;
    display: block;
    position: absolute;
    padding-right: 6%;
    padding-top: 0.1rem; 
}

#button-senha:hover{
    cursor: pointer;
}

.title1-notas{
    font-family: Nunito, sans-serif;
    color: white;
    text-align: center;
    line-height: 1;
    font-weight: 900;
    font-size: 22pt ;
    margin: 15px 0px 5px 0px;
}

.title3-notas{
    font-family: Nunito, sans-serif;
    color: #004aad;
    text-decoration: underline 1px;
    text-align: center;
    font-weight: 500;
    line-height: 1.2;
    font-size: 12pt;
    margin: 15px 30px 0px 30px;
}

.titleforms-notas{
    font-size: 13pt;
    margin-top: 20px;
}

.inputstyle-notas{
    font-size: 12pt !important;
}

#modal-senha {
    position: fixed;
    z-index: 200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    pointer-events: auto; /* Desativa eventos do mouse enquanto o modal está escondido */
    transform: scale(1);
    overflow: hidden;
    padding-bottom: 50rem;
    
    /* Retirar */
    /* display: none; */
    
  }
  
#modal-senha.showNotas {
    opacity: 0;
    pointer-events: none;
}

.sign-notas{
    font-family: Nunito, sans-serif;
    color: #004aad;
    font-size: 14pt;
    margin: 2rem;
    margin-top: 1.5rem;
    margin-bottom: 0rem;
    line-height: 1;
    text-align: center;
    font-weight: 800;
}

.sign-edicao{
    margin-bottom: 5rem;
}


/* .modal-notas{
    RETIRAR
    opacity: 1 !important;
    transform: scale(1) !important;
    display: block !important;
}  */


#msgerror-notas{
    font-family: Nunito, sans-serif;
    color: red;
    display: flex;
    margin: 0rem;
    margin-left: 5%;
    margin-bottom: 0rem;
    text-align: left;
    line-height: 1.1;
    align-items: center;
    justify-content: center;
    margin-top: 0rem;
    font-weight: 500;
    margin-right: 5%;
    padding: 0.2rem;
    font-size: 11pt;
}


/* EDIÇÃO NOTAS EDIÇÃO NOTAS EDIÇÃO NOTAS EDIÇÃO NOTAS EDIÇÃO NOTAS
EDIÇÃO NOTAS EDIÇÃO NOTAS EDIÇÃO NOTAS EDIÇÃO NOTAS EDIÇÃO NOTAS
EDIÇÃO NOTAS EDIÇÃO NOTAS EDIÇÃO NOTAS EDIÇÃO NOTAS EDIÇÃO NOTAS
EDIÇÃO NOTAS EDIÇÃO NOTAS EDIÇÃO NOTAS EDIÇÃO NOTAS EDIÇÃO NOTAS
EDIÇÃO NOTAS EDIÇÃO NOTAS EDIÇÃO NOTAS EDIÇÃO NOTAS EDIÇÃO NOTAS
EDIÇÃO NOTAS EDIÇÃO NOTAS EDIÇÃO NOTAS EDIÇÃO NOTAS EDIÇÃO NOTAS */

.title-page-edicao-notas {
    font-family: Nunito, sans-serif;
    font-size: 25pt;
    line-height: 0.7;
    font-weight: 900;
    text-align: center;
    color: white;
    margin: 80px 0 40px 0;
}

#body-loading{
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    margin: 0 auto;
    border: 0;
    z-index: 20000;

    /* Retirar */
    /* display: none; */
    
}

.saida-loading-animation{
    animation: saida-loading forwards 1s;
}

.entrada-loading-animation{
    animation: entrada-loading forwards 1s;
}

@keyframes saida-loading{
    0%{
        opacity: 1;
       
        
    }
    100%{
        opacity: 0;
        display: none;
    }


}

@keyframes entrada-loading{
    0%{
        opacity: 0;
        
    }
    100%{
        opacity: 1;
        display: auto;
    }


}

.load-2 .line:nth-last-child(1) {
    animation: loadingB 1.5s 1s infinite;
  }
  .load-2 .line:nth-last-child(2) {
    animation: loadingB 1.5s 0.5s infinite;
  }
  .load-2 .line:nth-last-child(3) {
    animation: loadingB 1.5s 0s infinite;
  }

  .line {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background-color: #004aad;
  }

  @keyframes loadingB {
    0% {
      width: 30px;
    }
    50% {
      width: 70px;
    }
    100% {
      width: 30px;
    }
  }

  .title-edicao-notas{
    color: white;
    margin: 0;
    margin-bottom: 0.8rem;
    text-align: center;
    line-height: 1;
    font-size: 12pt;
}

#div-validadas, #div-erros{
    width: 100%;
    opacity: 0;
 }

 #tabela-validadas, #tabela-erros, #tabela-confirmacao {
    border: 0;
    margin: 0 auto;
    border-spacing: 0;
    width: 100%; /* A tabela deve ocupar 100% do contêiner */
    border-collapse: collapse; /* Colapsa as bordas da tabela */
    table-layout: auto;
}

.tabela-container{
    margin: 0 auto;
    overflow-x: scroll !important; /* Permite rolagem horizontal */
    width: 85%;
    border: solid 3px white;
    box-sizing: border-box;
    border-collapse: collapse; /* Colapsa as bordas da tabela */
}

.container-confirmacao {
    width: 100%; /* Certifique-se de que a largura seja 100% */
    height: auto;
    overflow-x: scroll; /* Rolagem horizontal se necessário */
    overflow-y: visible; /* O conteúdo vai controlar a altura */
    border: solid 3px black; /* Mantém a borda */
    box-sizing: border-box; /* Assegura que padding e bordas estão inclusos no tamanho total */
}

.modal-confirmar {
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 5000;
    background-color: rgba(255, 255, 255, 0.9);
    top: 0;
    opacity: 0; /* Inicialmente invisível */
    visibility: hidden; /* Inicialmente oculto */
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out; /* Transição suave */
    pointer-events: none; /* Desativa cliques enquanto invisível */
    display: block;
    justify-content: center;
    overflow-y: scroll;
    padding: 20px; /* Adiciona algum espaço ao redor */
    box-sizing: border-box; /* Inclui padding e bordas no cálculo do tamanho */
}

.show-modal-confirmar {
    opacity: 1; /* Torna o modal visível */
    visibility: visible; /* Ativa o modal na estrutura do DOM */
    pointer-events: auto; /* Habilita eventos de clique */
    }

#title-modal-confirmacao{
    color: black;
    line-height: 1 ;
    font-size: 14pt;
    font-weight: 900;
    text-align: center;
    /* margin-top: 220px; */
    padding: 0px 15px;
}

 .tabelas-show{
     animation: opacidade 1.5s forwards;
 }
 
 .body-edicao-notas{
     background-image: url('../imagens/bg.webp');
     background-size:auto;
     background-repeat: repeat;
     background-position: center;
     font-family: Nunito, sans-serif;
     width: 100%;
     background-color: white;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     background-size: cover !important;
 }
 
 .title-tabela-notas{
     font-size: 10pt;
     font-weight: 900;
     color: #00b3f6;
     background-color: white;
     border: solid 2px white;
     margin: 0;
     box-sizing: border-box;
     padding: 5px 2px;
     line-height: 1;
     white-space: nowrap;
     
 }
 
 .title-confirmacao{
     color: white;
     background-color: black;
     border: solid 2px black;
 }
 
 .content-tabela-notas{
     color: white;
     border: solid 2px white;
     text-align: center;
     font-size: 9pt;
     padding: 5px 10px;
     line-height: 1;
     white-space: nowrap;
     box-sizing: border-box;
 }
 
 .content-confirmacao{
     color: black;
     border: solid 2px black;
     width: 100%;
 }
 
 .coluna-button-validada{
     background-color: white;
     border: 0;
     width: 40px;
     height: 32px;
     /* border-radius: 0.5rem; */
     background-image: url('/static/imagens/bin.webp');
     background-repeat: no-repeat;
     background-size: 18px;
     background-position: center center;
     box-sizing: border-box;
     margin: 0;
     
 }
 
 .coluna-button-validada:hover{
     background-image: url('/static/imagens/bin-azul.webp');
 }
 
 .coluna-button-erro{
     background-color: white;
     border: 0;
     width: 40px;
     height: 32px;
     /* border-radius: 0.5rem; */
     background-image: url('/static/imagens/add.webp');
     background-repeat: no-repeat;
     background-size: 18px;
     background-position: center center;
     box-sizing: border-box;
     margin: 0;
     
 }
 
 .coluna-button-erro:hover{
     background-image: url('/static/imagens/add-azul.webp');
 }
 
 .title-erro{
     margin-top: 50px;
 }
 
 .td-setas{
     position: sticky; /* Fixa a célula na tabela */
     right: 0; /* Fixa a célula na borda direita */
     z-index: 1000; /* Garante que a célula fique sobre as outras células */
     box-sizing: border-box;
     /* outline: solid 2px white; */
     display: flex;
     background-color: white;
     outline: solid 1px white;
     width: 100%;
     height: 100%;
 }
 
 .th-setas {
     position: sticky; /* Fixa o cabeçalho da tabela ao rolar */
     right: 0; /* Fixa o cabeçalho no topo */
     background-color: white !important; /* Cor de fundo do cabeçalho */
     z-index: 2000; /* Garante que o cabeçalho fique acima da tabela */
     outline: solid 2px white;
     width: 100%;
     height: 100%;
 }
 
 
 /* Estilo para células editáveis */
 td[contenteditable="true"] {
     outline: none; /* Remove a borda padrão */
     transition: border 0.3s ease; /* Transição suave para a borda */
 }
 
 /* Estilo para células quando estão em modo de edição (selecionadas) */
 td[contenteditable="true"]:focus {
     border: 3px solid red; /* Altera a cor da borda durante a edição (azul claro) */
     background-color: rgba(255, 255, 255, 0.3);
     border-radius: 15px; /* Opcional: borda arredondada */
 }
 
 /* Para navegadores WebKit (Chrome, Safari) */
 .tabela-container::-webkit-scrollbar {
     width: 10px; /* Largura da scrollbar vertical */
     height: 15px; /* Altura da scrollbar horizontal */
 }
 
 .tabela-container::-webkit-scrollbar-track {
     background: #ffffff; /* Cor de fundo da área de rolagem */
 }
 
 .tabela-container::-webkit-scrollbar-thumb {
     background: #004aad; /* Cor da parte que pode ser arrastada */
     border-radius: 15px; /* Bordas arredondadas */
 }
 
 .tabela-container::-webkit-scrollbar-thumb:hover {
     background: #00b3f6; /* Cor ao passar o mouse */
 }
 
 /* Para Firefox */
 /* .tabela-container {
     scrollbar-width: thin; 
     scrollbar-color: #004aad #ffffff; 
 } */
 

 .container-confirmacao::-webkit-scrollbar {
    width: 10px; /* Largura da scrollbar vertical */
    height: 15px; /* Altura da scrollbar horizontal */
}

 .container-confirmacao::-webkit-scrollbar-track {
     background: black; /* Cor de fundo da área de rolagem */
 }
 
 .container-confirmacao::-webkit-scrollbar-thumb {
     background: white; /* Cor da parte que pode ser arrastada */
     border-radius: 15px; /* Bordas arredondadas */
 }
 
 .container-confirmacao::-webkit-scrollbar-thumb:hover {
     background: gray; /* Cor ao passar o mouse */
 }
 
 /* Para Firefox */
 /* .container-confirmacao {
     scrollbar-width: thin; 
     scrollbar-color: white black; 
 } */
 
 .animacao-seta-validadas{
     animation: animacao-seta-validadas 1s forwards;
 }
 
 .animacao-seta-erros{
     animation: animacao-seta-erros 1s forwards;
 }
 
 @keyframes animacao-seta-validadas{
     0%{
         opacity: 1;
         transform: translateY(0px);
     }
     100%{
         opacity: 0;
         transform: translateY(30px);
     }
 }
 
 @keyframes animacao-seta-erros{
     0%{
         opacity: 1;
         transform: translateY(0px);
     }
     100%{
         opacity: 0;
         transform: translateY(-30px);
     }
 }
 
 .animacao-nova-linha{
     animation: animacao-nova-linha 1s forwards;
 }
 
 @keyframes animacao-nova-linha{
     0%{
         opacity: 0;
     }
     100%{
         opacity: 1;
     }
 }
 
 #div-confirmar-button{
     display: flex;
     width: 100%;
     height: 80px;
     border-radius: 35px 35px 0px 0px;
     background-color: white;
     position: fixed;
     bottom: 0;
     z-index: 3000;
     justify-content: space-between;
     align-items: center;
     box-shadow: 0px -10px 15px rgba(0, 0, 0, 0.4); /* Espalha a sombra */
 }
        
 #button-notas{
     width: 40px;
     height: 40px;
     border: none;
     border-radius: 100px;
     background-color: #004aad;
     background-image: url('/static/imagens/notas.webp');
     background-repeat: no-repeat;
     background-position: center center;
     background-size: 20px;
     margin-left: 40px;
     transition: background 0.5s;
     min-width: 40px;
 }
 
 #button-notas:hover{
     background-color: #00b3f6;
 }
 
 #button-confirmar-notas{
     font-family: inherit;
     font-size: 14pt;
     width: 140px;
     height: 40px;
     color: white;
     background-color: #004aad;
     font-weight: 900;
     border: 0;
     border-radius: 100px;
     margin-right: 40px;
     transition: background 0.5s;
 }
 
 #button-confirmar-notas:hover{
     background-color: #00b3f6;
 }
 
 #div-buttons-confirmacao{
     width: 100%;
     height: 120px;
     display: flex;
     flex-direction: row;
     justify-content: center;
     align-items: center;
 }
 
 .buttons-confirmacao{
     font-family: inherit;
     background-color: red;
     color: white;
     font-weight: 900;
     font-size: 14pt;
     border-radius: 100px;
     border: 0;
     height: 40px;
     width: 120px;
 
 }
 
 #button-voltar-confirmacao{
     width: 50px;
     background-color: black;
     background-image: url('/static/imagens/voltar.webp');
     background-repeat: no-repeat;
     background-position: center center;
     background-size: 18px;
     margin-right: 50px;
 }
 
 .buttons-confirmacao:hover{
     background-color: rgb(102, 15, 15);
 }
 
   #corponotas{
     width: 100%;
     height: 100vh; 
     top: 0;
     position: fixed;
     display: none;
     background-color: rgba(255, 255, 255, 0.940);
     align-items: center;
     justify-content: flex-start; 
     z-index: 50000;
       
 }
 
 .fecharnotas-container {
     display: flex;
     position: absolute;
     top: -1rem;
     right: 1rem;
     margin: 0;
 }
 
 #fecharnotas {
     color: #004aad;
     font-size: 50pt;
     font-family: Nunito, sans-serif;
     font-weight: 900;
     cursor: pointer;
     margin: 0;
     height: 50px;
     
 }
 
 #fecharnotas:hover,
 #fechanotas:focus {
     color: #00b3f6;
     text-decoration: none;
     cursor: pointer;
 }
 
 .body-recomendacoes{
     width: 100%;
     max-height: 100vh;
     padding: 2rem; /* Adiciona espaçamento interno */
     overflow-y: auto; 
     margin-bottom: 60px;
 }
 
 .title-notas{
     font-size: 12pt;
     color: #004aad;
     font-weight: 900;
     text-align: left;
     margin-top: 80px;
     margin-bottom: 30px;
 }
 
 .subtitle-notas{
     font-size: 12pt;
     color: black;
     font-weight: 700;
     text-align: left;
     margin-bottom: 10px;
 }
 
 .content-notas{
     font-size: 11pt;
     color: black;
     text-align: left;
     margin-bottom: 10px;
     font-weight: 500;
 }

 #responsavel-emissao{
    font-size: 11pt;
    font-weight: 700;
    opacity: 0;
    color: white;
    margin-top: 45px;
    margin-bottom: 0px;
    line-height: 1.2;
    text-align: center;
    padding: 0px 30px;
}

.title-page-edicao-notas {
    color: white !important;
    margin-bottom: 50px;
}



/* NOTAS PROCESSAMENTO NOTAS PROCESSAMENTO NOTAS PROCESSAMENTO NOTAS PROCESSAMENTO 
NOTAS PROCESSAMENTO NOTAS PROCESSAMENTO NOTAS PROCESSAMENTO NOTAS PROCESSAMENTO 
NOTAS PROCESSAMENTO NOTAS PROCESSAMENTO NOTAS PROCESSAMENTO NOTAS PROCESSAMENTO 
NOTAS PROCESSAMENTO NOTAS PROCESSAMENTO NOTAS PROCESSAMENTO NOTAS PROCESSAMENTO 
NOTAS PROCESSAMENTO NOTAS PROCESSAMENTO NOTAS PROCESSAMENTO NOTAS PROCESSAMENTO 
NOTAS PROCESSAMENTO NOTAS PROCESSAMENTO NOTAS PROCESSAMENTO NOTAS PROCESSAMENTO  */


.subtitles-notasucesso{

    font-size: 14pt;
    color: white;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    margin: 0;
    margin-bottom: 0.5rem;
    animation: perfilusuario 1.5s ease-in forwards;
    animation-delay: 4s;
    animation-fill-mode: both;
    width: auto;

}

.space-subtitles{
    margin-top: 30px;
}

.space-tables{
    margin-bottom: 30px;
}

.animation-tables-notasucesso{
    animation: perfilusuario 1.5s ease-in forwards;
    animation-delay: 4s;
    animation-fill-mode: both;
}

.container-download{
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-download{
    width: 25px;
}

.container-tabela-download{
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-table{
    flex: 1;
    margin-right: 10px;
}

#container-emitidas, #container-nao-emitidas {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#button-autorizada{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #004aad;
    border: 0;
    border-radius: 100px;
    color: white;
    font-family: Nunito;
    font-weight: 900;
    font-size: 14pt;
    padding: 10px 30px;
    transition: 0.5s;
    margin-top: 30px;
    animation: animation-button-autorizada 1s forwards;
    animation-delay: 4.5s;
    opacity: 0;
    
}

@keyframes animation-button-autorizada {
    0%{
        opacity: 0;
    }

    100%{
        opacity: 1;
    }
}

#button-autorizada:hover{
    transform: scale(1.1);
}

#icon-button-autorizada{
    width: 20px;
    margin-left: 5px;
    margin-bottom: 2px;

}

#link-button-autorizada{
 text-decoration: none;
}

.img-reload-notas-processadas{
    margin-top: 30px !important;
}

.sucesso-notas{
    background-color: black !important;
}

/* FALHA NOTAS FALHA NOTAS FALHA NOTAS FALHA NOTAS 
FALHA NOTAS FALHA NOTAS FALHA NOTAS FALHA NOTAS 
FALHA NOTAS FALHA NOTAS FALHA NOTAS FALHA NOTAS 
FALHA NOTAS FALHA NOTAS FALHA NOTAS FALHA NOTAS  */

.bodyfalha-notas{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh !important;
}

.iconError-notas{
    margin-top: 40px !important;
}

.textError-notas{
    font-size: 14pt;
}

#codigo-erro{
    background-color: white;
    color: red !important;
    font-size: 11pt;
    font-weight: 500;
    border: 0;
    border-radius: 12px;
    text-align: center;
    padding: 15px;
    margin: 0 auto;
    max-width: 75%;
    height: auto;
    text-align: center;
}

.imgreload-notas{
    margin: 0 !important;
    padding: 0 !important;
    margin-top: 10px !important;
    margin-bottom: 40px !important;
    
}

.v-center{
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    
}