/*login*/
.container-login{
	display:flex;
	justify-content:center;
	align-items: center;
	height:100vh;
}
.container-login .container{
	background:#fff;
	padding: 35px;
	width:360px;
	border-radius:5px;
}
.container-login .container h2{
	font-size:18px;
	font-weight:600
}

.container-login .container small{
	font-size:11px;
 }
 
 .field-login label{
	font-size:16px;
	color:#000;
	width:100%;
 } 
 .field-login input, .field-login select{
	border:none;
	outline:none;
 	padding:10px ;
	display:block;
	width:100%;
	background: #F1F1F1;
	margin: 0 0 15px 0 ;
	color:#19280f;
	border-radius:3px;
 }

 
 
  .field-login  .erro_field{
	border-bottom: solid 1px red;
 }
 
.field-login,::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-size:15px;
}

.field-login input,:-ms-input-placeholder { /* Internet Explorer 10-11 */
  font-size:15px;
}

.field-login input,::-ms-input-placeholder { /* Microsoft Edge */
 font-size:15px;
}
 
.btn-submit{
	background:#00A88A;
	padding:7px 15px;
	color:#fff!important;
 	width:100%;
	border-radius:3px;
	border:none;
	font-weight:700;
	font-size:13px;
	text-decoration:none;
 	display: inline-block;
	text-align:center;
	cursor: pointer;
}
.btn-submit-2{
	background:#0E4374;
	padding:7px 15px;
	color:#fff!important;
 	border-radius:3px;
	border:none;
	font-weight:700;
	font-size:13px;
	text-decoration:none;
 	display: inline-flex;
	text-align:center;
	margin: 0 0 0 10px;
	cursor: pointer;
}
.btn-submit-3{
	background:#0E7468;
	padding:7px 15px;
	color:#fff!important;
 	border-radius:3px;
	border:none;
	font-weight:700;
	font-size:13px;
	text-decoration:none;
 	display: inline-flex;
	text-align:center;
	margin: 0 0 0 8px;
	cursor: pointer;
}
 
.remember-password{
	text-decoration: underline;
	cursor: pointer;
	padding:10px 0;
	font-size:13px;
	color:#000!important;
}

 


/*head*/	
.head{
	background:#fff;
 	padding: 20px;
	font-size:14px;
}
.head-page{
	background:#1F5F99;
 	padding: 10px 20px;
	color:#fff;
}	
.head-page h2{
	font-size:16px;
}	

.icon-user-head{
	display: inline-flex;
	align-items:center;
	padding: 0 15px 0 0;
	border-right: solid 1px #ddd;
	margin-right:15px;
} 
.icon-user-head b{
	margin: 0 0 0 3px;
} 
.icon-user-head:after{
	display: inline-block;
	width:20px;
	height:20px;
	background: url(../images/user.png) center center no-repeat;
	background-size:cover;
	margin: 0 0 0 5px;
	content:"";
} 
.icon-perfil-head{
	display: inline-flex;
	width:20px;
	height:20px;
	background: url(../images/settings.png) center center no-repeat;
	background-size:cover;
	margin-right:15px;
}
 .icon-perfil-sair{
	display: inline-flex;
	width:20px;
	height:20px;
	background: url(../images/logout.png) center center no-repeat;
	background-size:cover;
}
.overfade{
	opacity:10;
	transition: all 0.3s;
}
.overfade:hover{
	opacity:0.5;
	transition: all 0.3s;
}
.row-perfil{
	justify-content: flex-end;
	flex-wrap: nowrap
}
 
 /*nav-app*/
 
 .nav-app{
	list-style:none;
	padding:0;
	margin:0;
 } 
 .nav-app li{
	display: inline-flex;
	align-items:center;
	margin: 0 12px;
 }
  .nav-app li a{
	color:#333!important;
	font-weight:600;
	text-decoration:none;
	display: inline-flex;
	align-items:center;
	letter-spacing:1px;
	font-size: 12px;
 }
  .nav-app li a:before{
	content:"";
	width:25px;
	height:25px;
	display: inline-block;
	margin: 0 10px 0;
 }
 
.nav-app li a.arquivos:before{
	background: url(../images/arquivos.png) center center no-repeat;
	background-size:cover;
 }
 .nav-app li a.clientes:before{
	background: url(../images/clientes.png) center center no-repeat;
	background-size:cover;
 }  
 .nav-app li a.cliente:before{
	background: url(../images/usuarios.png) center center no-repeat;
	background-size:cover;
 } 
 .nav-app li a.usuarios:before{
	background: url(../images/clientes.png) center center no-repeat;
	background-size:cover;

 }
 .row-hader-filter{
	padding:0 20px;
 }
 
 
 
 
/*form app*/
 
  .input-app input, .input-app select,.input-app date, .input-app file, .input-app  input [type="password"],  .input-app  input [type="tel"]{
	border:none;
	outline:none;
 	padding:6px 10px 7px 10px ;
	display:block;
	width:100%;
	background: #fff;
 	color:#000;
	border-radius:3px;
	font-size:14px;
 } 
 .input-app date{
	cursor:pointer
 } 
 
  .input-app  input[disabled]{
	background-color:#d1e5f7!important;
	color:#1f5f99!important;
	opacity:0.5
 }
 
 

 .date {
	position: relative;
 }
 .date:after{
	position: absolute;
	top:0;
	left:0;
	height:100%;
	background:#fff;
	width:80%;
	z-index:1;
	padding:6px 10px 7px 10px ;
	color:#000;
	font-size:14px;
	content:attr(data-texto);
  }
  
  
.input-app ,::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-size:15px;
  color:#000;
}

.input-app  input,:-ms-input-placeholder { /* Internet Explorer 10-11 */
  font-size:15px;
  color:#000;
}

.input-app  input,::-ms-input-placeholder { /* Microsoft Edge */
 font-size:15px;
 color:#000;
}
 
 
 .row-lista{
	background:#fff;
	border-radius:3px;
	padding: 15px 20px;
 } 
 .row-lista p, .row-lista ul{
	margin:0;
	padding:0;
	font-size:15px;
	list-style:none
 }
 .row-lista ul {
	display:flex;
	align-items:center;
	justify-content:space-between;
	width:100%
 }
 .row-lista ul li {
	width:33%;
 }
 .title-doc{
	display: inline-flex;
	align-items:center;
	overflow: hidden; 
	width:100%; 
	white-space:nowrap;
	position: relative;
 }
  .title-doc-pdf:before{
	display: inline-flex;
	background: url(../images/pdf.png) center center no-repeat;
	background-size:cover;
	width:25px;
	content:"";
	margin: 0 10px 0 0;
	height:25px;
  } 
  .title-doc-doc:before{
	display: inline-flex;
	background: url(../images/doc.png) center center no-repeat;
	background-size:cover;
	width:25px;
	content:"";
	margin: 0 10px 0 0;
	height:25px;
  }
  
.title-doc-json:before{
	display: inline-flex;
	background: url(../images/json.png) center center no-repeat;
	background-size:cover;
	width:25px;
	content:"";
	margin: 0 10px 0 0;
	height:25px;
  }

.title-doc-document:before{
	display: inline-flex;
	background: url(../images/document.png) center center no-repeat;
	background-size:cover;
	width:25px;
	content:"";
	margin: 0 10px 0 0;
	height:25px;
  }
    
.title-doc-xls:before{
	display: inline-flex;
	background: url(../images/xls.png) center center no-repeat;
	background-size:cover;
	width:25px;
	content:"";
	margin: 0 10px 0 0;
	height:25px;
  }
  
  
  
 .icon-action{
	display: inline-flex;
 } 
 .action-edit{
	background: url(../images/edit.png) center center no-repeat;
	background-size:cover;
	width:15px;
	height:15px;
 } 
 .action-delete{
	background: url(../images/delete.png) center center no-repeat;
	background-size:cover;
 	width:15px;
	height:15px;
 }
  .action-view{
	background: url(../images/down.png) center center no-repeat;
	background-size:cover;
	width:20px;
	height:20px;
 }
 .action-download{
	background: url(../images/download.png) center center no-repeat;
	background-size:cover;
	width:20px;
	height:20px;
 } 
 .head-list b{
	margin: 0 0 15px 0;
	display:block
 }
 .row-lista:nth-child(even){
	background:none
 }
 
  .ic-menu{
	background: url(../images/nav.svg) center center no-repeat;
	background-size:cover;
	width:25px;
	height:25px;
	display: inline-block;
 } 
.ic-add-user{
	background: url(../images/add-user.png) center center no-repeat;
	background-size:cover;
	width:25px;
	height:25px;
	display: inline-block;
	margin: 0px 0 0 10px;
 } 
 
 .close-nav{
		 font-size:25px;
		 position: relative;
		top: -5px;
		 color:#5f4eb9 
	}
	.ic-menu{
		 font-size:25px;
		 margin: 0px 10px 0 0;
		  color:#5f4eb9 
	}
	.slider-head .ic-menu{
	  color:#fff !important
	}
	.content-nav-mobile{
		position: fixed;
		top:0;
		left:-100%;
		z-index:9999;
		background:#fff;
		height:100%;
		width:100%;
		padding:30px;
		transition: all 0.5s;
	}
	
	.nav-mobile{
		position: relative;
		list-style:none;
		padding:0;
	}
	
	.nav-mobile li {
		width:100%;
	}
	.nav-mobile li a{
		border-top: solid 1px #ccc;
		padding:10px 0;
		color:#000!important;
		width:100%;
		display:block;
		text-transform:uppercase;
		font-size: 12px;
	}
	.nav-mobile li .sub-menu {
		display:none;
	}
	.nav-mobile li:hover .sub-menu {
		display:block;
	}
	
	
 
 
 .form-cad-input {
	margin: 10px 0;
	padding:10px!important;
  } 
  .m-b-0{
	margin-bottom:0!important
  }
  
  .form-cad-input .btn-submit, .form-cad-input .btn-submit-2  {
 	padding:10px!important;
  } 
 .form-cad-input  .date:after{
 	padding:10px!important
 } 
  .form-cad-input  .date input{
 	padding:10px!important;
 }
 .block-data-click {
	display: flex;
	align-items: center;
	justify-content:center;
 }
  .block-data-click span{
	display: inline-flex;
	align-items: center;
	margin: 0 5px;
	cursor: pointer;
	color:#888
   }  
   .block-data-click span.data-action{
	background:#ddd;
	padding:7px 20px;
	font-weight:700;
	border-radius:3px;
	font-size:13px;
   } 
  .row-field-data-false{
	opacity:0.3;
	z-index:-1
  }
 
 .data-action-active{
	background:#00A88A!important;
	color:#fff!important
 }
 
 
 .modal-mensagem{
	position: fixed;
	top:-50px;
	left:0;
	width:100%;
	padding: 8px;
	box-shadow: 0 0 10px rgba(0 0 0 /30%);
	z-index:9;
	background:#fff;
 	text-transform: uppercase;
	letter-spacing:1px;
	font-size:13px;
	transition: all 0.5s;
	color:#666
 }
 .modal-mensagem-active{
	top:0px;
	transition: all 0.5s;
 }
 .modal-mensagem p{
	margin:0;
	display: inline-flex;
	align-items:center;
 } 
 .modal-mensagem p:before{
	width:15px;
	height:15px;
	content:"";
	display: inline-block;
	background: url(../images/erro.svg) center center no-repeat;
	background-size:cover;
	margin: 0 10px 0 0;
	color:red;
 }


 @media screen and ( max-width: 480px ) {
	 
	.row-lista p, .row-lista ul, .head-list b {
		font-size: 12px;
	}
	 .head-list b {
		font-size: 13px;
		margin: 5px 0 10px 0
	}
	p.data-expirate{
		font-size: 11px!important;
		padding: 2px 5px!important;
	} 
	.title-doc {
		padding: 0 0 0 20px!important;
	}
	.title-doc:before {
		width: 15px;
		left: 0px;
		height: 15px;
		position: absolute;
	}
	.row-lista ul{
		width:120%!important
	}
	 
	.btn-submit, .btn-submit-2, .btn-submit-3{
		padding: 5px 10px!important;
		font-size: 12px!important;
	}
	
	 .nav-app li{
		width:100%;
		padding: 20px 0;
		border-top: solid 1px #ddd
	 }
	 .nav-app li:nth-child(1){
		border-top:none
	 }
	 .nav-app li a{
		font-weight:400;
		font-size:12px;
	 }
	 .nav-app li:nth-child(2) {
		margin: 0 0;
	}
 
	.nav-app li a:before {
		margin: 0 10px 0 0;
	}
	.icon-perfil-head {
		display: inline-flex!important;
		padding: 0 0 0 20px;
	}
	
	.icon-perfil-sair {
 		padding: 0 0 0 20px;
	}
	.container-user-mobile{
		display:none
	}
	
	.container-login .container {
		width: 80%;
	}
	
	.field-login input, .field-login select {
		font-size: 13px;
	}
	.field-login input::-webkit-scrollbar{ font-size: 13px!important; }
	.field-login input::-webkit-scrollbar-track   { font-size: 13px!important; }
	.field-login input::-webkit-scrollbar-thumb   {font-size: 13px!important; }
	
	
	
	
	
 }

 form div.row{
	padding:0!important;
	margin:0!important;
  }

  #loading{
	position: fixed;
	width:100%;
	align-items:center;
	z-index:2000;
	justify-content: center;
	background: url(../images/loding.gif) center center no-repeat;
	background-size:5%;
	background-color: rgba(0,0,0,0.3);
 }

 .ngx-pagination {
	display:inline-flex !important;
	align-items:center !important;
	width:100% !important;
	justify-content:center !important;
	padding:0 !important;
	margin:0 !important;
	list-style:none !important;
  }

 .ngx-pagination .current,
.btn-info {
  color:#fff !important;
  background:#1F5F99 !important;
  border: transparent !important;
  border-radius: 20px !important;
  padding:5px 11px 6px 11px !important;
  text-decoration:none !important;
  margin: 0 5px !important;
  font-size:13px !important;
  border-radius:3px !important;
}

.ngx-pagination .current:hover {
	color:#333 !important;
	 padding:5px 11px 6px 11px !important;
	 text-decoration:none !important;
	 margin: 0 5px !important;
	 font-size:13px !important;
	 border-radius:3px !important;
  }


.showconfirmation {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0px;
    background: rgba(0 0 0/30%);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.showconfirmation .container-confirmation {
    width: 300px;
    height: auto;
    border-radius: 3px;
    background: #fff;
    padding: 20px;
}


 