* {
	margin: 0;
	padding: 0;
	border: none;
  box-sizing: border-box;
  font-family: Helvetica, Lucida Sans, Verdana;  
}


@media only screen and (min-width: 768px) {
  body {
    background-color: white;
  }
}
@media only screen and (min-width: 450px) {
  body {
    background-color: white;
  }
}
@page {
  size: A4; /* ou especificar largura e altura em unidades */
  margin: 20mm; 
  margin-bottom: 277mm; /* Define a margem inferior folha A4 para posicionar o rodapé */
}

/*        mensagens de erro         */
.error-body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: #721c24;
    font-family: Arial, sans-serif;
}
.error-msg {
    padding: 20px;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    background-color: #f8d7da;
    color: #721c24;
    font-size: 18px;
    text-align: center;
}


/*              cookies               */
.cookieConsentContainer{
  z-index:999;
  width:350px;
  min-height:20px;
  box-sizing:border-box;
  padding:30px 30px 30px 30px;
  background:#232323;
  overflow:hidden;
  position:fixed;
  bottom:30px;
  right:30px;
  display:none
}
.cookieConsentContainer .cookieTitle a{
  font-family:OpenSans,arial,sans-serif;
  color:#fff;
  font-size:22px;
  line-height:20px;
  display:block
}
.cookieConsentContainer .cookieDesc p{
  margin:0;
  padding:0;
  font-family:OpenSans,arial,sans-serif;
  color:#fff;
  font-size:13px;
  line-height:20px;
  display:block;
  margin-top:10px
}
.cookieConsentContainer .cookieDesc a{
  font-family:OpenSans,arial,sans-serif;
  color:#fff;text-decoration:underline
}
.cookieConsentContainer .cookieButton a{
  display:inline-block;
  font-family:OpenSans,arial,sans-serif;
  color:#fff;
  font-size:14px;
  font-weight:700;
  margin-top:14px;
  background:#000;
  box-sizing:border-box;
  padding:15px 24px;
  text-align:center;
  transition:background .3s
}
.cookieConsentContainer .cookieButton a:hover{
  cursor:pointer;
  background:#3e9b67
}
@media (max-width:980px){
  .cookieConsentContainer{
    bottom:0!important;
    left:0!important;
    width:100%!important
  }
}

/*            padrões html             */
header {
  display: flex;
  flex-direction: column; /* Muda a direção dos itens para vertical */
  justify-content: center; /* Centraliza os itens verticalmente */
  align-items: center;     /* Centraliza os itens horizontalmente */
  position: relative;
  background: #E6E6E6;
  padding: 5px;
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  color: #555555;
  box-shadow: 1px 1px 5px #ccc;
}

 
section {
  display: flex;
  justify-content: center; /* Centraliza horizontalmente */
  align-items: center; /* Centraliza verticalmente */
}

a { text-decoration: none; }
a.link { color: white; }


/*       alinhamentos celulas da td     */
td.alinc{  text-align: center;  }
td.alinr{  text-align: right;  }

label {
  margin-left: 5px;
  color: gray;
/*  line-height: 1.5; */
  display: block;
  margin-top: 1.15em;  
  margin-bottom: .25em;
}
label.pdf{
  font-size: 13px;
}

textarea {
  background-color: #FAF4F4;      
  font-size:14px; 
  border:1px solid rgb(190, 190, 190);
  border-radius: 5px;     
  max-width: 500px;  
  max-height: 60px;
  padding: 5px 5px;
  resize: none;
  overflow: hidden;  
}
textarea:focus, input:focus {
  /*box-shadow: 0 0 0 0;*/
  outline: 0;
  border-color: lightblue;
}
textarea.print {
  max-width: 500px;  
  height: 60px;  
}
@media only screen and (min-width: 400px) {
  textarea {
    width: 100%;
  }
}

form {
  display: inline-block;
  vertical-align: top;
}

iframe {
  width: 100%; /* Define a largura do iframe */
  height: auto; /* Define a altura automática do iframe */
  border: none; /* Remove a borda do iframe */
  overflow: hidden; /* Esconde a barra de rolagem do iframe */
}

/*          padrões html -  botões            */
button {
  background: #808080;
  color: white;
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.5);
  border: none;
  padding: 6px 16px;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
}
button:hover {
    background-color: #1B3B54;
}
button.sair {
  background: transparent;
  background-image: transparent;  
  text-align: none;
  color: none;  
  padding: 0;  
  font-size: 0;
  border-radius: 0;  
  right: 5px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;  
}
button.busca {
    display: inline-block;  
    margin-right: 10px;
    margin-top: 5px;
    margin-bottom: 5px;    
}
button.list {
    display: inline-block;  
    text-align: center;    
    background-color: #87CEEB;
    color: white;    
    padding: 5px 10px;    
    margin-top: 6px;
    margin-bottom: 6px;    
}
button.list:hover {
    background-color: #4682B4; 
    animation: list 0.5s ease forwards;
}
button.list.off {
    background-color: indianred;
}
button.list.off:hover {
    background-color: red; 
    animation: list 0.5s ease forwards;
}
/* Definição da animação de tremor */
@keyframes list {
    0% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    50% { transform: translateX(2px); }
    75% { transform: translateX(-2px); }
    100% { transform: translateX(0); }
}
button.list.disable {
  background-color: #ccc;
  box-shadow: none;
  animation: list 0s;  
  transform: none;
  transition: none;
  cursor: not-allowed;   
}
button.lista_acao{
  display: inline-block;  
  text-align: center;    
  background:none;
  background-image: transparent;
  border: none;
  padding: 2px 2px;  
  margin-left: 5px;
  cursor: pointer;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s; 
  margin-top: 6px;
  margin-bottom: 6px;    
}
button.lista_acao.form_int{
  margin-left: 0;
}
button.lista_acao:hover, button.lista_acao.form_int:hover{
  background-image: transparent;   
  background: #EFFBF5;  
  transform: scale(1.01);
  transform: translateX(1px);
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);
}
button.lista_acao.disable{
  background-color: #ccc;
  pointer-events: none; /* Desativa a capacidade de clicar */  
}
button.rodape{ 
    margin-top: 10px;
    margin-bottom: 5px;
}
button.rodape1{ 
    margin-top: 15px;
}
@media only screen and (max-width: 768px) {
  button {
    padding: 8px 11px;
    font-size: 10px;    
  }    
  button.busca {
    margin-left: 5px;
  }   
  button.list {
    width: 65px;
    padding: 3px 8px;
    margin: 2px;
    font-size: 10px;    
  } 
}


/*                padrões html -  inputs              */
input[type="text"], input[type="password"], input[type="number"]{
  background-color: #FAF4F4;      
  margin-left: 5px;  
  margin-right: 5px;
  width:300px;  
  height: auto;
  font-size:14px; 
  padding:8px;
  border:1px solid rgb(190, 190, 190);
  border-radius: 5px;    
}
input.obs[type="text"]{
  font-size:12px; 
}
input.drop{
  margin-top: 4px;
  font-size: 13px;
}
input{ background-color: #FAF4F4; }
/*       alinhamentos celulas do input     */
input.alinc{  text-align: center; }
input.alinr{  text-align: right;  }
input.alincc{  
  justify-content: center;
  text-align: center; 
}
/*        tamanhos      */
input.t30{ width:30px; }
input.t35{ width:35px; }
input.t40{ width:40px; }
input.t45{ width:45px; }
input.t50{ width:50px; }
input.t60{ width:60px; }
input.t70{ width:70px; }
input.t80{ width:80px; }
input.t90{ width:90px; }
input.t95{ width:95px; }
input.t100{ width:100px; }
input.t110{ width:110px; }
input.t120{ width:120px; }
input.t130{ width:130px; }
input.t200{ width:200px; }
input.t250{ width:250px; }
input.t270{ width:270px; }
input.t280{ width:280px; }
input.t290{ width:290px; }
input.t300{ width:300px; }
input.t370{ width:370px; }
input.t375{ width:375px; }
input.t400{ width:400px; }
input.t750{ width:750px; }
/*     botões que acompanham os inputs    */
input.but_input {
  background-color: #808080;
  color: white;
  border: none;
  padding: 6px 14px;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 12px;
  margin-bottom: 5px;
  display: inline-flex;
}
input.but_input:hover {
  background-color: #363636;
}
input.but_input.mgm0{
  margin:0;
}

/*   evitar o spin dos inputs numéricos   */
input[type="number"]::-webkit-inner-spin-button, 
input[type="number"]::-webkit-outer-spin-button { 
    -webkit-appearance: none; 
    margin: 0; 
}
input[type="number"] { 
    -moz-appearance: textfield; 
}

footer {
  margin-top: 5px;
  background-color: #228B22;
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  width: 100%;  
  height: 35px;
  line-height: 35px; /* Centralize verticalmente o texto no rodapé */
}
footer.print {
  position: fixed;
  bottom: 0;
}
footer.rodape0 {
  position: relative;
}
@media (min-height: 900px),(min-height: 1200px),(min-height: 1440px),(min-height: 2160px){
  footer.rodape0{
    position: absolute;
    bottom: 0;
  }
}
 
/*              padrão checkbox              */
.custom-checkbox input{
  display: none;
}
.custom-checkbox input + label:before {
  display: inline-block;
  vertical-align: middle;  
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background-color: #FAF4F4;
  border:1px solid rgb(190, 190, 190);
  margin-right: 8px;
  margin-bottom: 3px;
}
.custom-checkbox input:checked + label:before {
  background-color: indianred;
  background-position: center;
  content: '\2713'; /* Adiciona o símbolo de check */ 
  color: white; /* Muda a cor do símbolo de check para branco */
  border: none;
  padding: 1px;
  line-height: 20px; /* Centraliza verticalmente o conteúdo */
  text-align: center; /* Centraliza horizontalmente o conteúdo */
}
.checkbox-grupo {
  display: flex;
  background-color: #f4f4f4;
  padding: 1px;
  border-radius: 6px;
  margin-left: 5px;
  margin-right: 5px;
  height: 46px;
}

/*      padrão radio      */
.radio-grupo {
  background-color: #FAF4F4;   
  border: 1px solid #aaa;
  border-radius: 5px;
  width: auto;  
  height: auto;
  font-size:14px; 
  padding: 4px;
  display: flex; 
  align-items: center;
}
.custom-radio {
  margin-top: -9px;
  margin-right: 7px; /* Espaçamento entre os radio buttons */
}
.custom-radio input{
  display: none;
  color: black;
}
.custom-radio input + label:before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: white;
  border: 1px solid gray;
  display: inline-block;
  vertical-align: middle;
  margin-left: -10px;
  margin-right: 8px;
  margin-bottom: 3px;
}
.custom-radio input:checked + label:before {
  background-color: white;
  box-sizing: border-box;
  border: 4px solid #556B2F;
  padding: 3px;
}
.custom-radio-label{
  display: inline-block;   
  margin-left: 18px;  
  font-size: 15px;
  color: black;
}


/*          padrões diversos        */
.caracter-mini{
  color: #ccc;
  font-size: 10px;
}

.disable {  
  background-color: #ccc;  
}

.inactiv {  color: #ccc;  }

.line-div {
  position: absolute;
  bottom: 65px;
  width: 100%;
  height: 0px; /* Ajuste a altura conforme necessário */
}
.linha {
  border-top: 1px solid #008080; 
  width: 100%; 
}
.shadow {
  font-weight: 500;
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.4);    
}
.f9 { font-size:9px; }
.f10 { font-size:10px; }
.f11 { font-size:11px; }
.f12 { font-size:12px; }
.f13 { font-size:13px; }
.f14 { font-size:14px; }
.f15 { font-size:15px; }
.f16 { font-size:16px; }

.h10{ height: 10px; }
.h15{ height: 15px; }
.h20{ height: 20px; }
.h25{ height: 25px; }
.h30{ height: 30px; }
.h35{ height: 35px; }
.h40{ height: 40px; }
.h45{ height: 45px; }

.w85{ width: 85px; }
.w90{ width: 90px; }
.w260{ width: 260px; }
.w266{ width: 266px; }
.w280{ width: 280px; }
.w300{ width: 300px; }

@media only screen and (max-width: 768px) {
  .w266{ width: 300px; }
}  


/*                 seção topo                  */
.container-topo {
  position: relative;
}
.logo {
  width: 100%;
  height: 150px;
}
.logoadm {
  width: 100%;
  height: 100px;
}
.nome-empresa {
  position: absolute;
  top: 50%; 
  left: 50%; 
  transform: translate(-50%,-50%);  
  color: #fff; 
  font-size: 26px;
  background-color: transparent;
  padding: 10px; 
  white-space: nowrap;
}
.head {
  display: flex;
  margin-bottom: 5px; 
  background-color: #2F4F7F;
  color: #ffffff;
  padding: 5px;
  justify-content: center;
}
.head_logo {
  width: 100px;
  height: 50px;
  margin-right: 10px;
}
.head_login {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end; /* Centraliza o conteúdo à direita */
}
.head_logado {
  display: flex;
  flex-direction: column;
}
.head_empresa {
  font-size: 20px;    
}
.head_usuario {  
  font-size: 12px;
  margin-top: 14px;
}
.head_dados {  
  font-size: 12px;
}
@media (max-width: 600px) {
  .logo {
    height: auto;
  }  
  .nome-empresa {
    font-size: 16px; 
    padding: 55px;     
  }
}
.month-navigation {
    background-color: #6495ED;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
}
.month-navigation a {
    cursor: pointer;
    color: white;
    text-decoration: none;
    padding: 0 8px;
    transition: transform 0.2s ease-in-out;
}
.month-navigation a:hover {
    transform: scale(0.9);
}
.month-navigation span {
    font-size: 16px;
}

/*                 seção containers                  */
.container {
  display: flex;
}
.container1 {
  margin: 5px;
  padding: 10px;
  width: 300px;
  box-shadow: 1px 1px 5px #ccc;
  background-color: white;
  border-radius: 5px;
  margin-right: 10px;
  justify-content: center;
}
.container1.partida {
  width: 100%;
}
.container3 {
  margin-top: 5px;
  display: flex;
  justify-content: space-between;  
}
.container4 {
    display: flex; 
    justify-content: space-between; 
}
.container4 > div {
    flex: 1; /* Faz com que as divs ocupem o espaço disponível */
}
.container4 > div:first-child {
    margin-right: 6px; 
}
.container5 {
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
  max-width: 650px;
  box-shadow: 1px 1px 5px #ccc;
  background-color: white;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.titulo1 {
  display: float;
  flex-direction: column;
  margin-top: 1px;
/*  color: #008080;*/
  font-size: 18px;
  text-align: center;
}

.titulo2 {  
  background-color: #008080;
  color: #fff;
  font-size: 15px;
  text-align: center;
  padding: 4px;
  width: 130px;
  margin-bottom: 4px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.45);  
  border-radius: 4px;
}

.titulo-meses {
  color: #2E8B57;
  font-size: 17px;
  font-weight: bold;
  margin-top: 10px;
}

.texto {
  font-size: 16px;
  color: #1C1C1C;
}

@media (max-width: 600px) {
  .titulo1 {
    font-size: 16px;
  }  
  .titulo2 {
    width: 95px;    
    border-width: 1px; 
    border-style: solid;
    border-color: #fff;
    box-shadow: unset;      
  }
  .texto {
    font-size: 13px;
  }  
}
@media (max-width: 768px) {
    .container1 {
      width: 100%; /* Largura para telas menores (exemplo: até 768px de largura) */
    }
}

/*          corpo do login e menu          */
.backini {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    top: calc(100% - 250px);
    left: 50%;
    transform: translate(-50%, -50%);    
    padding: 20px 35px;
    max-width: 370px;
    background-color: white;
    border-radius: 5px;
}
.backini > div {
    margin-bottom: 20px; /* Espaçamento uniforme entre as divs */
}
.backini > div:last-child {
    margin-bottom: 0; /* Remove a margem inferior da última div */
}
.backini.login {
  box-shadow: 1px 1px 5px #ccc;
  align-items: stretch;  
}
@media (max-width: 700px) {
  .backini {
    top: 55%;
  }
}
@media (max-height: 600px) {
  .backini.login {
    position: unset;
    top: unset;
    left: unset;
    transform: unset;  
  }
}

/*                seção do menu                */
#menu {
  margin-left: auto;
  margin-right: auto;
  padding: 15px;
  max-width: 370px;
  box-shadow: 1px 1px 5px #ccc;
  background-color: white;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.butmenu {
  display: inline-block;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  background-color: #555555;
  border: 1px solid #333;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  width: 80%;        
  margin-top: 15px;
  margin-bottom: 0;
  margin-left: 10%;
  margin-right: 10%;
  padding: 20px; 
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);      
}
.butmenu.login {
  width: 100%; /* Definir a largura para ocupar todo o espaço disponível */     
  margin-left: 0;
  margin-right: 0;  
}
.butmenu:hover {
  transform: translateY(2px);
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
}

/*              menu vertical lateral               */
.menu-container {
    position: relative;
}
.vertical-menu {
    position: fixed;
    top: 96px;
    width: 5px;
    padding-top: 15px;
    background-color: #333;
    color: #fff;
    background-color: rgba(66, 66, 66, 0.4); /* Cor com transparência */    
    box-shadow: 1px 1px 5px #ccc;   
    overflow-y: auto;
    overflow-x: hidden;       
    bottom: 45px;    
    transition: width 0.3s ease-in-out;
}
.vertical-menu.left {
    left: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.vertical-menu.right {
    right: 0;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.vertical-menu:hover {
    width: 120px;
    font-weight: bold;    
}
.menu-items {
    list-style: none;
    padding: 0;
}
.menu-items li {
    padding: 10px 20px;
}
.menu-items a {
    color: #fff; /* Letras em branco */
    text-decoration: none;
    transition: color 0.3s, transform 0.2s;  
}
.menu-items a:hover {
    color: #A9F5F2;   
}
.menu-items.left{
    text-align: right;
}
.menu-items.right{
    text-align: left;
}


/*        captcha              */
.captcha {
  margin-left: 7px;
  margin-top: 1px;
  width: 295px;
  height: 30px;
  overflow: hidden;
}
.captcha img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/*          seção das listas        */
table {
  max-width: 100%;
  border-collapse: collapse;
  position: relative;
  width: 100%;    
  margin-top: 10px; 
  border: 1px solid rgb(190, 190, 190);
  box-shadow: 1px 1px 7px #ccc;  
  font-size:13px;     
  border-radius: 5px;
  overflow: hidden;
}
table img {
  width: 100%;
  height: auto;
} 
tr{
  height: 23px;  
}
tr:nth-child(even){     /* nth-child(odd) começa a linha com valor inverso da table */
  background:#f1f1f1;
  height: 23px;
}

th{
  border: 1px solid #DCDCDC;
  padding-left: 6px;
  padding-right: 6px;  
}   
th.lin {
  text-align: left;  
}

td{
  text-align: center;  
  border: 1px solid #DCDCDC;
  padding-left: 6px;
  padding-right: 6px;  
}
td.lin {
  text-align: left;  
}


@media only screen and (max-width: 768px) {
  table {
    width: 100%;
  }
  table img {
    width: 80%;
    height: auto;
  }    
  th, td {
    font-size: 10px;    
    padding: 1px;
  }
  th.lin, td.lin {
      padding: 5px;
  }
}

/*    seção formulário com lista imbutida ao lado direito do form       */
.envelope{
  max-width: 1024px; 
  margin: 0 auto; /* centralizar horizontalmente */
  overflow-x: auto; /* habilita a rolagem horizontal */
  display: flex; 
  justify-content: auto; /* centraliza flex items horizontalmente */
}
.form_lista_margem_busca {
  margin-left: 10px;
  margin-top: 10px;
}
.form_box{
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 5px;
  background-color: white;  
  border:1px solid rgb(190, 190, 190);
  box-shadow: 1px 1px 5px #ccc;  
  font-size:13px;     
  border-radius: 5px;   
}
.form_box.inputs{
  float: left; 
}
.form_box.pitem{
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  max-width: 370px;
}

/*        titulo das listas internas ao form       */
.title_form_lista_int{
  float: left;
  width: 100%;
  text-align: center;  
  margin-top: 10px;
  margin-bottom: 0; 
  background: #1B3B54;
  color: #fff;  
  font-size: 14px;  
  padding: 4px;
  border-radius: 5px;     
}
.title_form_lista_int.pdf{
  float: none;
  width: 766px;
  margin-bottom: -10px;
}
/*
.title_form_lista_int_pdf{
  text-align: center;  
  width: 766px;
  margin-top: 10px;
  margin-bottom: -10px;  
  background: #1B3B54;
  color: #fff;  
  font-size: 14px;  
  padding: 4px;
  border-radius: 5px;     
}
*/


/*        form editar         */
#form-editar{
    align-items: center;
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);    
    margin: 10px auto;
    margin-top: calc(85px + 10px + 8px); /* Soma dos espaçamentos do header e .cab */  
}

#form-container {
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 470px;
  background-color: white;  
  border:1px solid rgb(190, 190, 190);
  box-shadow: 1px 1px 5px #ccc;  
  font-size:13px;     
  border-radius: 5px;     
  padding: 15px;
}
@media (max-height: 600px) {
  #form-editar {
    position: unset;
    top: unset;
    left: unset;
    transform: unset;  
    margin-top: calc(70px + 10px + 8px); /* Soma dos espaçamentos do header e .cab */      
  }
}

/*          seção lista - paginador         */ 
.tab_pag{
  margin-top: 3px;
  width:100%;   
  border:1px solid rgb(190, 190, 190);
  padding: 7px;
  font-size:13px;     
  border-radius: 5px; 
  box-shadow: 1px 1px 5px #ccc;  
}
.but_pag{
  margin: 2px;
  display: block;
  float: left;    
  border: none;
  border-radius: 5px;       
  text-decoration: none;
  background-color: #2E8B57;
  color: #fff;    
  text-align: center;
  padding: 5px 10px;
  margin-right: 15px;
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.5);  
}
.but_pag:hover, .numativo, .controle:hover{
  background: #1B3B54;
}
.but_pag.fix{
  background: #1B3B54;
}

/*      display com mensagem positiva no topo da tela, usado pelo JS      */
.msgok {
  position: fixed;
/*      top: 50%; /* Centraliza verticalmente */
  left: 50%; /* Centraliza horizontalmente */
  transform: translate(-50%, -50%); /* Centraliza no meio da tela */
  width: auto; /* Largura ajustada automaticamente */
/*    max-width: 50%; /* Largura máxima de 50% da largura da janela */
  margin-top: 20px;
  padding: 6px 14px;;
  background-color: #29D846;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none; /* A div é oculta por padrão */
}

/*              margens               */
.mgmln{ margin-left: none }
.mgml0{ margin-left: 0px; }
.mgml5{ margin-left: 5px; }
.mgml6{ margin-left: 6px; }
.mgml10{ margin-left: 10px; }
.mgml20{ margin-left: 20px; }
.mgml70{ margin-left: 70px; }
.mgmr0{ right: 0; }
.mgmr4{ margin-right: 4px; }
.mgmr6{ margin-right: 6px; }
.mgmr8{ margin-right: 8px; }
.mgmt-5{ margin-top: -5px; }
.mgmt-10{ margin-top: -10px; }
.mgmt0{ margin-top: 0px; }
.mgmt5{ margin-top: 5px; }
.mgmt10{ margin-top: 10px; }
.mgmv10{ margin-top: 10px; margin-bottom: 10px; }
.mgm0606{ margin-left: 6px; margin-right: 6px; }
.mgm1010{ margin-left: 10px; margin-right: 10px; }
.mgm25{ margin: 25px; }

.spaceinline{
  display: inline-block; 
  margin-right: 5px;
}
.spaceinline.pdf{
  margin-right: 20px;
}

.spacer{  margin-bottom: 70px;  }

.around{
  display: flex;
  justify-content: space-between;
}

.assinatura {
  display: block;
  text-align: left;
  text-decoration: none;
  font-size: 14px;
  margin-top: 30px;
  margin-bottom: 30px;
}


/*          select dropdown          */
.container-chosen {
  position: relative;
  display: inline-block;
}
.dropdown {
  position: absolute;
  top: 0%; /* 100% - Posiciona o dropdown abaixo do campo */
  left: 5px;
  display: none; /* Esconde o dropdown inicialmente */
  margin-top: 2px;
  border-radius: 5px;    
  height: 180px;
  overflow: auto;    
  transition: .5s;
  z-index: 10;
}
.dropdown.list {
  top: 100%;
  height: auto;  
}
.dropdown::-webkit-scrollbar {
  width: 5px; /* Largura do scrollbar */
  background-color: whitesmoke; /* Cor de fundo do scrollbar */
  border-radius: 3px;   
}
.dropdown::-webkit-scrollbar-thumb {
  background-color: #C0C0C0;
  border-radius: 3px; 
}
.dropdown li {
  display: flex;
  align-items: center;
  font-size: 13px;
  height: 40px;
  padding: 5px;
  background-color: #E0FFFF;
  color: black;
  box-shadow: 1px 4px 7px 0px rgba(0, 0, 0, 0.8);   /* 0.4-opacidade q geram as linhas separatórias */
  transition: .3s;
  cursor: pointer;
}
.dropdown li:hover {
  background-color: #5882FA;
  color: white;
  padding-left: 8px;
  transition: .3s;
}


/*      texto privacidade do cookie           */
/* Estilizando o contêiner da política de privacidade */
.ppriv {
  margin-left: auto;
  margin-right: auto;
  max-width: 1024px;
  box-shadow: 1px 1px 5px #ccc;
  background-color: white;
  border-radius: 5px;
  display: flex;
  padding: 25px; /* Adicionando margens de 10 pixels em todos os lados do conteúdo */
}

/* Estilizando o texto dentro do contêiner */
.ppriv .texto {
  font-family: Arial, sans-serif, verdana;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}


/* Estilos para o popup(iframe) */
.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: calc(10px + 10px + 8px); /* Soma dos espaçamentos do header e .cab */        
    padding: 10px;
    text-align: center;
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    max-width: 100%; 
    width: auto;
    box-sizing: border-box; 
}
.popup-acesso {
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
  max-width: 320px;
  box-shadow: 1px 1px 5px #ccc;
  background-color: #FFF;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}


/*      selecionar arquivo       */
.custom-file-input-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}
.custom-file-input-wrapper label {
    margin: 10px;
}
.custom-file-input-wrapper input[type="file"] {
    display: none;
}
.custom-file-input-wrapper #file-label {
    display: inline-block;
    padding: 10px;
    background-color: #87CEEB;
    color: white;     
    box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.5);    
    border-radius: 5px;
    cursor: pointer;  
}
.custom-file-input-wrapper #file-label:hover {
    background-color: #4682B4; 
    animation: list 0.5s ease forwards;
}
.custom-file-input-wrapper #file-name {
    display: flex;
    width: 290px;
    font-size: 10px;
    margin: 8px;
    padding: 6px;
    color: navy;
    border: 1px solid #B0E0E6;
    border-radius: 2px;
}


/*           sweet alert           */
.swal-title {
  margin-top: 20px;  
  font-size: 16px; 
}

.swal-btn {
  background-color: #228B22 !important;  
  padding: 5px 10px !important; 
  font-size: 12px !important; 
  border-radius: 4px !important;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5) !important;
  height: 26px; 
  line-height: 16px; 
}
.swal-btn.r{
  margin-left: 35px;
}
.swal-btn.l{
  margin-right: 35px;
}
.swal-btn.erro {
  line-height: 0; 
}
.swal-msg {
  margin-bottom: 18px;  
  font-size: 16px; /* tamanho da letra do título */
}



/*       calendario         */
.calendar-icon-container {
    display: inline-flex;
    cursor: pointer; /* Transforma o ícone em cursor de clique */
}
.calendar-icon-container img {
    vertical-align: middle;
    padding-top: 5px;
    width: 24px; /* Ajuste o tamanho do ícone conforme necessário */
    height: auto;
    margin-left: -35px;
}
#calendario-container {
    position: absolute;
    width: 260px;    
    left: 50%; 
    transform: translateX(-50%); 
    z-index: 1000;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    min-height: 200px;
    overflow-y: auto; 
    display: none;
}
#calendario-container table {
    border-collapse: collapse;
    table-layout: fixed; /* Fixa o layout da tabela */
    margin-top: 0;
}
#calendario-container th, #calendario-container td {
    border: 1px solid #ddd;
    text-align: center;
    height: 25px;
}
#calendario-container th {
    background-color: #6495ED;
    color: white;
    font-size: 10px;
}
#calendario-container td {
  background-color: white;
    padding: 5px;
    font-size: 14px;
}
#calendario-container td a {
    display: block;
    color: #555;
    text-decoration: none;
    line-height: 25px;
    transition: color 0.3s;
}
#calendario-container td a:hover {
    color: blue;
    font-weight: bold;
}
#calendario-container td a.dia-atual {
    color: blue;
    font-weight: bold;
}
.calendario-close-btn {
    display: block;
    text-align: center;
    padding: 10px;
    background-color: #6495ED;
    color: white;
}
.calendario-close-btn:hover {
    font-size: 16.5px;
    cursor: pointer;
}

