


input[type=text]
,input[type=tel]
,input[type=number]
,input[type=file]
,input[type=password]
,textarea
,select
,input[type=button]
,input[type=submit]
,input[type=reset]
,button {
	color: #5C5C5C;
	background-color: #FFF;
	border: 1px solid #CCC;
	outline: none;
	border-radius: 0px;
	padding: 7px 10px;
	font-size: medium;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
input[type=text]
,input[type=tel]
,input[type=number]
,input[type=file]
,input[type=password]
,textarea
,select {
	/* width: calc(100% - 20px); */
	/* width: 100%; */
}

textarea {
	width: -webkit-fill-available;
}
input[type=button]
,input[type=submit]
,input[type=reset]
,button {
	border: none;
	padding: 8px 13px;
	cursor: pointer;
}
button {
	display: flex;
	flex-wrap: nowrap;
	gap: 5px;
  align-items: center;
}
/* @media screen and (max-width: 600px) {
	input[type=text]
	,input[type=tel]
	,input[type=number]
	,input[type=file]
	,input[type=password]
	,textarea
	,select
	,input[type=button]
	,input[type=submit]
	,input[type=reset]
	,button {
		font-size: small;
	}
} */


input[type=text].vermelho
,input[type=tel].vermelho
,input[type=number].vermelho
,input[type=file].vermelho
,input[type=password].vermelho
,textarea.vermelho
,select.vermelho {
	color: #FFFFFF;
	background-color: #D92127;
}

input[type=text].laranja
,input[type=tel].laranja
,input[type=number].laranja
,input[type=file].laranja
,input[type=password].laranja
,textarea.laranja
,select.laranja {
	color: #FFFFFF;
	background-color: #FF6600;
}

input[type=text].verde
,input[type=tel].verde
,input[type=number].verde
,input[type=file].verde
,input[type=password].verde
,textarea.verde
,select.verde {
	color: #FFFFFF;
	background-color: #009900;
}

input[type=text].amarelo
,input[type=tel].amarelo
,input[type=number].amarelo
,input[type=file].amarelo
,input[type=password].amarelo
,textarea.amarelo
,select.amarelo {
	background-color: #FFCC29;
}

input[type=text].prata
,input[type=tel].prata
,input[type=number].prata
,input[type=file].prata
,input[type=password].prata
,textarea.prata
,select.prata {
	color: #FFF;
	background-color: #AD8F49;
}

input[type=text].preto
,input[type=tel].preto
,input[type=number].preto
,input[type=file].preto
,input[type=password].preto
,textarea.preto
,select.preto {
	color: #FFF;
	background-color: #5C5C5C;
}

input[type=text].azul
,input[type=tel].azul
,input[type=number].azul
,input[type=file].azul
,input[type=password].azul
,textarea.azul
,select.azul {
	color: #FFF;
	background-color: #0079c0;
}



input[type=text]::placeholder
,input[type=tel]::placeholder
,input[type=number]::placeholder
,input[type=file]::placeholder
,input[type=password]::placeholder
,textarea::placeholder
,select::placeholder {
	color:#BBB;
}
input[type=text]:focus
,input[type=tel]:focus
,input[type=number]:focus
,input[type=file]:focus
,input[type=password]:focus
,textarea:focus
,select:focus {
	background-color: #FFF;
	border: 2px solid #0CF;
	color: #5C5C5C;
	outline: none;
	margin: -1px 0px;
}
input[type=text]:disabled
,input[type=tel]:disabled
,input[type=number]:disabled
,input[type=file]:disabled
,input[type=password]:disabled
,textarea:disabled
,select:disabled {
	background-color:#EEE;
	border:1px solid #DDD;
	color:#AAA;
	outline:none;
}
select option:disabled {
	color: #DDD;
}



.boxform {
	/* max-width: 800px; */
}


.boxform.pequeno input[type=text]
,.boxform.pequeno input[type=tel]
,.boxform.pequeno input[type=number]
,.boxform.pequeno input[type=file]
,.boxform.pequeno input[type=password]
,.boxform.pequeno textarea
,.boxform.pequeno select
,.boxform.pequeno input[type=button]
,.boxform.pequeno input[type=submit]
,.boxform.pequeno input[type=reset]
,.boxform.pequeno button {
	font-size: small;
	padding: 6px 10px;
}

.boxform.grande input[type=text]
,.boxform.grande input[type=tel]
,.boxform.grande input[type=number]
,.boxform.grande input[type=file]
,.boxform.grande input[type=password]
,.boxform.grande textarea
,.boxform.grande select {
	font-size: large;
	padding: 10px 10px;
}
.boxform.grande input[type=button]
,.boxform.grande input[type=submit]
,.boxform.grande input[type=reset]
,.boxform.grande button {
	font-size: large;
	padding: 11px 25px;
}

.boxform.extragrande input[type=text]
,.boxform.extragrande input[type=tel]
,.boxform.extragrande input[type=number]
,.boxform.extragrande input[type=file]
,.boxform.extragrande input[type=password]
,.boxform.extragrande textarea
,.boxform.extragrande select {
	font-size: large;
	padding: 15px 15px;
}
.boxform.extragrande input[type=button]
,.boxform.extragrande input[type=submit]
,.boxform.extragrande input[type=reset]
,.boxform.extragrande button {
	font-size: x-large;
	padding: 16px 30px;
}








.boxform .campo {
	padding: 4px 0px;
	display: grid;
	position: relative;
}
.boxform .campo > label {
	font-size: x-small;
  margin-bottom: 0px;
  color: #999;
}
.boxform .campo > label > span {
	font-size: medium;
	margin-left: 5px;
	color: #5c5c5c;
}

.boxform .icon {
	font-size: medium;
	color: #5c5c5c;
}


.boxform .botoes {
	display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
	gap: 5px;
	padding: 10px 0px;
	margin-top: 10px;
	border-top: 1px solid #CCC;
}


.boxform .botoes.total {
	display: grid;
	justify-content: inherit;
}
.boxform .botoes.center {
	justify-content: center;
}
.boxform .botoes.total button {
	justify-content: center;
	width: 100%;
}



.boxform .outros {
	display: grid;
  align-items: center;
  justify-content: center;
	padding: 10px 0px;
}




.msgform {
	display: grid;
  align-items: center;
  justify-content: flex-start;
}
.msgform > div {
	display: flex;
  align-items: center;
  justify-content: flex-start;
	flex-wrap: nowrap;
	gap: 5px;
	text-align: left;
}
.msgform > .carregando,
.msgform > .sucesso,
.msgform > .erro {
	padding: 5px 10px;
	border-radius: 5px;
}
.msgform > i,
.msgform > span {
	color: #000;
}
.msgform > .carregando {
	background: #FFC;
}
.msgform > .erro {
	background: #E66;
}
.msgform > .erro i,
.msgform > .erro span {
	color: #FFF;
}
.msgform > .sucesso {
	background: #6E9;
}
.msgform > .sucesso i,
.msgform > .sucesso span {
	color: #060;
}



.msgform:empty {
	display: none;
}
.msgform i {
	font-size: large;
}
.msgform span {
	font-size: small;
}
.msgform .branco {
	color: #FFF;
}
.msgform .cinza {
	color: #666;
}




.formata_cartao_numero {
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: auto 50%;
}




.legenda {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: small;
}
.legenda::before {
  width: 16px;
  height: 16px;
  background-color: #CCC;
  border-radius: 20%;
}
.legenda.verde::before {
  background-color: #009900;
}
.legenda.laranja::before {
  background-color: #FF6600;
}
.legenda.amarelo::before {
  background-color: #FFCC29;
}
.legenda.vermelho::before {
  background-color: #D92127;
}



.tabela-lista {
	width: 100%;
	max-width:1300px;
	border-spacing: inherit;
}
.tabela-lista > thead > tr > td ,
.tabela-lista > tbody > tr > td ,
.tabela-lista > tfoot > tr > td {
	padding: 10px 5px;
	text-align: left;
	font-size: small;
	color: #333;
}
.tabela-lista > tbody > tr:nth-child(odd) {
	background-color:#F1F1F1;
}
.tabela-lista > thead > tr > td {
	padding: 5px 5px;
	font-size: x-small;
	background-color:#422462;
	color: #FFF;
}
.tabela-lista > tbody > tr:hover > td {
	background-color: #CDF;
}
.tabela-lista > tbody > tr > td div {
	padding-top: initial;
	padding-bottom: initial;
}
.tabela-lista > tbody > tr.on {
	background-color: #AFC;
}
.tabela-lista > tbody > tr.off td,
.tabela-lista > tbody > tr.off td div,
.tabela-lista > tbody > tr.off td span {
	color: #333;
}
.tabela-lista > tbody > tr.off {
	background-color: #FCC;
}
.tabela-lista > tbody > tr.off td,
.tabela-lista > tbody > tr.off td div,
.tabela-lista > tbody > tr.off td span {
	color: #BBB;
}
.tabela-lista.linha > tbody > tr > td {
	border-bottom: 1px solid #CCC;
}
.tabela-lista.grande > tbody > tr > td {
	padding: 20px 10px;
}

.tabela-lista [class*="ico-"] {
	cursor: pointer;
}
.tabela-lista span i {
	cursor: pointer;
	font-size:large;
}
.tabela-lista .cinza:not(button) {
	color:#666;
}
.tabela-lista .cinza:not(button) i {
	color:#BBB;
}
.tabela-lista .amarelo:not(button) i {
	color:#FF0;
}
.tabela-lista .verde:not(button) i {
	color:#0A0;
}
.tabela-lista .laranja:not(button) i {
	color:#F60;
}
.tabela-lista .vermelho:not(button) i {
	color:#C00;
}
.tabela-lista .azul:not(button) i {
	color:#0079c0;
}








[class*="tabelalista"] {
	display:table;
	width: 100%;
	max-width:1300px;
	padding-top:15px;
	padding-bottom:15px;
	background-color:#FFF;
	border-bottom:1px dashed #EEE;
}
.tabelalista:nth-child(odd) {
	background-color:#F1F1F1;
}
[class*="tabelalista"] table {
	width: 100%;
}
[class*="tabelalista"] table tr td {
	padding: 0px 5px;
	text-align:left;
	font-size:0.75rem;
	color:#666;
}
[class*="tabelalista"] table tr td.cfg-config {
	display: none;
}
[class*="tabelalista"] table tr td.cfg-dados {
	display: table-cell;
}
[class*="tabelalista"] table.config-on tr td.cfg-config {
	display: table-cell;
}
[class*="tabelalista"] table.config-on tr td.cfg-dados {
	display: none;
}
.tabelalista:hover {
	background:#CDF;
}
.tabelalista-menu {
	padding-top:7px;
	padding-bottom:7px;
	background-color:#422462;
	border-bottom:none;
}
.tabelalista-menu table {
	width: 100%;
	max-width:1300px;
}
.tabelalista-menu table tr td {
	font-size:0.625rem;
	color:#FFF;
}
.tabelalista div {
	padding-top: 0px;
	padding-bottom: 0px;
}
.barratoplista {
	display:table;
	width: 100%;
	width:-webkit-calc(100% - 20px);
	width:-moz-calc(100% - 20px);
	width:calc(100% - 20px);
	max-width:1280px;
	margin-top: 20px;
}
.barratoplista.base {
	margin-top: 0px;
	margin-bottom: 20px;
}
.tabelalista [class*="ico-"] {
	cursor: pointer;
}
.tabelalista span i {
	cursor: pointer;
	font-size:large;
}
.tabelalista .cinza {
	color:#999;
}
.tabelalista i {
	color:#422462;
}
.tabelalista .cinza i {
	color:#BBB;
}
.tabelalista .amarelo i {
	color:#FF0;
}
.tabelalista .verde i {
	color:#0A0;
}
.tabelalista .laranja i {
	color:#F60;
}
.tabelalista .vermelho i {
	color:#C00;
}
.tabelalista .azul i {
	color:#0079c0;
}
