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: 3px;
    padding: 7px 10px;
    box-sizing: border-box
}

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;
    padding: 9px 10px;
    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 {
    font-size: small
}

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

.boxform label {
    font-size: .75rem;
    margin-bottom: 0;
    color: #666;
    width: fit-content
}

.boxform label>span {
    font-size: small;
    margin-left: 5px
}

.boxform .botoes {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 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 .botoes button.left {
    justify-content: flex-start;
}

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

.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.imagem {
    border: none;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center
}

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

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

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

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

.password-view i {
    position: absolute;
    top: 12px;
    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: 7px;
    display: none
}

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

.boxmsgflutuante>div>div i {
    font-size: large
}

.boxmsgflutuante>div>div span {
    font-size: small;
    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
}

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






.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.formulario tr > td:first-child {
	width:0;
}
.tabela-lista.formulario > tbody > tr > td {
	padding: 5px 5px;
}
.tabela-lista.formulario > tbody > tr > td:first-child {
	text-align: right;
	font-weight: bold;
	border-left: 7px solid #CCC;
	padding-left: 15px;
	white-space: nowrap;
}
.tabela-lista > tbody > tr:nth-child(odd) {
	background-color:#F1F1F1;
}
.tabela-lista.formulario > tbody > tr:nth-child(odd) {
	background-color:inherit;
}
.tabela-lista > thead > tr > td {
	padding: 5px 5px;
	font-size: x-small;
	background-color:#422462;
	color: #FFF;
	position: sticky;
	top: 0;
	z-index: 999
}
.tabela-lista.formulario > thead > tr > td {
	padding-left: 0px;
    padding-top: 30px;
	font-size: medium;
	font-weight: bold;
	background-color:#FFF;
	color: #422462;
	border-bottom: 1px solid #CCC;
}
.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;
}
.boxmsg {
	display: flex;
	gap: 5px;
	font-size: medium;
	color: #555;
}
.boxmsg > i {
	font-size: large;
	color: #555;
}
.boxmsg.grande {
	display: grid;
	justify-items: center;
	gap: 0px;
	font-size: large;
}
.boxmsg.grande > i {
	font-size: xxx-large;
}
.boxmsg.sucesso {
	color: #090;
}
.boxmsg.sucesso > i {
	color: #090;
}
.boxmsg.erro {
	color: #F00;
}
.boxmsg.erro > i {
	color: #F00;
}