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 #DDD;
	outline: none;
	border-radius: var(--botao-radius);
	padding: 7px 10px;
	box-sizing: border-box
}

select {
	padding: 6px 10px;
}


input[type=file] {
	padding: 3px;
}

input[type=file]::file-selector-button {
	color: #FFF;
	background-color: #0079c0;
	border: 0px;
	border-right: 1px solid #e5e5e5;
	padding: 7px 10px;
	margin-right: 10px;
	transition: .5s;
}

input[type=file]::file-selector-button:hover {
	background-color: #118AD1;
}

input[type=file]::file-selector-button:active {
	background-color: #229BE2;
}


input[type=text],
input[type=tel],
input[type=number],
input[type=file],
input[type=password],
textarea,
select {
	width: 100%
}

input[type=button],
input[type=submit],
input[type=reset],
button {
	border: none;
	cursor: pointer
}

button {
	display: flex;
	flex-wrap: nowrap;
	gap: 5px;
	align-items: center;
	justify-content: center
}

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: 1px solid #0CF;
	color: #5C5C5C;
	outline: none;
	-webkit-box-shadow: 2px 2px 7px 0 rgba(0, 0, 0, .20);
	-moz-box-shadow: 2px 2px 7px 0 rgba(0, 0, 0, .20);
	box-shadow: 2px 2px 7px 0 rgba(0, 0, 0, .20)
}

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.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: 5px 7px
}

.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,
.boxform.grande input[type=button],
.boxform.grande input[type=submit],
.boxform.grande input[type=reset],
.boxform.grande button {
	font-size: large;
	padding: 10px 10px
}

.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,
.boxform.extragrande input[type=button],
.boxform.extragrande input[type=submit],
.boxform.extragrande input[type=reset],
.boxform.extragrande button {
	font-size: x-large;
	padding: 10px 10px
}

.boxform .campo {
	padding: 4px 0;
	display: grid;
	align-items: flex-start;
	align-content: flex-start;
}

.boxform .campo.center {
	justify-items: center;
}

.boxform label {
	font-size: .75rem;
	margin-bottom: 0;
	color: #999;
	width: fit-content;
	display: flex;
	align-items: center;
}

@media only screen and (max-width: 700px) {
	.boxform label {
		font-size: .85rem;
	}
}

.boxform label>span {
	font-size: .8rem;
	margin-left: 5px;
	color: black
}

@media only screen and (max-width: 700px) {
	.boxform label>span {
		font-size: .8rem;
	}
}

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

.boxform .botoes.no-margin {
	padding: 0;
	margin-top: 0;
	border-top: none
}

.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 0
}

.msgform {
	display: grid;
	align-items: center;
	justify-items: flex-start;
	padding: 10px 2px;
	font-size: .8rem;
}

.msgform>div {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	gap: 5px
}

.msgform .erro,
.msgform .erro * {
	color: #A00 !important
}

.msgform .sucesso,
.msgform .sucesso * {
	color: #0A0 !important
}

.msgform i {
	font-size: large
}

.msgform:empty {
	display: none
}

.icofont-spinner {
	visibility: hidden;
	position: relative
}

.icofont-spinner::after {
	visibility: visible;
	position: absolute;
	content: "\effa";
	-webkit-animation: rotation 2s infinite linear;
	top: 0;
	left: 0
}

@-webkit-keyframes rotation {
	from {
		-webkit-transform: rotate(0deg)
	}

	to {
		-webkit-transform: rotate(359deg)
	}
}

.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
}

.drop-area {
	color: #AAA
}

.drop-area.highlight {
	background-color: lavender
}

.drop-area.arquivos {
	border: 1px dashed #CCC;
	height: 250px;
}

.drop-area.imagem {
	border: 1px dashed #CCC;
	height: 250px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
}

.drop-area.imagem img {
	max-height: 230px
}

.drop-area.imagens {
	border: none;
	height: 250px;
	overflow: auto
}

.drop-area.imagens ul.ui-sortable {
	width: 100%;
	border: none;
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
	justify-items: flex-start;
	gap: 10px
}

.drop-area.imagens ul.ui-sortable li {
	margin: 0;
	padding: 0;
	width: 130px;
	height: 100px;
	cursor: pointer;
	border: 1px solid #CCC;
	position: relative;
	background-color: #FFF;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: contain;
	-moz-background-size: contain;
	-o-background-size: contain;
	background-size: contain
}

.drop-area.imagens ul.ui-sortable li.cover {
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover
}

.drop-area.imagens ul.ui-sortable li img {
	cursor: pointer;
	border: none;
	position: absolute;
	padding: 4px;
	border-radius: 999px;
	-moz-border-radius: 999px;
	-webkit-border-radius: 999px;
	width: 22px;
	height: 22px;
	box-sizing: border-box
}

.drop-area.imagens ul.ui-sortable li img.delete {
	right: 3px;
	top: 3px;
	background-color: #C00
}

.drop-area.imagens ul.ui-sortable li img.lupa {
	left: 3px;
	top: 3px;
	background-color: #789
}

.drop-area.imagens ul.ui-sortable li img.rotate {
	left: 3px;
	bottom: 3px;
	background-color: #789
}

.drop-area.imagens ul.ui-sortable li input.paletaCorFoto {
	cursor: pointer;
	border: none;
	position: absolute;
	left: 2px;
	bottom: 2px
}

.drop-area:empty {
	border: 1px dashed #CCC;
	min-height: 150px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #AAA
}

.drop-area:empty:after {
	content: "Arraste o arquivo aqui"
}

#dados-fiscal.drop-area:empty:after {
	content: "Arraste o XML da NF-e aqui"
}

#dados-cte.drop-area:empty:after {
	content: "Arraste o XML da CT-e aqui"
}

.contador_txt_box {
	position: relative
}

.contador_txt_box>span {
	background-color: #DDD;
	color: #666;
	font-size: x-small;
	position: absolute;
	right: 0;
	top: 0;
	padding: 2px 5px
}

.contador_txt_box.textarea>span {
	top: 0px
}

.contador_txt_box.focus>span {
	background-color: #0CF;
	color: #FFF
}

.contador_txt_box.erro>span {
	background-color: #FC0;
	color: #333
}

.multiselect-container label {
	font-size: .875rem
}

.selectmultiple {
	font-size: .875rem;
	color: #5C5C5C;
	background-color: #FFF;
	border: 1px solid #DDD;
	outline: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 7px;
	padding-bottom: 7px;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	text-align: left
}

form.pequeno .selectmultiple .multiselect-container label,
.selectmultiple.pequeno .multiselect-container label {
	font-size: .875rem
}

form.pequeno .selectmultiple,
.selectmultiple.pequeno {
	font-size: .625rem;
	padding-left: 7px;
	padding-right: 7px;
	padding-top: 3px;
	padding-bottom: 3px
}

form.grande .selectmultiple .multiselect-container label,
.selectmultiple.grande .multiselect-container label {
	font-size: 1.125rem
}

form.grande .selectmultiple,
.selectmultiple.grande {
	font-size: 1.125rem;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 9px;
	padding-bottom: 9px
}

.selectmultiple span {
	font-size: .875rem
}

.selectmultiple:focus {
	background-color: #FFD;
	border: 1px solid #DD618B;
	color: #5C5C5C;
	outline: none
}

.selectmultiple:disabled {
	background-color: #EEE;
	border: 1px solid #DDD;
	color: #AAA;
	outline: none
}

.multiselect-container>li.active>a>label.checkbox {
	color: #333 !important;
	background: #EEE !important
}

.multiselect-container {
	width: 100% !important
}

.boxform div {
	padding-top: 3px;
	padding-bottom: 3px
}

.boxform pre div {
	padding-top: 0;
	padding-bottom: 0
}

.boxform pre span {
	vertical-align: 0;
	margin-right: 0
}

.boxform pre span {
	vertical-align: 0;
	margin-right: 0
}

.boxform .boxinfo div {
	padding-top: 0;
	padding-bottom: 0
}

.boxform div.chosen-container {
	padding-top: 0;
	padding-bottom: 0
}

.boxform .exibir_icone {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 120px;
	border: dashed 1px #CCC;
}

.boxform .exibir_icone i {
	font-size: 3.8rem;
	color: #333;
}

.boxform .exibir_icone svg {
	width: 100px;
	height: 100px;
	color: #333;
	fill: currentColor;
}

.listacategoria label {
	display: flex;
	gap: 6px;
	justify-content: flex-start;
	align-items: center;
	width: fit-content;
	font-size: smaller;
	color: #999;
	margin-top: 0;
	margin-bottom: 0
}

.listacategoria span {
	vertical-align: 3px;
	font-size: small;
	color: #666;
	margin-right: 10px
}

.password-view {
	position: relative;
	padding: 0 !important
}

.password-view i {
	position: absolute;
	top: 6px;
	right: 10px;
	z-index: 9;
	font-size: large;
	cursor: pointer;
	color: #AAA
}

.password-view.active i {
	color: #0AF
}

.boxmsgflutuante {
	position: relative;
	padding: 0 !important
}

.boxmsgflutuante>div {
	position: absolute;
	bottom: 0;
	z-index: 9999;
	padding: 3px 7px;
	display: none;
}

.boxmsgflutuante>div>div {
	display: flex;
	align-items: center;
	gap: 5px;
}

.boxmsgflutuante>div>div i {
	font-size: .8rem
}

.boxmsgflutuante>div>div span {
	font-size: .75rem;
	white-space: nowrap
}

.boxmsgflutuante.carregando>div {
	background-color: #CCC
}

.boxmsgflutuante.sucesso>div {
	background-color: #0A0
}

.boxmsgflutuante.erro>div {
	background-color: #C00
}

.boxmsgflutuante.carregando>div>div i,
.boxmsgflutuante.carregando>div>div span {
	color: #333
}

.boxmsgflutuante.sucesso>div>div i,
.boxmsgflutuante.sucesso>div>div span {
	color: #FFF
}

.boxmsgflutuante.erro>div>div i,
.boxmsgflutuante.erro>div>div span {
	color: #FFF
}

.boxmsgflutuante.forinput>div {
	top: -2px;
	bottom: inherit;
}









.progress_bar {
	display: block;
	position: relative;
	background-color: #CCC;
	-webkit-box-shadow: 0 1px 2px rgb(0 0 0 / 10%) inset;
	box-shadow: 0 1px 2px rgb(0 0 0 / 10%) inset;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding: 0;
	padding-top: 1px !important;
	padding-bottom: 1px !important
}

.progress_bar>.bar_label {
	display: block;
	position: relative;
	color: #fff;
	text-shadow: 0 -1px 0 rgb(0 0 0 / 25%);
	padding: .3em .5em;
	font-size: small;
	z-index: 100000
}

.progress_bar>.bar_bg {
	display: block;
	position: absolute;
	height: 100%;
	padding: 0;
	background-color: #faa732;
	width: 100%;
	top: 0;
	left: 0;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	transition: width 1s linear;
	-moz-transition: width 1s linear;
	-webkit-transition: width 1s linear;
	-o-transition: width 1s linear;
	-webkit-animation: progress-bar-stripes 2s linear infinite;
	-moz-animation: progress-bar-stripes 2s linear infinite;
	-ms-animation: progress-bar-stripes 2s linear infinite;
	-o-animation: progress-bar-stripes 2s linear infinite;
	animation: progress-bar-stripes 2s linear infinite;
	background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255, 255, 255, .15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255, 255, 255, .15)), color-stop(.75, rgba(255, 255, 255, .15)), color-stop(.75, transparent), to(transparent));
	background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
	background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
	background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
	background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
	-webkit-background-size: 40px 40px;
	-moz-background-size: 40px 40px;
	-o-background-size: 40px 40px;
	background-size: 40px 40px
}

.progress_bar>.bar_bg.concluido {
	background-image: none
}

.progress_bar.pequeno>.bar_label {
	padding: 0 .5em;
	font-size: x-small
}

.progress_bar.verde>.bar_label,
.progress_bar.vermelho>.bar_label,
.progress_bar.azul>.bar_label {
	color: #fff
}

.progress_bar.amarelo>.bar_label,
.progress_bar.laranja>.bar_label {
	color: #333
}

.progress_bar.verde>.bar_bg {
	background-color: #0C0
}

.progress_bar.vermelho>.bar_bg {
	background-color: #F20
}

.progress_bar.azul>.bar_bg {
	background-color: #06F
}

.progress_bar.amarelo>.bar_bg {
	background-color: #FD0
}

.progress_bar.laranja>.bar_bg {
	background-color: #F80
}

.progress_bar.cinza>.bar_bg {
	background-color: #555
}

#pgreload {
	position: fixed;
	top: 0;
	z-index: 9999999999999999;
	width: 100%
}

input[type=checkbox].switch {
	display: inline-flex;
	align-items: center;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border-radius: 12px;
	cursor: pointer;
	flex-shrink: 0;
	height: 24px !important;
	margin: 0;
	outline: none;
	position: relative;
	width: 40px !important
}

input[type=checkbox].switch:before {
	content: "";
	position: absolute;
	transition: .15s ease-in-out;
	border: 0;
	border-radius: 12px;
	height: 18px;
	width: 34px;
	background: rgba(0, 0, 0, .1);
	box-sizing: border-box
}

input[type=checkbox].switch:checked:before {
	background: #3483fa
}

input[type=checkbox].switch:disabled:before {
	background: #DDD
}

input[type=checkbox].switch:after {
	content: "";
	position: absolute;
	transition: .15s ease-in-out;
	height: 16px;
	width: 16px;
	top: 4px;
	background: #fff;
	border: 0;
	border-radius: 50%;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .55);
	left: 2px;
	opacity: 1;
	box-sizing: border-box
}

input[type=checkbox].switch:checked:after {
	left: 16px
}

.box-filtro {
	display: grid;
	padding: 5px 0 5px 0;
	position: relative
}

.box-filtro i {
	position: absolute;
	right: 12px;
	top: 12px
}





.forca-senha {
    display: grid;
    grid-gap: 3px
}

.forca-senha.horizontal {
    display: flex;
	flex-wrap: wrap;
	gap: 0px 20px;
}

.forca-senha>div {
    display: flex;
    justify-content: flex-start;
    gap: 5px;
    color: #AAA;
    font-size: small
}

.forca-senha>div>i {
    font-size: medium
}

.forca-senha>div.checked {
    color: #080;
    font-weight: bold
}






.box-toggle {
	padding: 0 0 24px 0 !important;
	max-width: 100%;
	position: relative;
}
.box-toggle > div:first-child {
	display: block;
    width: 100%;
	max-height: attr(data-height px, inherit);
    overflow: hidden;
	border-bottom: 1px solid #CCC;
}
.box-toggle > span {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background-color: #ccc;
	padding: 3px 10px;
	font-size: .7rem;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	cursor: pointer;
}
.box-toggle.no-line > div:first-child  {
	border-bottom: none;
}
.box-toggle.left > span  {
	left: 0;
	transform: none;
}