/* CSS Document */

*{
	font-family:Verdana, Geneva, sans-serif;
	font-size:12px;
	margin: 0;
	padding: 0;
}

h1{
	font-size:1.5rem;
}

h2{
	font-size:1.1rem;
}

h3{
	font-size:1rem;
	font-style: italic;
	font-weight: 900;
}

a{
	text-decoration:none;
	font-weight:bold;
}
	a:hover{
		cursor:pointer;
	}
body{
	margin: 0 auto;
	width:100vw;
	height:100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color:#000;
	color:#000;
	background-image:url(../imagens/fundos/bg_maquina.png);
	background-position:top left;
	background-size:100%;
	background-repeat:no-repeat;
	overflow:hidden;
}
/*IDs*/
#btAdd{
	width: 4rem;
	color: white;
	background-color: green;
	font-weight: bolder;
}
#btEv{
	width: 4rem;
	color: white;
	background-color: navy;
	font-weight: bolder;
}
#btRem{
	width: 4rem;
	color: white;
	background-color: red;
	font-weight: bolder;
}
	#btAdd:hover, #btEv:hover, #btRem:hover{
		cursor: pointer;
	}
#corpo{
	width:80vw;
	height:80vh;
	position:relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding:2%;
	border:1px solid white;
	border-radius:2em;
	background-image:url(../imagens/fundos/fdconteiner.png);
	background-repeat:repeat;
	box-shadow:5px 5px 15px #333;
}
#imgs{
	overflow-y: scroll;
}
#pDireito{
	position: relative;
	width: 35vw;
	height: 80vh;
	padding: 3px;
}
#pEsquerdo{
	position: relative;
	width: 35vw;
	height: 80vh;
	padding: 3px;;
	border-right: 2px solid black;
	overflow: hidden;
}
#rowIds {
	position: relative;
	width: auto;
    height: 40vh;
    margin: 0;
    padding: 2px;
    overflow-x: hidden;
	overflow-y: auto;
}
	#rowIds p:focus{
		border: 1px solid black;
	}
#tbCods{
	position: relative;
	width: 100%;
	border: none;
	padding: 5px;
	overflow: hidden;
}

#txt1{
	border: 2px solid blue;
	border-radius: 0.5rem;
	padding: 0.5rem;
	width: 95%;
}
	
/*Classes*/
.btAzul{
	padding: 0.3em 1.6em 0.3em 1.6em;
	background-color: darkblue;
	color: white;
	border: 1px solid white;
	border-radius: 2rem;
	font-weight: bold;
	
}
.btAzulClaro{
	padding: 0.3em 1.6em 0.3em 1.6em;
	background-color: #00468B;
	color: white;
	border: 1px solid white;
	border-radius: 2rem;
	font-weight: bold;
}
.btVerde{
	padding: 0.3em 1.6em 0.3em 1.6em;
	background-color: green;
	color: white;
	border: 1px solid white;
	border-radius: 2rem;
	
}
.btAmarelo{
	padding: 0.3em 1.6em 0.3em 1.6em;
	background-color: rgb(221, 162, 11);
	color: white;
	border: 1px solid white;
	border-radius: 2rem;
	
}
.btRoxo{
	
	padding: 0.3em 1.6em 0.3em 1.6em;
	background-color: #46008B;
	color: white;
	border: 1px solid white;
	border-radius: 2rem;
	font-weight: bold;
}
	.btAzul:hover, .btVerde:hover, .btAmarelo:hover, .btAzulClaro:hover, .btRoxo:hover{
		cursor: pointer;
		box-shadow: 2px 3px #999;
	}
.clear{
	clear: both;
}
.conteudo{
	position:relative;
	width: auto;
	max-width:85vw;
	max-height:85vh;
	padding:1.5em;
	background-color:#FFF;
	border:1px solid #FFF;
	border-radius:1.8em;
	display: flex;
}
.corVermelha{
	color: red;
}
.flexDisp{
	display: flex;
}
.flexContentJustify{
	justify-content: center;
}

.flexDirCol{
	flex-direction: column;
}
.flexDirRow{
	flex-direction: row;
}
.flexItemAlignCenter{
	align-items: center;
}
.lDupla{
	line-height: 3rem;
}
.link{
	color: blue;
}
	.link:hover{
		cursor: pointer;
	}

.oculto{
	display: none;
}

.padding_1{
	padding: 1.2rem;
}
.pLeft{
	text-align: left;
}
.rowTit{
	font-weight: 700;
	padding: 0.5rem;
}

.rowCmd{
	position: relative;
	border-left: 3px solid #999;
	text-align: center;
	width: 20%;
	overflow-y: scroll;
}

.rowId{
	position: relative;
	width: 80%;
	margin: 0;
	padding: 0.8rem;
}

.roundTextBox{
	padding: 3px;
	border-radius: 0.5rem;

}

.textAlignCenter{
	text-align: center;
}
.trHeight{
	overflow-y: auto;
	height: 40vh;
}

.Largura100{
	position: relative;
	width: 100%;
}
.PaddingCimaBaixo{
	padding-top: 15px;
	padding-bottom: 15px;
}
.PaddingLateral{
	padding-left: 10px;
	padding-right: 10px;
}