
        /* resete css */
html,body,h1,h2,h3,h4,h5,h6,p,ol,ul,li,pre,code,address,form,fieldset
{
    padding: 0;
    margin: 0;
    font-size: 100%;
    font-weight: normal;
}

table
{
    border-collapse: collapse;
    border-spacing: 0;

}

td,th,caption
{
    font-weight: normal;
    text-align: left;

} 
q::before, q::after
{
    content: '';
}

ol
{
    margin-left: 1.4em;
    list-style: decimal;
}

ul
{
    margin-left: 1.4em;
    list-style: square;    
}

img,fieldset
{
    border: 0;
}

/* fim resete css */


input[type=date]:focus,
input[type=datetime-local]:focus,
input[type=email]:focus,
input[type=month]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=time]:focus,
input[type=url]:focus,
input[type=week]:focus,
textarea:focus, 
select:focus
{

  background-color: var(--sipet-hover);
}

input[type="button"],
input[type="reset"]
{
    background-color: var(--sipet-preto-color);
   /*  color: var(--sipet-amarelo-color); */
    color: white;
   	border-radius: 5px;
	  padding: 5px;
    border: 1px solid #595858;
}

input[type="button"]:hover,
input[type="reset"]:hover
{
  
  background-color:var(--sipet-hover); 
  color: var(--sipet-preto-color); 
  cursor: pointer;
}

.botoesExtrasIntegracao
{

  background-color: var(--sipet-preto-color);
  /*  color: var(--sipet-amarelo-color); */
   color: white;
    border-radius: 5px;
   padding: 5px;
   border: 1px solid #595858;

}

/* input[type="button"]:focus
{
  
  background-color:var(--sipet-laranja-color); 
  color: var(--sipet-preto-color);
} */

input[type="text"],
input[type="number"],
input[type="date"],
input[type="time"],
input[type="password"],
textarea,
select
{
   padding: 5px; 
   border-radius: 5px;
   border: 1px solid #595858;
  
}

svg
{
	stroke: var(--sipet-preto-color);
}

body
{
    font-family: 'sipet-font';
    position: relative;
  /*   background-color: var(--sipet-amarelo-color); */

}

html {
	scroll-behavior: smooth;
}

header#login img
{
    width: 70%;
    height: 70%;
    z-index: -1;
    object-fit: cover;
    object-fit: scale-down;
    object-position: top center;
}

header .titulo-transacoes
{
	background-color: var(--sipet-preto-color);
	/* color: var(--sipet-amarelo-color); */
	color: white;
	padding: 3px 0 3px 10px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

main .icon-bar
{

    padding: 3px;
    /* border-bottom: 2px solid var(--sipet-preto-color); */
    display: flex;
    flex-direction: row;
    align-items: center;
    clear: both;
    
}

main .icon-bar i
{

   padding: 0 5px 0 5px;
   cursor: pointer;
   font-size: 1.3em;


}


main .icon-bar i:hover
{
   color: var(--sipet-laranja-color);
   border: 1px solid var(--sipet-preto-color);
}

main .icon-bar input[type="button"]
{
  margin: 0 3px 0 3px;
}

/*************************Inicio Loader**********************************************/

#btCancelarLoad{
    min-width: 120px;
    max-width: 120px;
    display: none;
  }
  
  
  .loader {
    border: 16px solid var(--sipet-preto-color);
    border-radius: 50%;
    border-top: 16px solid var(--sipet-laranja-color);
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
  /*   display: none; */
  margin: auto;
  
   
  }
  
  /* Safari */
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  /* The Modal (background) */
  .modal {
     display: none;  /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content */
  .modal-content {
    background-color: var(--sipet-amarelo-color);
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
  border-radius: 10px;
  }
  
  /*******Fim Loader************************************/

  #logs{
   
    display: block;
    position: absolute;
    width: 98%;
    height:90px;
    top: -100px;
    margin-left: 10px;
    margin-right: 10px;
   /*  background-color: var(--sipet-amarelo-color); */
    background-color: white;
    z-index: 99;
    border-radius: 5px;
  /*   border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px; */
    border: 2px solid var(--sipet-preto-color);
    padding-top: 25px;
    box-shadow: 2px 2px 5px var(--sipet-preto-color);
    transition: all 1s;
   /*  top: -100px  */
  
  }

  #logs svg
  {
  
    width:10px;
    height:20px; 
    stroke: #100f0f;
    position: absolute;
    top: 5px;
    right: 15px;
    cursor: pointer;
  
  }
  
  #log-msg
  {
    padding: 3px;
    font-size: 0.8em;
  
  }

  .tabcontent 
  {
    padding-bottom: 50%;
  }

  /* *************FORMS*************************************** */

  .tabcontent form
  {
    display: flex;
    flex-direction: column;  

    width: 100%;
/*     border: 1px solid var(--sipet-preto-color);  */
    padding: 10px 2px 15px 2px;
    margin-top: 50px; 
 /*    box-shadow: 2px 2px 5px var(--sipet-preto-color); */
    border-radius: 5px;
  }

  .tabcontent form label
  {
      width: 150px;
      border-bottom: 1px solid var(--sipet-preto-color);
      padding-bottom: 0;
     
  }

  .tabcontent form input,
  .tabcontent form select,
  .tabcontent form textarea
  {
    width: 100%;
    border: 1px solid #595858;
    resize: none;
  }

  .tabcontent form .form-element
  {
    display: flex;
    flex-direction: row;
    width: 50%;
    min-height: 36px;  
    float: left;
    padding: 5px 5px 0px 5px;
    margin-bottom: 2px;
  }

  .tabcontent form .form-comands input
  {
    width: 20%;
    margin: 5px 5px 0 0;
    float: left;
  } 

  .tabcontent form .form-element label
  {
    font-size: 0.8em;
  }

/* ******************FIM FORMS************** */
/* ******************Table************************ */
.tabcontent .minhaTab
{
    width:100%; 
    border: 1px solid var(--sipet-preto-color);
    font-size: small;
    border-spacing: 0px;
    white-space: nowrap;
  
}

.tabcontent .minhaTab th
{ 
    text-align:left; 
    color: var(--sipet-preto-color); 
    background-color: var(--sipet-hover); 
    border: 1px solid rgb(180, 172, 172);
    font-weight: bold;
    padding: 5px;
}

.tabcontent .minhaTab tr:hover 
{
    background-color: var(--sipet-hover);
}  

.tabcontent .minhaTab td
{ 
    padding-left: 5px;
    border: 1px solid rgb(180, 172, 172);
    padding: 3px;
}

.tabcontent .div-tab{
	height: 370px;
	overflow-y:auto;
	border: groove;
	margin-left: 5px;
	margin-right: 5px;
	margin-top: 5px;
  background-color: white;
  box-shadow: 2px 2px 5px var(--sipet-preto-color);
    
}

.tabcontent .dados-relatorio
{
    padding-top: 2px;

}


.tabcontent .btTable{
	cursor: pointer;
/* 	margin-left: 10px; */
	margin-top: 5px;
}

.tabcontent .btTable:hover{

	border: solid 1px;
	
}

main .btConsulta
{
  min-width: 100px;
}

main .popup-consultar
{
    display: none;
    position: absolute;
    height: 300px;
    width: 98%;
    top: 38px;
    z-index: 99;
    padding: 1px;
    border: 2px solid var(--sipet-preto-color);
    box-shadow: 2px 2px 2px black;
    background-color: #eee;
}

main .selecao
{
  margin: 2px;
  max-width: 60px;
  min-width: 60px;
  font-size: 0.7em;

}

main .tabcontenteselecao
{
  overflow-y: scroll;
  padding: 2px;
  width: 100%;
  height: 80%;


}

main .form-comands input
{
    min-width: 110px;
}

/* tabs de consulta */
main .opcoes-selecao
{   
  overflow: hidden;
}

main .tabcontenteselecao input
{
  margin-bottom: 1px;
  width: 100%;
  min-width: 100px; 
  

}

main .popup-consultar table th
{
  background-color: #888;
}

main .barraBts
{
  border-bottom: 1px solid black;
}

main .barraBts i
{
  font-size: 1.2em;
}

main i:hover
{
  cursor: pointer;
  background-color: var(--sipet-hover);
 /*  color: var(--sipet-hover); */
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

main .divSeparado
{
  width:90%;
  height: 5px;
  clear: both;

}

main .divItem
{
  min-height: 80px;
/*   background-color: white; */
  background-color: var(--sipet-backgroud); 
  border: 1px solid black;
  clear: both;
  margin: 5px;
  border-radius: 5px;
  box-shadow: 1px 1px 2px black;
  border-top-right-radius: 30px;
  padding-top: 10px;

}



main .divListItem
{

    min-height: 80px;
  /*   background-color: white; */
    background-color: var(--sipet-backgroud); 
    border: 1px solid black;
    clear: both;
    margin: 5px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 1px 1px 2px black;
    padding: 5px;
    padding-top: 10px;

}

main .divListLine
{
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--sipet-preto-color);
/*   box-shadow: 2px 2px 5px var(--sipet-preto-color); */
  width: 32%;
  margin: 2px;
  float: left;
  padding: 2px;
/*   background-color: aqua; */
/*   min-height: 36px; */
 height: 55px;
 font-size: 0.9em;

}

main .divListLabel
{

  padding-right: 5px;
  font-weight: bold;
  width: 100%;

}

main .divListValor
{
  width: 100%; 
  text-align: left;
  background-color: white; 
  padding: 3px;
  border-radius: 5px;
  min-height: 30px;

}

main .btsAcaoList
{
  margin-left: 3px;
  min-width: 70px;
}

main .tab-selecao {

     color: var(--sipet-preto-color);
     float: left;
     border: none;
     outline: none; 
     cursor: pointer;
     padding: 8px 2px;
     font-size: 0.7em;
     white-space: nowrap;
     width: 50%;
     border-right: 1px dashed black;

     text-align: center;
 
 
  }

   nav .tablink {

    color: var(--sipet-preto-color);
    float: left;
    border: none;
    outline: none; 
    cursor: pointer;
    padding: 8px 10px;
    font-size: 0.8em;
/*     width: 25%; */
    white-space: nowrap;
    min-width: 180px;



  }

  .popup-opcoes
  {
       display: flex;
       flex-direction: column;
       padding: 8px 5px 10px 5px;
       width: 100%;
       min-height: 150px;
       position: absolute;
       z-index: 99;
       top: 100%;
       left: 0px;
       background-color: rgb(196, 199, 198); 
       border: 2px solid rgb(101, 99, 99);
       box-shadow: 2px 2px 4px black;
  }

  .popup-opcoes input[type="button"]
  {
     margin-top: 3px;
  }

  .label-alert
  {
    font-weight: bold;
    color: black;
  }


 
