/* Googlefont Poppins CDN Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

:root {
  --blue: #0A2558;
  --white: #ffffff;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
.sidebar{
  position: fixed;
  height: 100%;
  width: 340px;
  background: var(--blue);
  transition: all 0.5s ease;
  overflow: auto;  
}
.sidebar.active{
  width: 60px;
}
.sidebar .logo-details{
  height: 80px;
  display: flex;
  align-items: center;
  align-content: flex-end;
  justify-content: space-evenly;
}
.sidebar .logo-details img{
  width: 100px;
 
}
.sidebar .logo-details .logo_name{
  color: #fff;
  font-size: 24px;
  font-weight: 500;
}
.sidebar .nav-links{
  margin-top: 10px;
}
.sidebar .nav-links li{
  position: relative;
  list-style: none;
  height: 40px;
}
.sidebar .nav-links li a{
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.4s ease;
}
.sidebar .nav-links li a.active{
  background: #081D45;
}
.sidebar .nav-links li a:hover{
  background: #081D45;
}

.sidebar .submenu-btn{
    margin-top: 5px;
    text-decoration: none;
    font-size: 15px;
    color: #fff;
    display: inline;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    outline: none;
}

.submenu-items {
    display: none;
    background: var(--blue);
    padding-left: 8px;
}

.sidebar .nav-links li i{
  min-width: 35px;
  text-align: center;
  font-size: 16px;
  color: #fff;
}
.sidebar .nav-links li a .links_name{
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
}
.sidebar .nav-links .log_out{
  position: relative;
  bottom: 0;
  width: 100%;
}
.home-section{
  position: relative;
  background: #f5f5f5;
  min-height: 100vh;
  width: calc(100% - 340px);
  left: 340px;
  transition: all 0.5s ease;
}
.sidebar.active ~ .home-section{
  width: calc(100% - 60px);
  left: 60px;
}
.home-section nav{
  display: flex;
  justify-content: space-between;
  height: 80px;
  background: #fff;
  display: flex;
  align-items: center;
  position: fixed;
  width: calc(100% - 340px);
  left: 340px;
  z-index: 100;
  padding: 0 20px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}
.sidebar.active ~ .home-section nav{
  left: 60px;
  width: calc(100% - 60px);
}
.home-section nav .sidebar-button{
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 500;
}
nav .sidebar-button i{
  font-size: 35px;
  margin-right: 10px;
}
.home-section nav .search-box{
  position: relative;
  height: 50px;
  max-width: 550px;
  width: 100%;
  margin: 0 20px;
}
nav .search-box input{
  height: 100%;
  width: 100%;
  outline: none;
  background: #F5F6FA;
  border: 2px solid #EFEEF1;
  border-radius: 6px;
  font-size: 18px;
  padding: 0 15px;
}
nav .search-box .bx-search{
  position: absolute;
  height: 40px;
  width: 40px;
  background: #2697FF;
  right: 5px;
  top: 60%;
  transform: translateY(-50%);
  border-radius: 4px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  font-size: 22px;
  transition: all 0.4 ease;
}
.home-section nav .profile-details{
  display: flex;
  align-items: center;
  background: #F5F6FA;
  border: 2px solid #EFEEF1;
  border-radius: 6px;
  height: 50px;
  min-width: 190px;
  padding: 0 15px 0 2px;
}
nav .profile-details img{
  height: 40px;
  width: 40px;
  border-radius: 6px;
  object-fit: cover;
}
nav .profile-details .admin_name{
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin: 0 10px;
  white-space: nowrap;
}
nav .profile-details i{
  font-size: 17px;
  color: #333;
}


.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 15px;
  border: none;
  outline: none;
  color: #333;
  padding: 10px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown:hover .dropbtn {
  background-color:  #F5F6FA;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 120px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}


.home-section .home-content{
  position: relative;
  padding-top: 104px;
}

.home-content .overview-boxes{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px;
  margin-bottom: 26px;
}

.overview-boxes .box{
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% / 4 - 15px);
  background: #fff;
  padding: 15px 14px;
  border-radius: 12px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.overview-boxes .box-topic{
  font-size: 20px;
  font-weight: 500;
}

.home-content .box .number{
  display: inline-block;
  font-size: 35px;
  margin-top: -6px;
  font-weight: 500;
}

.home-content .box .indicator{
  display: flex;
  align-items: center;
}

.home-content .box .indicator i{
  height: 20px;
  width: 20px;
  background: #8FDACB;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  margin-right: 5px;
}

.box .indicator i.down{
  background: #e87d88;
}

.home-content .box .indicator .text{
  font-size: 12px;
}

.home-content .box .cart{
  display: inline-block;
  font-size: 32px;
  height: 50px;
  width: 50px;
  background: #cce5ff;
  line-height: 50px;
  text-align: center;
  color: #66b0ff;
  border-radius: 12px;
  margin: -15px 0 0 6px;
}

.home-content .box .cart.two{
   color: #2BD47D;
   background: #C0F2D8;
 }
 
.home-content .box .cart.three{
   color: #ffc233;
   background: #ffe8b3;
 }
 
.home-content .box .cart.four{
   color: #e05260;
   background: #f7d4d7;
 }
 
.home-content .total-order{
  font-size: 20px;
  font-weight: 500;
}

.home-content .sales-boxes{
  display: flex;
  justify-content: space-between;
  /* padding: 0 20px; */
}

/* left box */
.home-content .sales-boxes .recent-sales{
  width: 100%;
  background: #fff;
  padding: 20px 30px;
  margin: 0 20px;
  border-radius: 12px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.home-content .sales-boxes .info-boxes{
  padding: 10px 30px;
  margin: 20px;
  
}	

.info-boxes .info{
  margin: 15px;	

 }

.info-boxes .info .label { 
  font-weight: bold;
 } 
 
 
.info-boxes .info ul{
  list-style: none; /* Remove list bullets */	
  padding: 0;
  margin: 0;
} 
 
 
.info-boxes .nivel {
	padding-left: 16px; 
}

.info-boxes  .nivel1 {
    padding-left: 26px; 
}

.info-boxes .nivel2 {
	padding-left: 36px; 
}

.info-boxes .nivel3 {
	padding-left: 46px; 
}

.info-boxes .nivel4 {
	padding-left: 56px; 
}

.info-boxes  li::before {
  content: "•"; /* Insert content that looks like bullets */
  padding-right: 20px;
  color: blue; /* Or a color you prefer */
}

.atopic0{
	padding-left: 16px; 
}

.atopic1{
	padding-left: 26px; 
}

.atopic2{
	padding-left: 36px; 
}

.atopic3{
	padding-left: 46px; 
}

.atopic4{
	padding-left: 56px; 
}

.atopic:after {
	
    content: '\A';
    white-space: pre;
}

.home-content .sales-boxes .sales-details{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sales-boxes .box .title{
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}

.sales-boxes .box .text{
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}


.sales-boxes .sales-details li.topic{
  font-size: 20px;
  font-weight: 500;
}
.sales-boxes .sales-details li{
  list-style: none;
  margin: 8px 0;
}
.sales-boxes .sales-details li a{
  font-size: 18px;
  color: #333;
  font-size: 400;
  text-decoration: none;
}


.sales-boxes .box .button{
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.sales-boxes .box .button a{
  color: #fff;
  background: #0A2558;
  padding: 4px 12px;
  font-size: 15px;
  font-weight: 400;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.sales-boxes .box .button a:hover{
  background:  #0d3073;
}

/*.button span{
  color: #fff;
  background: #0A2558;
  padding: 4px 12px;
  font-size: 15px;
  font-weight: 400;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}	*/

.well{
 
  padding:10px;
  border-left-style: solid;
  border-left-style: blue;
  background-color: #f5f6fa;

}

.code{
  font-family: Monaco,Menlo,Consolas,"Courier New",monospace;
  color: blue;

}



.footer{
  color: black;
  text-align: center; 
}

.footer .copyright {
   float: right;
   padding: 20px 30px;
   font-size: 12px;
}


/* Responsive Media Query */
@media (max-width: 1240px) {
  .sidebar{
    width: 60px;
  }
  .sidebar.active{
    width: 220px;
  }
  .home-section{
    width: calc(100% - 60px);
    left: 60px;
  }
  .sidebar.active ~ .home-section{
    left: 220px;
    width: calc(100% - 220px);
    overflow: hidden;
  }
  .home-section nav{
    width: calc(100% - 60px);
    left: 60px;
  }
  .sidebar.active ~ .home-section nav{
    width: calc(100% - 220px);
    left: 220px;
  }
}

@media (max-width: 1150px) {
  .home-content .sales-boxes{
    flex-direction: column;
  }
  .home-content .sales-boxes .box{
    width: 100%;
    overflow-x: scroll;
    margin-bottom: 30px;
  }
  .home-content .sales-boxes .top-sales{
    margin: 0;
  }

}


@media (max-width: 1000px) {
  .overview-boxes .box{
    width: calc(100% / 2 - 15px);
    margin-bottom: 15px;
  }
}
@media (max-width: 700px) {
  nav .sidebar-button .dashboard,
  nav .profile-details .admin_name,
  nav .profile-details i{
    display: none;
  }
  .home-section nav .profile-details{
    height: 50px;
    min-width: 40px;
  }
  .home-content .sales-boxes .sales-details{
    width: 560px;
  }
 
}


@media (max-width: 550px) {
  .overview-boxes .box{
    width: 100%;
    margin-bottom: 15px;
  }
  .sidebar.active ~ .home-section nav .profile-details{
    display: none;
  }
}

@media (max-width: 400px) {
  .sidebar{
    width: 0;
  }
  .sidebar.active{
    width: 60px;
  }
  .home-section{
    width: 100%;
    left: 0;
  }
  .sidebar.active ~ .home-section{
    left: 60px;
    width: calc(100% - 60px);
  }
  .home-section nav{
    width: 100%;
    left: 0;
  }
  .sidebar.active ~ .home-section nav{
    left: 60px;
    width: calc(100% - 60px);
  }
}

/*Tabelas*/

.tabela-bases{
	border-collapse:collapse;
	margin: 10px 30px;
	width:95%;
	/*border: 2px solid  #F89406;*/
}

.tabela-bases th td{
	padding: 1px 2px;
/*	border:2px solid  #F89406;*/
}

.tabela-bases th{
	/*background-color: #D4D4D4;*/
	border-bottom: 2px solid  var(--blue);
	font-weight: bold;
	text-align:left;
}

.tabela-bases th.title{
	/*background-color: #D4D4D4;
	text-decoration: inherit;
	color: #0000ff;*/
	border:2px solid  #F89406;
}

.tabela-bases tr.even{
	background-color: #E8E8F3;
}

.tabela-bases tr.odd{
	background-color: #F0F0F0;
}

.tabela-bases td.icon{
	width:2%;
	
}

.tabela-bases td.icon_1{
	width:6%;
}


.tabela-bases i{
    font-size: 20px;
	/*margin-right: 2px;*/
  
}

.tabela-bases td.texto{
	text-align:left;
	width: 10px;
}

.tabela-bases td.ndoc{
	text-align:left;
	width: 13%;
}

.tabela-bases td.numero{
	text-align:right;
  width: 13%;
}



label{
  color:black;
  position: relative;
  font-weight: bold;
}

.spanForm {
	color:#1506f8;
	font-size: 16px;
}

.spanAsteristico{
	color:red;
	font-weight: normal;
	font-size: x-large;
}


/*Formulario*/
/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea, input[type=password] {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical; /* Allow the user to vertically resize the textarea (not horizontally) */
  font-size: 15px;
}

input[type=file] {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  border: 1px dashed #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  font-size: 15px;
}


input[type=radio]{
   margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */	
	
}

input[type=checkbox]{
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 6px; /* Bottom margin */	
	
}
input[type=button] {
  background-color: #333;
  border: none;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  margin: 4px 2px;
  cursor: pointer;
  
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #04AA6D;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #45a049;

}


.arquivo_suplementar{
  padding: 10px;	
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
}


.arqsupl {
  width: 100%;	
  border: 1px dashed #ccc; /* Gray border */
}
 
.arqsupl tr {

}	


.arqsuplementar{
	margin: 1px 10px;
}

.spanAcesso{
  display: block;
  position: relative;
}

.botao{
  float:left;
  margin: 2px; 
  padding:4px;  

}



.emphasis { 
	color: #F89406;
}


/* Add a background color and some padding around the form */
.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}



/*Página de Ajuda - Estilo tabela*/
.ajuda 
{
  margin: 10px;
  background:#FFF;
  color: #000000;
  border-collapse:collapse;
  font-size:12px;
 }

.ajuda td, .ajuda th
{
	font-size:1em;
	border: 1px solid black;
	padding:3px 7px 2px 7px;
}

.ajuda th
{
	background-color: #eeeeee;
	text-align: center;
	padding-top: 5px;
	padding-bottom: 4px;
	
}

.ajuda tr.even
{
 background-color: #f8f8f8;
} 

.ajuda tr.odd
{
	background-color: #eeeeee;
}

.ajuda td.nivelS
{
	text-align: center;
	font-weight: bold;
	color: Green;
}

.ajuda td.nivelN
{
	text-align: center;
	font-weight: bold;
	color: Red;
}

.ajuda tbody tr:hover td{
	background: #f8f8f8;
}

/*Classe para os links com hierarquia (breadcrumb) */


.box .breadcrumb{
 margin: 2px 2px;
 height: 40px;
 width: 100%;
}

.box .breadcrumb  p {
	margin: 0;
	font-size: 14px;
}

.box .breadcrumb  .right {
	float: right;
}

.box .breadcrumb .left {
	float: left;
}

.box .breadcrumb a{
/*background: transparent url(images/breadcrumbred.gif) no-repeat center right;*/
text-decoration: none;
padding-right: 5px; /*adjust bullet image padding*/
color:  #00F;

}

.box .breadcrumb a:visited, .breadcrumb a:active{
color: #00F;
}

.box .breadcrumb span{
color:  #00F;
padding-right: 5px;
}

.box .breadcrumb a:hover{
text-decoration: underline;
}

/*Paginação das páginas*/

.pagination{
	margin-bottom: 2px;
	padding: 2px;
	width: 100%;
}

.pagination ul{
	margin: 0;
	padding: 0;
	text-align: center; /*Set to "right" to right align pagination interface*/
	
}

.pagination li{
	list-style-type: none;
	display: inline;
	padding-bottom: 1px;
}

.pagination a, .pagination a:visited{
	padding: 0 5px;
	text-decoration: none;
	color: #00F;
}

.pagination a:hover, .pagination a:active{
	color: #000;
}

.pagination a.currentpage{
	color: #F89406;
	font-weight: bold;
	cursor: default;
}

.pagination a.disablelink, .pagination a.disablelink:hover{
	cursor: default;
	color: #929292;
}

.pagination a.prevnext{
	font-weight: bold;
}

/*Total de registros*/

.totalResultado {
	margin: 0px 25px;
	padding-top: 20px;
	height: 40px;
	width: 95%;
	border-bottom:#CCC 1px solid;
}

.totalResultado p {
	margin: 0;
	text-align: center;
	font-size: small;
}

.totalResultado .right {
	float: right;
}

.totalResultado .left {
	float: left;
}

.totalResultado .center {
	float: left;
	margin-left: 75px;
}

.totalResultado a {
	float: right;
}

.Resultado {
	margin: 0px 25px;
}

.Resultado p {
	text-align: left;
	
	
}

.linha {
   display: flex;
   flex-direction: row;
   padding:1px;
   margin:2px;
   border-bottom:#CCC 1px solid;
}
  
.coluna1 {
   width: 20%;
   height:25vh;
   margin: 10px;
   text-align: center;
   color: white;
 }
  
.coluna2 {
   width:60%;
   height: 25vh;
   padding: 10px;
   text-align: right;
}

#ajax_loading { 
    display: none; 
	  font-size: 12px;
}

.button_action {
  color: #fff;
  background: #0A2558;
  padding: 4px 12px;
  font-size: 15px;
  font-weight: 400;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.button_action a:hover{
  background:  #0d3073;
}





.bold {
	 font-weight: bold;
}

.alert-box {
	padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;  
}

.success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.failure {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

.warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}

.remoteURL {
 display: none; 
}



ul.checkbox  { 
  margin: 0; 
  padding: 0; 
  margin-left: 20px; 
  list-style: none; 
  -webkit-column-count: 4; /* Chrome, Safari, Opera */
   -moz-column-count: 4; /* Firefox */
  column-count: 4;
} 

ul.checkbox li input { 
  margin-right: .25em; 
} 

ul.checkbox li { 
  border: 1px transparent solid; 
  display:inline-block;
  width:12em;
} 

ul.checkbox li label { 
  margin-left: 0px; 
} 
ul.checkbox li:hover, 
ul.checkbox li.focus  { 
  background-color: #ccc; 
  width: 12em; 
}


ul.checkbox_ods  { 
  margin: 0; 
  padding: 0; 
  margin-left: 20px; 
  list-style: none; 
  -webkit-column-count: 3; /* Chrome, Safari, Opera */
   -moz-column-count: 3; /* Firefox */
  column-count: 3;
} 

ul.checkbox_ods li input { 
  margin-right: .25em; 
} 

ul.checkbox_ods li { 
  border: 1px transparent solid; 
 /* display:inline-block;
  width:12em;*/
} 

ul.checkbox_ods li label { 
  margin-left: 0px; 
} 

ul.checkbox_ods li:hover, 
ul.checkbox_ods li.focus  { 
  background-color: #ccc; 
  /*width: 12em; */
}


.arqsuplementar{
	margin: 1px 10px;
	padding: 10px;
}


.box_chart{
  margin: 1px 10px;
  padding: 10px;
  height: 50%;
  width: 50%;
}


#spinner-div {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 2;
}

#loading-image {
  position: absolute;
  top: 500px;
  /*left: 600px;*/
  z-index: 100;
}

.horizon form{
   margin: 20px/
}
	
.horizon .text1{
  padding: 10px;
  margin-left:20px;
  width: 50%;
 }

 .horizon .text2{
  padding: 10px;
  margin-left:20px;
  width: 15%;
 }
 
 .horizon .button1{
    padding: 11px;
    width: 10%;
    color: #fff;
    background: #0A2558;
    margin-left: 1%;
}


.bg-warning {
    background-color: #fcf8e3;
}

.search-box{
  position: relative;
  height: 50px;
  max-width: 550px;
  width: 100%;
  margin: 0 20px;
}

.search-box input{
  height: 100%;
  width: 100%;
  outline: none;
  background: #F5F6FA;
  border: 2px solid #EFEEF1;
  border-radius: 6px;
  font-size: 18px;
  padding: 0 15px;
}

.search-box .bx-search{
  position: absolute;
  height: 40px;
  width: 40px;
  background: #2697FF;
  right: 5px;
  top: 60%;
  transform: translateY(-50%);
  border-radius: 4px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  font-size: 22px;
  transition: all 0.4 ease;
}