@charset "UTF-8";

*{
    box-sizing: border-box; 
}


body{
    position: absolute;
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    margin: 0;
}

.modal{
    position: absolute;
    width: 100%;
    height:100%;
    top: 0px;
    left: 0px;
    background-color: rgba(200,200,200,0.7);
    z-index: 2000;
}

.close-button{
    background-image: url('../images/back.png');
    background-size: cover;
    height: 20px;
    width: 20px;
    cursor: pointer;
    position: absolute;
    top: 30px;
    right: 10px;
}

#login {
    width: 200px;
    background-color: white;
    flex-direction: column;
    align-items: center;
    left: 50%;
    transform: translate(-50%,-50%);
    top: 50%;
    position: fixed;
    padding: 30px;
    z-index: 2001;
}

.flex{  
	
	display: flex;
}

.pNav{
    display: flex;
    max-width: 250px;
    text-transform: uppercase;
    flex-direction: column;
    padding: 0px;
    position: relative;
    background-color: rgb(47, 40, 140);
    z-index: 1000;
    height: 100%;
    min-height: 100vh;
}

.navButton{
	display: none;
	height: 25px;
	width: 30px;
	cursor: pointer;
}

.navButton div{
	background-color: rgb(250, 160, 100 );
	width: 100%;
	height: 20%;
}

.pNav li{
	color: white;
    padding: 6pt;
	text-align: center;
	overflow: visible;
	width: 220px;
	cursor: pointer;
    position: relative;
    background-color: rgb(47, 40, 140);
}

.pNav li:hover{
    background-color: rgb(250, 160, 100 );
}
.pNav ul{
    padding:0px;
}
.pNav a{
    text-decoration: none;
}

.dropNav{
    padding: 5px 0px;
    position: absolute;
    z-index: 1001;
    top: -40px;
    left: 200px;
    box-shadow: 2px 2px #888;
    width: fit-content;
}

.float{
	display: flex !important;
}

#kmDate{
    background-color: rgb(250,160,100);
    position: absolute;
    right: 5%;
    top: 22px;
    padding: 5px;
    border-radius: 5px;
    color: white;
}

main{
    margin-left: auto;
    margin-right: auto;
    max-width: calc(100vw);
    position: relative;
}

.hidden{
    display: none !important;
}

.btnClose{
    background-color:#AAA;
    text-transform: uppercase;
    text-align: center;
    margin: 5px;
    cursor: default;
}

.btnClose:hover{
	background-color:#F55;
}

.btAction{
    background-color:#DDD;
    text-transform: uppercase;
    text-align: center;
    cursor: default;
    text-transform: uppercase;
    margin: 5px auto;
    display: block;
    padding: 2px;
    border-radius: 7px;
    width: 100%;
    max-width: 200px;
}

.btAction:hover{
    background-color:#99F;
    cursor: pointer;
}

h1{
    text-align: center;
    font-family:helvetica;
    font-size: 20pt;
    color:rgb(47,40,140);
}

h2{
    margin-top: 5pt;
    text-align: center;
    margin-bottom: 8pt;
}

h3{
    font-size: 8pt;
    text-transform: uppercase;
    text-align: center;
    margin: 5px;
}

#Logo{
    color: white;
    margin-top: 10px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width:117px;
}

#imgLogo{
    border-radius: 20px;
}

.user h3{
    color: rgb(250, 160, 100);
}

#filter{
    display: flex;
    justify-content: center;
}

.filter-box{
    width: 130px;
    background-color: rgb(220,220,230);
    border: 1px solid;
    border-radius: 15px;
    height: 150px;
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin: 2px;
    font-size: 8pt;
    overflow-x: hidden;
}

.filter-box--chk{
    width: 80%;
    height: 70%;
    background-color:white;
    padding: 3px;
    overflow-y: auto;
    overflow-x: hidden;
}


.tabela{
    width: fit-content;
     max-height: 100vh;
    overflow-y: auto;
    margin: auto;
}

.tablesorter{
    text-align: center;
    width: fit-content;
    margin: auto;
}

thead th {
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 1;
}

.btVerde{
    background-color: rgba(0, 150, 0, 0.4);
    text-transform: uppercase;
    color: white;
    margin: 10px auto;
    display: block;
    padding: 2px;
    border-radius: 7px;
    width: 100%;
    max-width: 200px;
}

.btVerde:hover{
    background-color: rgba(0, 150, 0, 0.7);
    cursor: pointer;
}

.btVerm{
    background-color: rgba(150, 0, 0, 0.4);
    text-transform: uppercase;
    color: white;
    margin-right: auto;
	margin-left: auto;
	margin-top: 10px;
	margin-bottom: 10px;
    font-size: 17pt;
	display: block;
	padding: 5px;
}

.btVerm:hover{
    background-color: rgba(150, 0, 0, 0.7);
}

.back {
    position: absolute;
    cursor: pointer;
    width: 40px;
    margin: 15px;
}

@media print{
    .noprint{
        display: none;
    }
}

@media (max-width:1366px){
	.pNav{
		display: none;
	}
	.navButton{
		    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    position: absolute;
                    margin: 10px;
                    z-index: 1001;
	}
        .back{
            display: none;
        }
}

.templates{
    display: none !important;
}

label{
	text-transform: uppercase;
}

select {
    background-color: rgba(250,160,100);
    height: 15pt;
    max-width: 200px;
    width: 100%;
    text-transform: uppercase;
    text-align: center;
    display: inline-block;
    margin: 10px 0px;
    border-radius: 5px;
}

.center{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin-left: auto;
    margin-right: auto;
	text-align: center;
	align-items: center;
}

.menu{
    display: flex;
    flex-direction: column;
    position: sticky;
    top: calc(50% - 200px);
    margin: auto;
    width: 350px;
    max-width: 350px;
    height: 400px;
    max-height: 400px;
    overflow-y: auto;
    overflow-x: clip;
    background-color: white;
    padding: 20px;
}

input[type=text],textArea{
	width: 100%;
        max-width: 200px;
	margin: 10px auto;
	text-align: center;
        resize: none;
}

#msg{
    background-color: khaki;
    text-align: center;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 2000;
}

.success{
    background-color: greenyellow;
}

.fail{
    background-color: #ff6666;
}

td img, li img{
	width: 19px;
	cursor: pointer;;
}

.menu img{
    width: 25px;
    margin-right: 30px;
}

.lock img{
    position: absolute;
    width: 120px;
    height: 120px;
    left: calc(50vw - 60px);
    top: calc(50vh - 60px);
}


#tree ul{
    border-left: 1px dotted;
    border-bottom: 1px dotted;
    margin-bottom: -1px;
}

#tree .arrow{
    width: 20px;
    display: none;
	cursor: pointer;
}

#tree span{
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
}

#tree span:hover{
	text-decoration: underline;
	cursor: pointer;
}
