/* #region CONSTANTES */

:root {

    /* Semânticas */
    --success: #059669;
    --success-bg: #d1fae5;
    --success-br: #6ee7b7;
    --warning: #d97706;
    --warning-bg: #fef3c7;
    --warning-br: #fcd34d;
    --danger: #dc2626;
    --danger-bg: #fee2e2;
    --danger-br: #fca5a5;
    --info: #0284c7;
    --info-bg: #e0f2fe;
    --info-br: #7dd3fc;
    --neutral: #475569;
    --neutral-bg: #f1f5f9;
    --neutral-br: #cbd5e1;

    /* Raios */
    --r-sm: 4px;
    --r-md: 6px;
    --r-lg: 8px;
    --r-xl: 12px;
    --r-2xl: 16px;

    /* Unidades controláveis via densidade */
    --input-h: 38px;
    --btn-h: 38px;
    --row-pad-y: 12px;
    --card-pad: 20px;
}

/* #endregion CONSTANTES */

/*===================
  RESET
=================== */

* {padding:0; margin:0;} 
*, *:before, *:after {box-sizing: inherit;}
html, body, div, h1, h2, h3, h4, h5, h6, p, ul, ol, li, span, label, form {padding:0;margin:0;}
html {box-sizing: border-box;width:100%;height:100%;}
body {width:100%;height:100%;}
a{text-decoration:underline;outline:none;color:#00F;}
a:hover{text-decoration:underline;}
img{border:0;}
.compensate-for-scrollbar{margin-right: 0 !important;}


/* #region CARDS */

/* cards */
div.card{
	background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-sm);
	padding: var(--card-pad);
}

div.card h2{
    font-size: 15px;
    font-weight: 600;
    margin: 0px 0px 10px;
}

div.card h3{
    font-size: 12px;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}

div.card h4{
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 4px;
}

div.card-num{
    width: 32px; 
    height: 32px; 
    border-radius: 8px; 
    background: var(--primary-soft); 
    color: var(--primary); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 13px; 
    font-weight: 600; 
    flex-shrink: 0;
}

div.card-meta{
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
div.card-meta h2{
    margin: 0;
}

table.card-table{
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
table.card-table tr{
    transition: background .08s;
}
table.card-table tr:hover{
    background: var(--surface-2);
}
table.card-table tr td{
    padding: 8px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    vertical-align: middle;
}
table.card-table tr th{
    padding: 8px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    vertical-align: middle;
    text-align: left;
    background-color: var(--surface-3);
}

table.card-table.vertical-hdr tr td:first-child{
    width: 1%;
    white-space:nowrap;
    color: var(--text-2);
}

div.card-text p{
    margin-bottom: 10px;
}
div.card-text ul,
div.card-text ol{
    margin-bottom: 10px;
    margin-left: 20px;
}
div.card-text ul li,
div.card-text ol li{
    margin-bottom: 5px;
}

div.card div.notes{
    display: flex;
    gap: 12px;
    padding: 16px;
    border-radius: 8px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    margin: 16px 0px;
}

div.card div.card-acts{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 4px
}
div.card div.card-acts a{
    text-decoration: none;
    color: var(--text);
    padding: 4px 8px;
}
div.card div.card-acts a span.icon{
    float: left;
    margin-right: 6px;
    margin-top: 4px;
}

div.card div.card-acts a:hover{
    border-radius: 10px;
    background: var(--surface-3);
    color: var(--text);
}

a.linkopt{
    color: var(--primary);
    font-size: 13px;
    font-weight: 500;
    padding: 0px;
    margin-bottom: 12px;
    text-decoration: none;
    margin-top: 10px;
}

a.linkopt span.icon{
    float: left;
    font-size: 16px;
    margin-right: 6px;
}

/* ficha1 */
div.card-ficha1{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap:10px;
    margin-bottom: 20px;
    background-color: var(--surface-3);
    border-radius: 10px;
    padding: 10px;
}
div.card-ficha1 div.card-ficha-thb{
    height: auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
    border-radius: 10px;
    flex: 0 0 48px;
}

div.card-ficha1 div.card-ficha-dat{
    flex: 1 1 0;
}

div.card-ficha1 div.card-ficha-dat h2{
    margin-bottom: 3px;
}

/* ficha2 */
div.card-ficha2{
    background-color: var(--surface-3);
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
}
div.card-ficha2 h2{
    margin-bottom: 3px;
}
div.card-ficha2 div.card-ficha-wrp{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap:10px;
    margin-top: 10px;
}

div.card-ficha2 div.card-ficha-wrp div.card-ficha-thb{
    height: auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
    border-radius: 10px;
    flex: 0 0 48px;
}

div.card-ficha2 div.card-ficha-wrp div.card-ficha-dat{
    flex: 1 1 0;
}

/*galeria*/
div.card-galeria{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
}
div.card-galeria a{
    text-decoration: none;
    border:1px solid transparent;
    border-radius: 8px;
    display: block;
    padding: 4px 8px;
}
div.card-galeria a:hover{
    border:1px solid var(--border);
}

/*card wranings */
div.card.danger{border: 1px solid var(--danger-br);background-color: var(--danger-bg);}
div.card.warning{border: 1px solid var(--warning-br);background-color: var(--warning-bg);}
div.card.success{border: 1px solid var(--success-br);background-color: var(--success-bg);}
div.card.info{border: 1px solid var(--info-br);background-color: var(--info-bg);}
div.card.neutral{border: 1px solid var(--neutral-br);background-color: var(--neutral-bg);}

/*responsive tables */
table.rc-cards tr {
    background: var(--surface) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--r-lg);
    box-shadow: var(--sh-sm);
    padding: var(--card-pad);
}

/* #endregion CARDS */
/* #region POPUP */

div#app_popup.fancybox-content {
    padding: 22px;
}

div.fancypop{
	width: 100%;
	max-width: 600px;
}

/* popup gemini*/
div#app_popup_overlay{
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(3px); /* Opcional: dá um leve efeito blur no fundo */
}

div#app_popup{
    background: #fff;
    border-radius: 12px; 
    box-shadow: 0px 10px 30px rgba(0,0,0,0.3);
    width: 100%;
    height: 100%;
    max-width: 800px;
    max-height: 500px;
    overflow: auto;
    position: relative;
    box-sizing: border-box;
    animation: popupFadeIn 0.3s ease-out;
}
div#app_popup_bar{
    height: 32px;
    background-color: #000000;
    width: 100%;
    position: absolute;
    top:0;
    opacity: 0.5;
}
a#app_popup_close{
    position: absolute;
    background: rgba(0,0,0,0.85);
    border: none; 
    width: 32px; 
    height: 32px;
    font-size: 22px; 
    cursor: pointer; 
    color: #fff;
    display: none; 
    align-items: center; 
    justify-content: center;
    z-index: 10000;
    transition: background 0.2s;
    text-decoration: none;
    top:0;
    right: 0;
}
/*
a#app_popup_close{
    position: absolute;
    top: 12px; 
    right: 12px;
    background: none; 
    border: none;
    font-size: 20px; 
    cursor: pointer; 
    color: #666;
    text-decoration: none;
}
*/
div#app_popup div.wrapper.popup{
    padding: var(--card-pad);
    display: inline-block;
}

/* Animação simples de surgimento */
@keyframes popupFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Classes de estilo para o controle do Zoom */
.img-zoom-fit {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    cursor: zoom-in; /* Cursor de lupa com sinal de + */
}
.img-zoom-full {
    max-width: none !important;
    max-height: none !important;
    width: auto !important;
    height: auto !important;
    cursor: zoom-out; /* Cursor de lupa com sinal de - */
}

div#app_popup div.pop_header{
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

div#app_popup div.pop_header h2{
    font-size: 16px;
    font-weight: 600;
    margin: 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/*popimagem*/
.popimagem{
    cursor:pointer !important;
}

.fancybox-popimagem .fancybox-content{
    background: #ffffff !important; /* Fundo branco */
    border-radius: 12px !important;  /* Cantos arredondados */
    padding: 15px !important;       /* Margem interna para o PNG respirar */
    box-shadow: 0 10px 30px rgba(0,0,0,0.3); /* Sombra suave para dar destaque */
}

.fancybox-popimagem:not(.fancybox-can-pan) .fancybox-content{
    margin: 20px !important;
    max-width: calc(100% - 40px) !important;
    max-height: calc(100% - 40px) !important;
}


.fancybox-popimagem .fancybox-content img{
    border-radius: 8px;
    padding: var(--card-pad);
}

/* #endregion POPUP */
/* #region ALERTAS */

.alert-body{
	background-color:#f1f1f1;
}
div.alert h1{
	padding:0;
	font-size:16px;
	text-align:left;
	font-weight:bold;
}
div.alert-interno{
	padding:10px 0 10px 0;
}
div.alert-interno p{
	color:#6b6b6b;
	line-height:18px;
	font-size:14px;
			
}
div.alert a.botao{
	margin-right:10px;
	margin-top:10px;
	text-align:center;
	color:#ffffff;
	float:right;
}
div.alert a.botao.bok{
	background-color:#3582bc;
}
div.alert a.botao.bno{
	background-color:#7a7979;
}

div.msgConfirm{
	display:none;
	position:absolute;
	right:330px;
	max-width:400px;
	background-color:#093;
	color:#FFF;
	font-size:12px;
	padding:10px;
	-webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
	-moz-box-shadow:    0px 4px 10px 0px rgba(0, 0, 0, 0.3);
	box-shadow:         0px 4px 10px 0px rgba(0, 0, 0, 0.3);
	-webkit-border-bottom-right-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-moz-border-radius-bottomright: 10px;
	-moz-border-radius-bottomleft: 10px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	z-index:2000;
}
div.msgConfirm span.icon{
	float:left;
	font-size:16px;
	margin-right:15px;
	color:#FFF;
}
div.msgConfirm.err{
	background-color:#C93C3E;
}

/* messages box*/
div.alertbox div.card{
    margin-bottom: 20px;
}
div.alertflx{
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

div.alertbox div.ico{
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--danger);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    flex-grow: 0;
}    

div.alertbox div.ico::before{
    font-family: 'icomoon' !important;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;	
}

div.card.danger div.ico::before{content: "\e900";}
div.card.warning div.ico::before{content: "\e902";}
div.card.success div.ico::before{content: "\e935";}


div.alerttxt{
    flex-grow: 1;
}
a.alertclose{
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    flex-grow: 0;
    color: var(--danger);
}
a.alertclose::before{
    font-family: 'icomoon' !important;
	font-style: normal;
	font-variant: normal;
	text-transform: none;
	-webkit-font-smoothing: antialiased;	
    content: "\e93f";
}
div.alerttxt h1{
    text-align: left !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    margin-bottom: 2px !important;
}
div.alerttxt h2{
    text-align: left !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--text) !important;
    margin-bottom: 0 !important;
}
div.alerttxt p{
    text-align: left !important;
    font-size: 13px !important;
    color: var(--text-2) !important;
    margin-top: 4px !important;
    line-height: 1.5 !important;
}
div.alertact{
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
div.card.danger h1{color: var(--danger);}



/* #endregion ALERTAS */
/* #region CONFIRMA */

/* Container do fundo escurecido (Overlay) */
.confirma-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.4); /* Fundo escurecido suave */
    backdrop-filter: blur(4px); /* Efeito de desfoque moderno */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
    box-sizing: border-box;
    animation: fadeIn 0.2s ease-out;
}

/* Caixa do Modal / Popup */
.confirma-modal {
    background: #ffffff;
    width: 100%;
    max-width: 460px; /* Largura ideal baseada na imagem */
    border-radius: 24px; /* Bordas arredondadas elegantes */
    padding: 32px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    box-sizing: border-box;
    transform: scale(0.95);
    animation: scaleUp 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Títulos e Textos */
.confirma-title {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.2;
}

.confirma-subtitle {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Área de Ícones Dinâmicos */
.confirma-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    font-size: 28px;
}

/* Container de Botões */
.confirma-buttons-container {
    display: flex;
    gap: 12px;
    justify-content: center;
    width: 100%;
    margin-top: 12px;
    flex-wrap: wrap-reverse; /* Em telas muito pequenas, joga o botão principal para cima */
}

/* Animações de Entrada */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes scaleUp {
    to { transform: scale(1); }
}

/* #endregion CONFIRMA */
/* #region TABELAS */

table.lista{
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;	
}

table.lista{
    cursor: pointer;
    transition: background .08s;
}
table.lista tr:hover {
    background: var(--surface-3);
}
table.lista th{
	text-align: left;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text);
    padding: 12px 16px;
    background: var(--surface-3);
	border-bottom: 2px solid var(--border-strong);
    white-space: nowrap;
    position: relative;
}
table.lista td{
	padding: var(--row-pad-y) 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    vertical-align: middle;
}

table.lista td div.thumb{
	width: 48px;
    height: 48px;
}

/*tabela responsiva */
table.lista.rc-cards td.rc-title-cell {
  font-size:18px; 
  font-weight:700; 
}
table.lista.rc-cards tbody td {
    padding: 4px 0px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

table.lista.rc-cards td div.thumb {
    width: 100%;
    height: 100%;
}

table.lista.rc-cards td.rc-card-last{ border-bottom:0; }

table.lista.rc-cards td.rc-action-cell .icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    padding: 0;
    border-radius: 10px;
    background: #fff;
    color: var(--text);
}

/* #endregion TABELAS */

/* ATALHOS */
input.date{width:160px;}
input.date2{width:160px;}
input.date3{width:180px;}
input.num{width:70px;}
input.numneg{width:70px;}
input.mny{width:70px;}
input.hora{width:70px;}
input.hora2{width:50px;}
input.cep{width:70px;}
input.dec{width:70px;}
input.dec1{width:70px;}
input.dec2{width:70px;}
input.dec3{width:70px;}
input.dec4{width:70px;}
input.tel{width:120px;}
input.cel{width:120px;}
input.telf{width:120px;}
input.cpf{width:120px;}
input.cnpj{width:120px;}
input.color{width:70px;}
input[type=datetime-local]{width:180px;padding:1px;}
input[type=date]{width:160px;}
input[type=time]{width:140px;}
input[type=number]{width:100px;}
input[type=color]{width:100px;padding: 0;background-color: transparent;border:none;}
input.disabled, select.disabled, textarea.disabled{background-color: #E5E5E5;color:#B9B9B9;}
input.readonly, select.readonly, textarea.readonly{background-color: #E5E5E5;color:#000000;}

.cen{text-align:center !important;}
.dir{text-align:right !important;}
.esq{text-align:left !important;}
.bld{font-weight:bold !important;}
.itl{font-style:italic !important;}
.tch{text-decoration:line-through !important;}
.tch2{text-decoration:line-through;text-decoration-style: double !important;}
.nolnk{text-decoration:none !important;}
.inv{display:none !important;}
.vis{display:block !important;}
.wrp{white-space:normal !important;}
.nwrp{white-space:nowrap !important;}
.aut{overflow:auto !important;}
.vis{display:block !important;}
.inl{display:inline !important;}
.fix{position:fixed !important;}
.mono{font-family: "Courier New" !important;}
.divedit{background-color: #fff; white-space:pre; overflow: auto;-moz-tab-size:4;tab-size:4;}
.pointer{cursor:pointer}
.alpha2{opacity: 0.2}
.alpha4{opacity: 0.4}
.alpha6{opacity: 0.6}
.alpha8{opacity: 0.8}
.transp{background-color: transparent !important;border:none !important;padding: 3px !important;font-size: 11px !important;font-weight: normal !important;overflow: hidden !important;}
.elp{max-width: 100px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.pointer{cursor:pointer;}

/*fontes*/
.fs10{font-size:10px !important;}
.fs12{font-size:12px !important;}
.fs14{font-size:14px !important;}
.fs16{font-size:16px !important;}
.fs18{font-size:18px !important;}
.fs20{font-size:20px !important;}
.fs22{font-size:22px !important;}
.fs24{font-size:24px !important;}
.fs26{font-size:26px !important;}
.fs28{font-size:28px !important;}
.fs30{font-size:30px !important;}

/*lineheight*/
.lh14{line-height:14px !important;}
.lh16{line-height:16px !important;}
.lh18{line-height:18px !important;}
.lh20{line-height:20px !important;}
.lh22{line-height:22px !important;}
.lh24{line-height:24px !important;}

/* quebra geral */
div.brk{clear:both;display:block;}
.sep10{clear:both;display:block;height:10px;}
.sep20{clear:both;display:block;height:20px;}
.sep30{clear:both;display:block;height:30px;}
.sep40{clear:both;display:block;height:40px;}
.sep50{clear:both;display:block;height:50px;}
.sep60{clear:both;display:block;height:60px;}
.sep80{clear:both;display:block;height:80px;}
.sep100{clear:both;display:block;height:100px;}
.div1{clear:both;display:block;border-top:1px solid #999;}
.div2{clear:both;display:block;border-top:1px dashed #999;}
.div3{clear:both;display:block;border-top:1px dotted #999;}

/*cores*/
.c-gr0{color:#fff !important;}
.c-gr1{color:#eee !important;}
.c-gr2{color:#ddd !important;}
.c-gr3{color:#bbb !important;}
.c-gr4{color:#999 !important;}
.c-gr5{color:#777 !important;}
.c-gr6{color:#555 !important;}
.c-gr7{color:#333 !important;}
.c-gr8{color:#222 !important;}
.c-gr9{color:#000 !important;}

.c-gry{color:#888 !important;}
.c-red{color:#f00 !important;}
.c-vrd{color:#0f0 !important;}
.c-gre2{color:#0b0 !important;}
.c-gre{color:#090 !important;}
.c-brw{color:#900 !important;}
.c-blu{color:#00f !important;}
.c-wht{color:#fff !important;}
.c-blk{color:#000 !important;}
.c-ylw{color:#ff0 !important;}
.c-ora{color:#f90 !important;}
.c-vio{color:#90f !important;}

.b-gr0{background-color:#fff !important;}
.b-gr1{background-color:#eee !important;}
.b-gr2{background-color:#ddd !important;}
.b-gr3{background-color:#bbb !important;}
.b-gr4{background-color:#999 !important;}
.b-gr5{background-color:#777 !important;}
.b-gr6{background-color:#555 !important;}
.b-gr7{background-color:#333 !important;}
.b-gr8{background-color:#222 !important;}
.b-gr9{background-color:#000 !important;}

.b-gry{background-color:#888 !important;}
.b-red{background-color:#f00 !important;}
.b-vrd{background-color:#0f0 !important;}
.b-gre2{background-color:#0b0 !important;}
.b-gre{background-color:#090 !important;}
.b-brw{background-color:#900 !important;}
.b-blu{background-color:#00f !important;}
.b-wht{background-color:#fff !important;}
.b-blk{background-color:#000 !important;}
.b-ylw{background-color:#ff0 !important;}
.b-ora{background-color:#f90 !important;}
.b-vio{background-color:#90f !important;}

/*pasteis*/
.c-grep{color:#CFEFD2 !important;}
.c-redp{color:#ECDBDC !important;}
.c-orap{color:#F3E5D5 !important;}
.c-blup{color:#D8DDEB !important;}
.c-ylwp{color:#FFFFDF !important;}
.b-grep{background-color:#CFEFD2 !important;}
.b-redp{background-color:#ECDBDC !important;}
.b-orap{background-color:#F3E5D5 !important;}
.b-blup{background-color:#D8DDEB !important;}
.b-ylwp{background-color:#FFFFDF !important;}

/*alinhamento*/
.fl{float:left !important;}
.fr{float:right !important;}
.vt{vertical-align:top !important;}

/*margens*/
.ml-20{margin-left:-20px !important;}
.ml-10{margin-left:-10px !important;}
.ml-5{margin-left:-5px !important;}
.ml-2{margin-left:-2px  !important;}
.ml-1{margin-left:-1px  !important;}
.ml0{margin-left:0 !important;}
.ml1{margin-left:1px !important;}
.ml2{margin-left:2px !important;}
.ml3{margin-left:3px !important;}
.ml4{margin-left:4px !important;}
.ml5{margin-left:5px !important;}
.ml10{margin-left:10px !important;}
.ml20{margin-left:20px !important;}
.ml25{margin-left:25px !important;}
.ml30{margin-left:30px !important;}
.ml40{margin-left:40px !important;}

.mr0{margin-right:0 !important;}
.mr1{margin-right:1px !important;}
.mr2{margin-right:2px !important;}
.mr3{margin-right:3px !important;}
.mr4{margin-right:4px !important;}
.mr5{margin-right:5px !important;}
.mr10{margin-right:10px !important;}
.mr20{margin-right:20px !important;}
.mr25{margin-right:25px !important;}
.mr30{margin-right:30px !important;}
.mr40{margin-right:40px !important;}

.mt-20{margin-top:-20px !important;}
.mt-10{margin-top:-10px !important;}
.mt-5{margin-top:-5px !important;}
.mt-2{margin-top:-2px  !important;}
.mt-1{margin-top:-1px  !important;}
.mt0{margin-top:0 !important;}
.mt1{margin-top:1px !important;}
.mt2{margin-top:2px !important;}
.mt3{margin-top:3px !important;}
.mt4{margin-top:4px !important;}
.mt5{margin-top:5px !important;}
.mt10{margin-top:10px !important;}
.mt20{margin-top:20px !important;}
.mt25{margin-top:25px !important;}
.mt30{margin-top:30px !important;}
.mt40{margin-top:40px !important;}

.mb0{margin-bottom:0 !important;}
.mb1{margin-bottom:1px !important;}
.mb2{margin-bottom:2px !important;}
.mb3{margin-bottom:3px !important;}
.mb4{margin-bottom:4px !important;}
.mb5{margin-bottom:5px !important;}
.mb10{margin-bottom:10px !important;}
.mb20{margin-bottom:20px !important;}
.mb25{margin-bottom:25px !important;}
.mb30{margin-bottom:30px !important;}
.mb40{margin-bottom:40px !important;}

.mx200{max-width:200px !important;}
.mx300{max-width:300px !important;}
.mx400{max-width:400px !important;}
.mx500{max-width:500px !important;}
.mx600{max-width:600px !important;}
.mx700{max-width:700px !important;}
.mx800{max-width:800px !important;}

.pd0{padding: 0 !important;}
.pd1{padding: 1px !important;}
.pd2{padding: 2px !important;}
.pd3{padding: 3px !important;}
.pd4{padding: 4px !important;}
.pd5{padding: 5px !important;}
.pd10{padding: 10px !important;}
.pd15{padding: 15px !important;}
.pd20{padding: 20px !important;}
.pd30{padding: 30px !important;}

/*larguras*/
.l20{width:20px !important;}
.l30{width:30px !important;}
.l40{width:40px !important;}
.l50{width:50px !important;}
.l60{width:60px !important;}
.l70{width:70px !important;}
.l80{width:80px !important;}
.l90{width:90px !important;}
.l100{width:100px !important;}
.l120{width:120px !important;}
.l140{width:140px !important;}
.l160{width:160px !important;}
.l180{width:180px !important;}
.l200{width:200px !important;}
.l230{width:230px !important;}
.l250{width:250px !important;}
.l300{width:300px !important;}
.l350{width:350px !important;}
.l400{width:400px !important;}
.l450{width:450px !important;}
.l500{width:500px !important;}
.l550{width:550px !important;}
.l600{width:600px !important;}

.lm40{min-width:40px !important;}
.lm60{min-width:60px !important;}
.lm80{min-width:80px !important;}
.lm100{min-width:100px !important;}
.lm120{min-width:120px !important;}
.lm140{min-width:140px !important;}
.lm160{min-width:160px !important;}
.lm180{min-width:180px !important;}
.lm200{min-width:200px !important;}
.lm300{min-width:300px !important;}
.lm400{min-width:400px !important;}
.lm500{min-width:500px !important;}
.lm600{min-width:600px !important;}

.p100{width:100% !important;}
.p90{width:90% !important;}
.p85{width:85% !important;}
.p80{width:80% !important;}
.p70{width:70% !important;}
.p66{width:66% !important;}
.p60{width:60% !important;}
.p50{width:50% !important;}
.p49{width:49% !important;}
.p48{width:48% !important;}
.p45{width:45% !important;}
.p40{width:40% !important;}
.p33{width:33% !important;}
.p25{width:25% !important;}
.p20{width:20% !important;}
.p15{width:15% !important;}
.p10{width:10% !important;}
.p5{width:5% !important;}
.p0{width:0% !important;}

/*alturas*/
.h20{height:20px !important;}
.h30{height:30px !important;}
.h40{height:40px !important;}
.h50{height:50px !important;}
.h60{height:60px !important;}
.h70{height:70px !important;}
.h80{height:80px !important;}
.h90{height:90px !important;}
.h100{height:100px !important;}
.h120{height:120px !important;}
.h140{height:140px !important;}
.h160{height:160px !important;}
.h180{height:180px !important;}
.h200{height:200px !important;}
.h250{height:250px !important;}
.h300{height:300px !important;}
.h350{height:350px !important;}
.h400{height:400px !important;}
.h450{height:450px !important;}
.h500{height:500px !important;}

.hm40{min-height:40px !important;}
.hm60{min-height:60px !important;}
.hm80{min-height:80px !important;}
.hm100{min-height:100px !important;}
.hm120{min-height:120px !important;}
.hm140{min-height:140px !important;}
.hm160{min-height:160px !important;}
.hm180{min-height:180px !important;}
.hm200{min-height:200px !important;}
.hm300{min-height:300px !important;}
.hm400{min-height:400px !important;}
.hm600{min-height:500px !important;}