/* ITENS UNIVERSAIS */

.PainelOpcoes{
	margin-top: 5vh;
	background-color: white;
	width: 90vw;
	border-radius: 5px;
}

/*BOTOES*/
.BotaoVerde{
	width: 80vw;
	height: 50px;
	border-radius: 4px;
	font-size: 30px;
	color: white;
	outline: none;
	border-width: 1px;
	border-color: white;
	background-color: green;
}
.BotaoVerdePequeno{
	width: 60vw;
	height: 50px;
	border-radius: 5px;
	font-size: 30px;
	color: white;
	outline: none;
	border-width: 1px;
	border-color: white;
	background-color: green;
}
.BotaoVerdeMini{
	width: 20vw;
	height: 50px;
	border-radius: 5px;
	font-size: 30px;
	color: white;
	outline: none;
	border-width: 1px;
	border-color: white;
	background-color: green;
}
.BotaoLaranja{
	width: 80vw;
	height: 50px;
	border-radius: 4px;
	font-size: 30px;
	color: white;
	outline: none;
	border-width: 1px;
	border-color: white;
	background-color: orange;
}
.BotaoLaranjaPequeno{
	width: 60vw;
	height: 50px;
	border-radius: 5px;
	font-size: 30px;
	color: white;
	outline: none;
	border-width: 1px;
	border-color: white;
	background-color: orange;
}.BotaoLaranjaMini{
	width: 20vw;
	height: 50px;
	border-radius: 5px;
	font-size: 30px;
	color: white;
	outline: none;
	border-width: 1px;
	border-color: white;
	background-color: orange;
}
.BotaoVermelho{
	width: 80vw;
	height: 50px;
	border-radius: 4px;
	font-size: 30px;
	color: white;
	outline: none;
	border-width: 1px;
	border-color: white;
	background-color: red;
}
.BotaoVermelhoPequeno{
	width: 60vw;
	height: 50px;
	border-radius: 5px;
	font-size: 30px;
	color: white;
	outline: none;
	border-width: 1px;
	border-color: white;
	background-color: red;
}
.BotaoVermelhoMini{
	width: 20vw;
	height: 50px;
	border-radius: 5px;
	font-size: 30px;
	color: white;
	outline: none;
	border-width: 1px;
	border-color: white;
	background-color: red;
	margin-left: 5px;
	margin-right: 5px;
}
.BotaoLaranja:hover,.BotaoLaranjaPequeno:hover,.BotaoLaranjaMini:hover,.BotaoVermelho:hover,.BotaoVermelhoPequeno:hover,.BotaoVermelhoMini:hover,.BotaoVerde:hover,.BotaoVerdePequeno:hover,.BotaoVerdeMini:hover{
	background-color: rgba(0,0,0,0.8);
	transition: transform 0.4s ease, background-color 0.4s ease, box-shadow 0.3s ease;
	transform: scale(1.03);
}
/*BOTOES*/

/*TEXTO*/
.TextoTitulo{
	font-size: 100px;
	font-weight: bold;
	color: black;
}
.TextoSubTitulo{
	font-size: 70px;
	font-weight: bold;
	color: black;
}
.TextoComum{
	font-size: 50px;
	font-weight: bold;
	color: black;
}
.TextoComumVermelho{
	font-size: 50px;
	font-weight: bold;
	color: red;
	text-decoration: none;
}
.TextoPequeno{
	font-size: 32px;
	font-weight: bold;
	color: black;
}
.TextoPequenoVermelho{
	font-size: 32px;
	font-weight: bold;
	color: red;
	text-decoration: none;
}
/*TEXTO*/

/*CAIXAS DE TEXTO*/
.CaixaTXT{
	height: 60px;
	width: 80vw;
	border-radius: 5px;
	border-width: 2px;
	border-color: red;
	outline: none;
	text-align: center;
	font-size: 50px;
	text-transform: uppercase;
}
.CaixaTXTPequeno{
	height: 50px;
	width: 80vw;
	border-radius: 5px;
	border-width: 2px;
	border-color: red;
	outline: none;
	text-align: center;
	font-size: 30px;
	text-transform: uppercase;
}
.CaixaOBS{
	height: 120px;
	width: 70vw;
	border-radius: 5px;
	border-width: 2px;
	border-color: red;
	outline: none;
	text-align: center;
	font-size: 30px;
	text-transform: uppercase;
}
/*CAIXAS DE TEXTO*/

/*SEPARADORES*/
hr.Pequeno{
	border: none;
	height: 3px;
	width: 30vw;
	background-color: rgba(0,0,0,0.5);
}
hr.Medio{
	border: none;
	height: 3px;
	width: 60vw;
	background-color: rgba(0,0,0,0.5);
}
hr.Grande{
	border: none;
	height: 3px;
	width: 90vw;
	background-color: rgba(0,0,0,0.5);
}
hr{
	border: none;
	background-color: rgba(255,255,255);
}
/*SEPARADORES*/

/* ITENS UNIVERSAIS */

/*PAGINA PAINEL.PHP*/
.PainelMenuOpcoes{
	margin-top: 5vh;
	background-color: white;
	width: 90vw;
	height: 650px;
	border-radius: 5px;
}
.PainelBotoes{
	justify-content: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.BotaoVerdeMenuPrincipal{
	width: 20vw;
	height: 100px;
	border-radius: 5px;
	font-size: 20px;
	color: white;
	outline: none;
	border-width: 1px;
	border-color: black;
	background-color: green;
}
.BotaoLaranjaMenuPrincipal{
	width: 20vw;
	height: 100px;
	border-radius: 5px;
	font-size: 20px;
	color: white;
	outline: none;
	border-width: 1px;
	border-color: black;
	background-color: orange;
}
.BotaoVermelhoMenuPrincipal{
	width: 20vw;
	height: 100px;
	border-radius: 5px;
	font-size: 20px;
	color: white;
	outline: none;
	border-width: 1px;
	border-color: black;
	background-color: red;
}
.BotaoCinzaMenuPrincipal{
	width: 20vw;
	height: 100px;
	border-radius: 5px;
	font-size: 20px;
	color: white;
	outline: none;
	border-width: 1px;
	border-color: black;
	background-color: gray;
}
.BotaoCinzaSairMenuPrincipal{
	width: 40vw;
	height: 100px;
	border-radius: 5px;
	font-size: 20px;
	color: white;
	outline: none;
	border-width: 1px;
	border-color: black;
	background-color: gray;
}
.BotaoVerdeMenuPrincipal:hover,.BotaoLaranjaMenuPrincipal:hover,.BotaoVermelhoMenuPrincipal:hover,.BotaoCinzaMenuPrincipal:hover,.BotaoCinzaSairMenuPrincipal:hover{
	background-color: rgba(0,0,0,0.8);
	transition: transform 0.4s ease, background-color 0.4s ease, box-shadow 0.3s ease;
	transform: scale(1.03);
}
/*PAGINA PAINEL.PHP*/

body{
	background-color: #DCDCDC;
}
img{
	border-radius: 7px;
}
.icones{
	width: 50px;
	height: 50px;
	margin-bottom: 2px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}