@charset "UTF-8";

/* =========================================================
   1. CORES E VARIÁVEIS (CONSTRUCT+ DESIGN SYSTEM)
   ========================================================= */
:root {
    /* Paleta Oficial */
    --brand-primary: #072235 !important;
    /* Azul Escuro (Menu/Botões) */
    --brand-secondary: #1a5f7a !important;
    /* Azul Petróleo (Headers Tabela) */
    --brand-tertiary: #47bc95 !important;
    /* Verde (Ações/Sucesso) */
    --brand-outline: #cbccae !important;
    /* Bege (Bordas) */

    /* Superfícies */
    --bg-app: #f4f6f8 !important;
    /* Fundo Geral */
    --surface: #ffffff !important;
    /* Fundo Cards */

    /* Texto */
    --text-main: #072235 !important;
    --text-muted: #64748b !important;
    --text-on-dark: #ffffff !important;

    /* Configurações */
    --menu-closed-width: 60px !important;
    --menu-open-width: 260px !important;
    --header-height: 60px !important;
    --radius: 8px !important;
}

/* =========================================================
   2. RESET E GLOBAL
   ========================================================= */
* {
    outline: none;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

/* FIX: melhora empilhamento (z-index) em casos estranhos */
html,
body {
    isolation: isolate;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Google Sans', 'Roboto', 'Poppins', sans-serif !important;
    font-size: 14px !important;
    color: var(--text-main) !important;
    background-color: var(--bg-app) !important;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none !important;
    transition: 0.2s !important;
    color: var(--brand-secondary) !important;
}

a:hover {
    color: var(--brand-tertiary) !important;
}

/* =========================================================
   3. TELA DE LOGIN (RECUPERADA E MODERNIZADA)
   ========================================================= */
body.login2 {
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-primary) url(../_custom/img/fundo_login.jpg) no-repeat center center / cover fixed !important;
    position: relative;
    padding: 0 !important;
    margin: 0 !important;
    /* Reset layout externo */
}

/* Overlay do Login */
body.login2::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(to bottom, rgba(7, 34, 53, 0.8), rgba(7, 34, 53, 0.95));
    pointer-events: none;
}

/* Vídeo Background */
.div-video_bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -1;
}

.div-video_bg>.video-video_bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.div-video_bg>.overlay-video_bg {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(7, 34, 53, 0.7);
}

@media (max-width: 768px) {
    .div-video_bg {
        display: none;
    }
}

/* Card de Login */
.div-login {
    width: min(440px, calc(100vw - 32px));
    padding: 40px;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
    position: relative;
    z-index: 3;
    text-align: center;
    backdrop-filter: blur(10px);
}

.login-wrapper h1 {
    color: var(--brand-primary) !important;
    font-weight: 700 !important;
    margin-bottom: 30px !important;
    font-size: 24px !important;
}

/* Inputs do Login */
body.login2 .form-control {
    height: 48px !important;
    background: #fff !important;
    border: 1px solid #ced4da !important;
    margin-bottom: 15px !important;
}

body.login2 input[type="submit"],
.btn-login {
    height: 48px !important;
    background-color: var(--brand-tertiary) !important;
    /* Verde */
    color: white !important;
    width: 100%;
    border: none;
    font-weight: bold;
    border-radius: var(--radius) !important;
    margin-top: 10px;
}

body.login2 input[type="submit"]:hover {
    background-color: #3da885 !important;
}

/* Rodapé Login */
.login_rodape {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.navegadores img {
    height: 20px;
    opacity: 0.5;
    margin: 0 5px;
}

/* =========================================================
   4. LAYOUT GERAL (DASHBOARD)
   ========================================================= */
body.externo {
    padding-top: var(--header-height) !important;
    margin-left: var(--menu-closed-width) !important;
    width: calc(100% - var(--menu-closed-width)) !important;
    transition: all 0.3s ease !important;
}

/* =========================================================
   5. MENU LATERAL
   ========================================================= */
.menu_lateral {
    position: fixed !important;
    top: 0;
    left: 0;
    height: 100vh !important;
    width: var(--menu-closed-width) !important;
    background-color: var(--brand-primary) !important;
    z-index: 1050 !important;
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.1) !important;
    transition: width 0.3s ease !important;
    padding-top: var(--header-height) !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

.menu_lateral:hover,
.menu_lateral.menu_lateral_aberto {
    width: var(--menu-open-width) !important;
}

/* Links */
.link_menu_lateral {
    height: 48px !important;
    display: flex !important;
    align-items: center !important;
    color: rgba(255, 255, 255, 0.7) !important;
    white-space: nowrap !important;
}

.link_menu_lateral:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: var(--brand-tertiary) !important;
    border-left: 3px solid var(--brand-tertiary) !important;
}

.menu_lateral_icone {
    min-width: 60px !important;
    text-align: center !important;
    font-size: 20px !important;
}

.menu_lateral_titulo {
    padding-left: 10px !important;
    opacity: 1 !important;
}

/* Submenus (Inicia Fechado) */
.menu_lateral_grupo,
.menu_lateral_sub_grupo {
    display: none;
    /* JS controla isso */
    background-color: #051b2b !important;
    padding-left: 0 !important;
}

.menu_lateral_grupo .link_menu_lateral {
    padding-left: 15px !important;
    height: 40px !important;
    font-size: 13px !important;
}

/* Rodapé Menu */
.menu_lateral_rodape {
    background: rgba(0, 0, 0, 0.2) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    height: 60px;
}

.menu_lateral_rodape img {
    max-height: 100%;
    opacity: 0;
    transition: 0.3s;
}

.menu_lateral_aberto>.menu_lateral_rodape img {
    opacity: 1;
}

/* =========================================================
   5.X - RODAPÉ DO MENU (CLASSES LEGADAS QUE O HTML USA)
   ========================================================= */

/* Se seu HTML tiver esses ícones de apoio, essa regra é necessária */
.menu_lateral_icones_apoio {
    visibility: hidden;
}

/* Mantém o rodapé com altura consistente e SEM estourar */
.menu_lateral_rodape {
    height: 76px !important;
    /* como era no antigo */
    overflow: hidden !important;
    background: rgba(0, 0, 0, 0.2) !important;
    /* mantém seu estilo atual */
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Logo do rodapé */
.menu_lateral_rodape img {
    max-height: 100% !important;
    transition: all 0.4s !important;
    -webkit-transition: all 0.4s !important;
    -moz-transition: all 0.4s !important;
    opacity: 0;
    display: block !important;
    margin: 0 auto !important;
}

.menu_lateral_aberto>.menu_lateral_rodape img {
    opacity: 1;
}

/* Linha interna do rodapé (onde ficam os ícones e textos) */
.menu_lateral_rodape_linha {
    position: relative !important;
    width: 230px !important;
    /* layout antigo depende disso */
    height: 38px !important;
    overflow: hidden !important;
    margin: 0 auto !important;
}

/* Ícone esquerdo */
.menu_lateral_icone_rodape {
    position: absolute !important;
    color: #d9d9d9 !important;
    top: 0 !important;
    left: 0 !important;
    width: 50px !important;
    height: 38px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
}

/* Ícone direito */
.menu_lateral_icone_rodape_r {
    position: absolute !important;
    color: #d9d9d9 !important;
    top: 0 !important;
    right: 0 !important;
    width: 50px !important;
    height: 38px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
}

/* Ícone central (quando existir) */
.menu_lateral_icone_rodape_a {
    width: 50px !important;
    height: 38px !important;
    color: #d9d9d9 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
}

/* Texto central */
.menu_lateral_rodape_texto {
    position: absolute !important;
    color: #d9d9d9 !important;
    top: 0 !important;
    left: 50px !important;
    width: 130px !important;
    height: 38px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
}

/* Avatar/Imagem do usuário */
.div_imagem_usuario {
    max-width: 50px !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 2px !important;
}

/* Estados links */
.menu_lateral_icone_rodape:visited,
.menu_lateral_icone_rodape:active,
.menu_lateral_icone_rodape:focus {
    text-decoration: none !important;
    color: inherit !important;
    background: transparent !important;
}

.menu_lateral_icone_rodape:hover {
    text-decoration: none !important;
    background: rgba(255, 255, 255, 0.12) !important;
    /* mais suave que #ccc */
    color: #fff !important;
}

.menu_lateral_icone_rodape_r:visited,
.menu_lateral_icone_rodape_r:active,
.menu_lateral_icone_rodape_r:focus {
    color: inherit !important;
    background: transparent !important;
}

.menu_lateral_icone_rodape_a:visited,
.menu_lateral_icone_rodape_a:active,
.menu_lateral_icone_rodape_a:focus {
    color: inherit !important;
    background: transparent !important;
}

.menu_lateral_icone_rodape_r:hover {
    text-decoration: none !important;
    background: rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
}

/* No seu design novo o aberto é 260px, então não volte pra 230 */
.menu_lateral.menu_lateral_aberto {
    width: var(--menu-open-width) !important;
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.1) !important;
    /* mantém seu shadow */
}

/* Você tinha input-xs 20px no antigo — no novo você já usa 24px.
   Se o sistema depende do 20px, pode descomentar:
*/
/*
.input-xs {
    height: 20px !important;
}
*/

[data-oculta_perfil='SIM'] {
    display: none;
}

.div_croppie_wrap {
    width: 100%;
    height: calc(100vh - 115px) !important;
    padding-bottom: 45px;
}

/* =========================================================
   6. NAVBAR SUPERIOR
   ========================================================= */
.navbar-header {
    position: fixed !important;
    /* Fixa na tela, igual ao menu */
    top: 0 !important;
    left: 0 !important;
    width: var(--menu-closed-width) !important;
    /* 60px */
    height: var(--header-height) !important;
    /* 60px */

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: var(--brand-primary) !important;

    /* FIX: z-index acima do menu lateral */
    z-index: 2001 !important;
}

.navbar-brand {
    float: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;

    /* Garante que o link/imagem também esteja no topo */
    position: relative !important;
    z-index: 2002 !important;
}

.navbar-brand img {
    max-height: 35px !important;
    /* Ajuste para não estourar */
    max-width: 50px !important;
    width: auto !important;
    display: block !important;
}

#container_dashboard_desk {
    display: inline-block;
    height: 100%;
    width: calc(100% - 290px);
    position: absolute;
    left: 145px;
}

#menu_superior {
    height: var(--header-height) !important;
    max-height: 60px !important;
    overflow: hidden !important;
}

/* Atenção: isso aqui DETONAVA o alinhamento. Mantive o bloco, mas corrigi o valor no patch final */
#menu_superior * {
    line-height: 12px !important;
    /* só se necessário */
}

.menu_superior_usuario {
    position: absolute;
    top: 0;
    right: 5px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 12px;
    font-weight: bold;
    width: 145px;
    text-align: right;
}

.logo_menu_imagem {
    margin-right: 5px;
    max-height: 55px;
    margin-left: 5px;
}

/* =========================================================
   7. CARDS E CONTEÚDO
   ========================================================= */
.div_grupo_simplificado,
.div_itens_simplificado,
.box_dash,
.box_mensagem,
.panel {
    background: var(--surface) !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: var(--radius) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    margin-bottom: 24px !important;
    margin-top: 20px !important;
    position: relative !important;
}

.cabecalho_grupo_simplificado,
.cabecalho_itens_simplificado,
.box_dash_titulo {
    background: transparent !important;
    border-bottom: 1px solid #f1f5f9 !important;
    color: var(--brand-primary) !important;
    font-weight: 600 !important;
    padding: 15px 20px !important;
    font-size: 16px !important;
    height: auto !important;
}

.div_grupo_simplificado {
    padding: 60px 20px 20px 20px !important;
}

.box_dash_conteudo {
    padding: 20px !important;
}

/* =========================================================
   8. TABELAS (DATA TABLES)
   ========================================================= */
table.dataTable {
    width: 100% !important;
    border-collapse: collapse !important;
    border-spacing: 0 !important;
}

.dataTable thead th {
    background-color: var(--brand-secondary) !important;
    /* Azul Petróleo */
    color: #fff !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    font-size: 11px !important;
    padding: 8px 10px !important;
    border: none !important;
    letter-spacing: .02em !important;
}

.dataTable tbody td {
    background-color: #fff !important;
    border-bottom: 1px solid #f1f5f9 !important;
    color: var(--text-main) !important;
    padding: 08px 10px !important;
    /* compacta linha */
    vertical-align: middle !important;
    font-size: 10px !important;
}

.table-striped>tbody>tr:nth-of-type(odd) {
    background-color: transparent !important;
}

.dataTable tbody tr:hover td {
    background-color: #f8fafc !important;
}

.icone_acao_linha {
    color: var(--text-muted) !important;
    font-size: 16px !important;
    margin: 0 5px !important;
}

.icone_acao_linha:hover {
    color: var(--brand-tertiary) !important;
    transform: scale(1.1) !important;
}

/* Sticky do THEAD só funciona se os wrappers não "cortarem" overflow */
#dataTable1_wrapper,
#dataTable1_wrapper .row,
#dataTable1_wrapper .col-sm-12 {
    overflow: visible !important;
}


/* =========================================================
   DataTables — desativa o clone do FixedHeader e usa sticky no THEAD
   ========================================================= */

.fixedHeader-floating,
.fixedHeader-locked {
    display: none !important;
    /* some com o clone que desalinha */
}

table.tabela_principal.dataTable thead th {
    position: sticky !important;
    top: var(--header-height) !important;
    z-index: 50 !important;
    /* sobe um pouco pra não ficar atrás de nada */
    background-color: var(--brand-secondary) !important;
}

/* FIX: Bootstrap .table-responsive costuma quebrar position: sticky do THEAD */
.table-responsive {
    overflow-y: visible !important;
}

/* se precisar manter scroll horizontal, deixa só o X */
.table-responsive {
    overflow-x: auto !important;
}





/* =========================================================
   9. FORMULÁRIOS E INPUTS
   ========================================================= */
.form-control,
.select2-selection {
    background-color: #fff !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: var(--radius) !important;
    height: 40px !important;
    color: var(--text-main) !important;
    box-shadow: none !important;
}

.form-control:focus,
.select2-container--open .select2-selection {
    border-color: var(--brand-primary) !important;
    box-shadow: 0 0 0 3px rgba(7, 34, 53, 0.1) !important;
}

label {
    color: var(--brand-primary) !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    margin-bottom: 5px !important;
}

/* Correção Select2 */
.select2-container .select2-selection--single {
    height: 40px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 38px !important;
}

/* =========================================================
   10. BOTÕES
   ========================================================= */
.btn {
    border-radius: var(--radius) !important;
    font-weight: 500 !important;
    padding: 8px 16px !important;
    border: none !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.btn-primary {
    background-color: var(--brand-primary) !important;
    color: #fff !important;
}

.btn-primary:hover {
    background-color: #0b2e46 !important;
}

.btn-success {
    background-color: var(--brand-tertiary) !important;
    color: #fff !important;
}

.btn-success:hover {
    background-color: #3da885 !important;
}

.btn-default {
    background-color: #fff !important;
    border: 1px solid var(--brand-outline) !important;
    color: var(--brand-primary) !important;
}

/* =========================================================
   11. COMPONENTES LEGADOS (TREEVIEW, UPLOAD, MODAL)
   ========================================================= */

/* Treeview Clean */
.tree {
    background: #fff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: var(--radius) !important;
    padding: 20px !important;
}

.tree h1 {
    background: var(--brand-primary) !important;
    color: #fff !important;
    border-radius: var(--radius) !important;
    font-size: 16px !important;
    padding: 10px !important;
}

.tree li span {
    border: 1px solid #e2e8f0 !important;
    border-radius: 4px !important;
    background: #f8fafc !important;
    color: var(--text-main) !important;
    padding: 5px 10px !important;
}

.tree li.parent_li>span:hover {
    background: var(--brand-primary) !important;
    color: #fff !important;
}

/* Upload Inputs */
.fileUpload input.upload,
.fileUpload2 input.uploadt2 {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
    width: 100%;
    height: 100%;
}

.form_cadastro .form-group[data-tipo-campo="arquivo"] {
    background: #f1f5f9 !important;
    border: 1px dashed #cbd5e1 !important;
    padding: 15px !important;
}

/* Modais */
.modal-content {
    border-radius: 12px !important;
    border: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.modal-header {
    background: var(--brand-primary) !important;
    color: #fff !important;
    border-radius: 12px 12px 0 0 !important;
}

.modal-footer {
    background: #f8fafc !important;
    border-radius: 0 0 12px 12px !important;
}

.modal_dina_close {
    color: #333 !important;
}

/* Utilities */
.input-xs {
    height: 24px !important;
}

#loaderCEP {
    display: none;
}

.iziToast-message {
    margin-top: 5px !important;
}

/* =========================================================
   12. RESPONSIVIDADE MOBILE
   ========================================================= */
@media (max-width: 768px) {
    body.externo {
        margin-left: 0 !important;
        width: 100% !important;
    }

    .menu_lateral {
        width: 0 !important;
    }

    .menu_lateral.menu_lateral_aberto {
        width: 100% !important;
    }

    .navbar-default {
        padding-left: 0 !important;
    }

    .div-login {
        width: 95% !important;
        padding: 20px !important;
    }

    .modal-full-m .modal-dialog {
        margin: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }
}


/* =========================================================
   13. LOGIN
   ========================================================= */

.field {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--input-bg, #fff);
    border: 1px solid var(--input-border, rgba(17, 24, 39, .18));
    border-radius: 10px;
    padding: 10px 14px;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.field:focus-within {
    border-color: rgba(16, 114, 175, .55);
    box-shadow: 0 0 0 4px rgba(16, 114, 175, .18);
}

.field-icon {
    font-size: 22px;
    color: var(--brand, #1072af);
    opacity: .9;
}

.field input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 15px;
}

/* =========================
   MODAL RECUPERAR SENHA (minimal + padrão do login)
   ========================= */

#modal-recupera_senha .modal-dialog {
    width: 420px;
    max-width: calc(100vw - 32px);
    margin: 10vh auto;
}

#modal-recupera_senha .modal-content {
    border-radius: 14px;
    border: 1px solid var(--border, rgba(0, 0, 0, .08));
    box-shadow: 0 18px 60px rgba(0, 0, 0, .35);
    overflow: hidden;
}

/* Header baixo */
#modal-recupera_senha .modal-header {
    padding: 10px 14px;
    background: #0b2233;
    border-bottom: none;
}

#modal-recupera_senha .modal-title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Se ainda existir ícone FA no título, some */
#modal-recupera_senha .modal-title i {
    display: none;
}

/* Botão fechar */
#modal-recupera_senha .modal-header .close {
    color: #fff;
    opacity: .6;
    text-shadow: none;
}

#modal-recupera_senha .modal-header .close:hover {
    opacity: 1;
}

/* Corpo */
#modal-recupera_senha .modal-body {
    padding: 14px 16px 10px;
}

/* Label discreta */
#modal-recupera_senha label {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 4px;
}

/* Campo estilo login (compacto) */
#modal-recupera_senha .field {
    display: flex;
    align-items: center;
    gap: 8px;

    background: #fff;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 8px;

    padding: 6px 10px;
    transition: border-color .15s ease, box-shadow .15s ease;
}

#modal-recupera_senha .field:focus-within {
    border-color: rgba(16, 114, 175, .55);
    box-shadow: 0 0 0 3px rgba(16, 114, 175, .15);
}

#modal-recupera_senha .field-icon {
    font-size: 18px;
    color: var(--brand, #1072af);
    opacity: .7;
}

#modal-recupera_senha .field input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: #111827;
}

/* Footer enxuto */
#modal-recupera_senha .modal-footer {
    padding: 10px 14px;
    border-top: 1px solid rgba(0, 0, 0, .08);
    display: flex;
    justify-content: flex-end;
    gap: 6px;
}

/* Botões */
#modal-recupera_senha .btn {
    padding: 7px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 999px;
}

/* Cancelar discreto */
#modal-recupera_senha .btn-warning {
    background: transparent;
    border: 1px solid #fbbf24;
    color: #b45309;
}

/* Recuperar discreto */
#modal-recupera_senha .btn-primary {
    background: #0b2233;
    border-color: #0b2233;
    color: #fff;
}


/* =========================================================
   MODAIS / ALERTAS DE MENSAGEM (iziModal / modal custom)
   - mantém header baixo e remove ícones gigantes
   ========================================================= */

.iziModal .iziModal-icon,
.modal.mensagem-sistema i.fa-exclamation-triangle {
    display: none !important;
}

.iziModal .iziModal-header,
.modal.mensagem-sistema .modal-header {
    padding: 10px 14px;
    background: #0b2233;
    border-bottom: 0;
}

.iziModal .iziModal-title,
.modal.mensagem-sistema .modal-title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.iziModal .iziModal-content,
.modal.mensagem-sistema .modal-body {
    padding: 14px 16px;
    font-size: 14px;
    color: #1f2933;
}

/* Botão OK pequeno */
.iziModal button,
.modal.mensagem-sistema .btn {
    min-width: 90px;
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 999px;
}


/* =========================================================
   BOOTBOX — MINI POPUP (sem header)
   Fundo azul escuro + mensagem central + OK pequeno
   ========================================================= */

.modal.bootbox .modal-dialog {
    width: 300px;
    max-width: calc(100vw - 32px);
    margin: 22vh auto;
}

.modal.bootbox .modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .45);
}

/* some o header inteiro (título + ícone + close) */
.modal.bootbox .modal-header {
    display: none !important;
}

/* corpo vira card azul */
.modal.bootbox .modal-body {
    padding: 14px 14px 10px;
    background: #0b2233;
    color: #fff;
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
}

/* garante que ícone grande não apareça */
.modal.bootbox .bootbox-icon,
.modal.bootbox .modal-body i,
.modal.bootbox .modal-body img {
    display: none !important;
}

/* footer compacto e centralizado */
.modal.bootbox .modal-footer {
    border: none;
    background: #0b2233;
    padding: 0 14px 12px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

/* botão OK pequeno */
.modal.bootbox .btn {
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    min-width: 72px;
}

/* qualquer “OK” (primary/success/info) vira o mesmo estilo */
.modal.bootbox .btn-primary,
.modal.bootbox .btn-success,
.modal.bootbox .btn-info {
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .22);
    color: #fff;
}

.modal.bootbox .btn-primary:hover,
.modal.bootbox .btn-success:hover,
.modal.bootbox .btn-info:hover {
    background: rgba(255, 255, 255, .20);
}

/* caso tenha confirm com cancelar */
.modal.bootbox .btn-default,
.modal.bootbox .btn-secondary,
.modal.bootbox .btn-warning,
.modal.bootbox .btn-danger {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .22);
    color: #fff;
    opacity: .9;
}


/*----------------------------------------------------------------------------------- */
/*  GED file upload */
/*----------------------------------------------------------------------------------- */
.fileUpload input.upload {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
}

.fileUpload2 input.uploadt2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
}

/*----------------------------------------------------------------------------------- */
/*  DataTables */
/*----------------------------------------------------------------------------------- */
/* .dataTable th {
    padding-right: 20px;
    position: relative;
    font-weight: bold;
    background-color: #A3DBDE;

}

.dataTable th.sorting {
    /* color: #007aff; 
cursor: pointer;
position: relative;
}

*/

/*  .dataTable th.sorting:after, .dataTable th.sorting:before {
      content: "";
      width: 0;
      height: 0;
      position: absolute;
      right: 12px;
      border-right: 5px solid transparent;
      border-left: 5px solid transparent; }
    .dataTable th.sorting:after {
      top: 22px;
      border-top: 5px solid gray; }
    .dataTable th.sorting:before {
      top: 14px;
      border-bottom: 5px solid gray; }
  .dataTable th.sorting_asc {
     color: #007aff;
	font-weight: bold;
    cursor: pointer;
    position: relative; }
    .dataTable th.sorting_asc:after {
      content: "";
      width: 0;
      height: 0;
      position: absolute;
      right: 12px;
      top: 18px;
      border-bottom: 5px solid black !important;
      border-right: 5px solid transparent;
      border-left: 5px solid transparent; }
  .dataTable th.sorting_desc {
     color: #007aff;
	font-weight: bold;
    cursor: pointer;
    position: relative; }
    .dataTable th.sorting_desc:after {
      content: "";
      width: 0;
      height: 0;
      position: absolute;
      right: 12px;
      top: 18px;
      border-top: 5px solid black !important;
      border-right: 5px solid transparent;
      border-left: 5px solid transparent; }
*/
th:active {
    outline: none;
}

#add-row {
    margin-right: 0;
}

.table>caption+thead>tr:first-child>th,
.table>colgroup+thead>tr:first-child>th,
.table>thead:first-child>tr:first-child>th,
.table>caption+thead>tr:first-child>td,
.table>colgroup+thead>tr:first-child>td,
.table>thead:first-child>tr:first-child>td {
    font-size: 12px;
}

body.login2 .form-group {
    margin-bottom: 5px;
}

.logo_e_titulo_login {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}



@media screen and (max-width: 414px) {
    body.login2 {
        padding: 5px;
    }

    body.login2 .login-wrapper {
        padding: 0px 10px 10px 10px;
    }

    body.login2 .login-wrapper h1 {
        margin-top: 5px;
        margin-bottom: 15px;
    }

    body.login2 .login-wrapper h1 a:link {
        display: block;
        text-align: center;
    }

    body.login2 img {
        max-width: 50%;
        width: 50%;
        display: inline;
        border: 0px;
    }

    .modal-footer .btn+.btn {
        margin-bottom: 5px !important;
    }

    .modal-footer {
        text-align: center !important;
    }



    #dataTable1 * {
        font-size: 10px !important;
    }

    #dataTable1 td {
        min-width: 100px;
        white-space: nowrap;
    }

    #dataTable1 td.actions span {
        font-size: 12px !important;
        margin-left: 3px !important;
    }

    table.dataTable.dtr-inline.collapsed>tbody>tr>td:first-child:before,
    table.dataTable.dtr-inline.collapsed>tbody>tr>th:first-child:before {
        top: 6px !important;
    }


    table[id^='tabela_'] * {
        font-size: 10px !important;
    }

    table[id^='tabela_'] td {
        min-width: 100px;
        white-space: nowrap;
    }

    .radio input[type="radio"],
    .radio-inline input[type="radio"],
    .checkbox input[type="checkbox"],
    .checkbox-inline input[type="checkbox"] {
        margin-left: 0px;
        position: relative;
    }

    .paging_full_numbers {
        float: left !important;
        max-width: 320px;
    }
}

/*
=====================================================================
						TREEVIEW
=====================================================================
*/

.tree {
    width: 100%;
    background: #ECECEC;
    border: 1px solid #CCC;
    color: #467CA1;
    padding: 10px;
    font-size: 13px;
    margin-bottom: 10px;
}

.tree h1 {
    margin: 0px;
    width: 100%;
    padding: 10px;
    background: #467CA1;
    color: #FFF;
    letter-spacing: 0px;
    font-size: 18px;
    margin-bottom: 10px;
}

.tree li {
    list-style-type: none;
    margin: 0px;
    padding: 3px 5px 0 5px;
    position: relative
}

.tree li::before,
.tree li::after {
    content: '';
    left: -40px;
    position: absolute;
    right: auto
}

.tree li::before {
    border-left: 1px solid #999;
    bottom: 50px;
    height: 100%;
    top: 0;
    width: 1px
}

.tree li::after {
    border-top: 1px solid #999;
    height: 20px;
    top: 25px;
    width: 25px
}

.tree li span {
    /*-moz-border-radius:5px;
    -webkit-border-radius:5px;
    border:1px solid #999;
    border-radius:5px;*/
    background: #467CA1;
    color: #FFF;
    display: inline-block;
    padding: 3px 8px;
    text-decoration: none;
    min-width: 160px;
}

.tree li.parent_li>span {
    cursor: pointer
}

.tree>ul>li::before,
.tree>ul>li::after {
    border: 0
}

.tree li:last-child::before {
    height: 30px
}

.tree li.parent_li>span:hover,
.tree li.parent_li>span:hover+ul li span {
    background: #FFF;
    color: #467CA1
}

.tree ul.primeiro {
    margin: 0px;
    padding: 0px;
}

/*
===================================
		SUBMENU MULTINÍVEL
===================================
*/

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;

}

/*
===================================
		CASE DOS INPUTS
===================================
*/
input.Maiusculas {
    text-transform: uppercase;
}

input.Minusculas {
    text-transform: lowercase;
}

/*
===================================
			  CEP
===================================
*/

/*#loaderCEP {display:block; width:28px; height: 28px; background:url('../img/cep.gif') no-repeat;}
*/
#loaderCEP {
    display: none;
}

.datepicker-dropdown {
    z-index: 888888 !important;
}

td.child {
    padding: 5px !important;
}

table.dataTable>tbody>tr.child span.dtr-title {
    min-width: 150px !important;
}


.modal-body {
    /*max-height: 80vh;*/
    overflow-y: auto;
}

.modal-content {
    max-height: calc(100vh - 30px);
}

@media (max-width: 480px) {

    .modal-full {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        overflow: hidden;
    }

    .modal-full .modal-dialog {
        position: fixed;
        margin: 0;
        width: 100%;
        height: 100%;
        padding: 0;
    }

}

@media (min-width: 481px) {
    .modal-full {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 480px;
        left: calc((100vw - 480px)/2);
        overflow: hidden;

    }

    .modal-full .modal-dialog {
        position: fixed;
        margin: 0;
        width: 480px;
        height: 100%;
        padding: 0;
    }


}

.modal-full .modal-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 0 solid #09558b;
    border-radius: 0;
    box-shadow: none;
}

.modal-full .modal-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 45px;
    padding: 5px;
    background: #09558b;
    border: 0;
}

.modal-full .modal-body {
    position: absolute;
    top: 45px;
    bottom: 45px;
    width: 100%;
    padding: 5px;
    overflow: auto;
}

.modal-full .modal-footer {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 45px;
    padding: 5px;
    background: #f1f3f5;
}

.modal-full .modal-body-no-footer {
    position: absolute;
    top: 45px;
    bottom: 0;
    width: 100%;
    padding: 5px;
    overflow: auto;
}


.modal-full-m .modal-body {
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.modal-full-m .modal-body-fixed {
    height: calc(100vh - 120px);
    overflow-y: auto;
}

@media (max-width: 768px) {

    body.externo {
        margin-left: 0;
    }


    .menu_lateral {
        width: 0;
        z-index: 999;
        position: fixed;
    }

    .table-responsive {
        border: none;
        overflow-y: visible !important;
    }

    .modal-full-m {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        overflow: hidden;
    }

    .modal-full-m .modal-dialog {
        position: fixed;
        margin: 0;
        width: 100%;
        height: 100%;
        padding: 0;
    }

    .modal-full-m .modal-content {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .modal-full-m .modal-header {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 45px;
        padding: 5px;
        border: 0;
    }

    .modal-full-m .modal-body {
        position: absolute;
        top: 45px;
        bottom: 45px;
        width: 100%;
        padding: 15px;
        overflow: auto;
        max-height: none;
    }

    .modal-full-m .modal-footer {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        height: 45px;
        padding: 5px;
        background: #f1f3f5;
    }

    .modal-full-m .modal-body-no-footer {
        position: absolute;
        top: 45px;
        bottom: 0;
        width: 100%;
        padding: 5px;
        overflow: auto;
    }

}

.modal_dina_close {
    z-index: 1000;
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 20px;
    font-weight: bold;
    color: black;
    opacity: 1;
    cursor: pointer;
    border: 1px solid #ccc;
    line-height: 16px;
    border-radius: 3px;
    background: white;
    width: 18px;
    height: 18px;
    text-align: center;
    padding: 0;
}

.modal_dina_close:hover {
    color: #ccc;
}


.form_cadastro .form-group {
    margin-bottom: 5px;
}

.form_cadastro .form-group {
    margin-bottom: 3px;
}

.form_cadastro .form-control {
    border-top: none;
    border-left: none;
    border-right: none;
    border-color: #ccc;
}

.form_cadastro .input-group-addon:first-child {
    border-top: none;
    border-left: none;
    border-right: none;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.form_cadastro .select2-container--bootstrap .select2-selection--single {
    border-top: none;
    border-left: none;
    border-right: none;
    border-color: #ccc;
}

.form_cadastro .select2-container--bootstrap.select2-container--focus .select2-selection,
.select2-container--bootstrap.select2-container--open .select2-selection {
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 2px rgba(102, 175, 233, .6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 2px rgba(102, 175, 233, .6);
}

.select2-dropdown {
    border: 1px solid #ccc !important;
}

select[readonly="readonly"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form_cadastro .form-control:focus {

    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 2px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 2px rgba(102, 175, 233, 0.6);
}

[obrigatorio="True"] {
    border-bottom-color: red !important;
}

form div[class^='col'] .form-group label {

    font-family: "Calibri" !important;
    margin-bottom: 0px;
    font-size: 13px;
    max-width: 100%;
    max-height: 18px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: bottom;
}

.icone_menu {
    min-width: 20px;
    text-align: center;
}

.link_menu {
    /*    display: flex !important;
    justify-content: left;
    align-items: center;*/
}

.btn-full-td {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-tabs>li>a {
    padding: 10px 6px;
}

.logo_menu_imagem {
    margin-right: 5px;
    max-height: 55px;
    margin-left: 5px;
}

.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
    max-height: 100vh;
}

.link_dash_alerta_menu {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 24px;
    width: 50px;
    color: #ccc;
}

@media screen and (min-width: 769px) {
    .link_dash_alerta_menu {

        margin-left: 30px;

    }
}

.link_dash_menu {
    transition: all 0.2s ease;
}

.link_alerta_menu {
    transition: all 0.2s ease;
    cursor: pointer;
}

.link_dash_menu:hover {
    color: #bae5ff !important;
}

.link_alerta_menu:hover {
    color: #bae5ff !important;
}

@media screen and (max-width: 768px) {

    .link_alerta_menu {
        width: 30px;
    }

}

.titulo_menu_mobile {
    color: #b5b5b5;
    /*position: absolute;*/
    width: calc(100% - 40px);
    /*left: 50px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}


@media screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav>li>a {
        font-size: 10px !important;
        padding-left: 4px !important;
        padding-right: 4px !important;
    }

    .icone_menu {
        font-size: 16px !important;
        min-width: 20px;
    }
}

.login_rodape {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 5px;
}

.navegadores {
    /*margin-top: 12px;*/
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 8px;
    color: #ccc;

}

.navegadores .imgnav {
    max-height: 24px;
    width: auto;
    margin: 0 5px;
}

.icone_acao_linha {
    font-size: 15px !important;
    width: 18px;
    margin-left: 1px;
    margin-right: 1px;
    text-align: center;
}

.icone_acao_linha:only-child {
    width: 23px;
}

.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {
    background-color: #222d32;
    border-color: #222d32;
}

.page-header {
    padding-bottom: 0px;
    margin: 10px 0 5px;
}

.form_cadastro label[data-tipo-campo="arquivo"] {
    min-height: 28px !important;
}

.form_cadastro .form-group[data-tipo-campo="arquivo"],
.form_cadastro .form-group[data-tipo-campo="foto"] {
    background: #eae8e8;
    padding: 10px;
    border: 1px solid #bdbdbd;
    border-radius: 3px;
    overflow: hidden;
}

.form_cadastro .form-group[data-tipo-campo="arquivo"][data-obrigatorio="True"],
.form_cadastro .form-group[data-tipo-campo="foto"][data-obrigatorio="True"] {
    border: 1px solid red;
}



.btn-vertical-menu {
    width: 100%;
    padding: 0 10px;
    margin-top: 5px;
}

.btn-vertical-menu>.btn {
    width: 100%;

}

.div_grupo_simplificado {
    border: 1px solid #ccc;
    border-radius: 3px;
    /*min-height: 80px;*/
    overflow: visible;
    position: relative;
    padding: 32px 5px 5px 5px;
    margin-top: 5px;
}

.cabecalho_grupo_simplificado {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ccc;
    font-size: 14px;
    font-weight: bold;
    padding: 0 1px;
}

.div_itens_simplificado {
    border: 1px solid #ccc;
    border-radius: 3px;
    /*min-height: 80px;*/
    overflow: hidden;
    position: relative;
    padding: 30px 0 0 0;
    margin-top: 5px;
}

.div_itens_simplificado_sem_cabecalho {
    padding-top: 0;
}

.cabecalho_itens_simplificado {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ccc;
    font-size: 14px;
    font-weight: bold;
    padding: 0 1px;
}

.cabecalho_itens_simplificado_com_explicacao {
    min-height: 30px;
    height: auto;
}

.acoes_itens_simplificado {
    width: 100%;
    position: relative;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dfdfdf;
    font-size: 12px;
    padding: 0;
}

.icone_itens_refresh {
    display: none;
    margin-left: 5px;
    color: red;
    font-weight: bold;
}

.container_itens_simplificado {
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
}

.corpo_itens_simplificado {
    padding: 0 5px;
    /*height: 100%;*/
    /*overflow: hidden;*/
    /*overflow-y: auto;*/
}

.botao_refresh_itens_simplificado {
    position: absolute;
    right: 2px;
    left: 3px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    color: green;
    background: rgba(248, 248, 248, 0.64);
}

.botao_incluir_itens_simplificado {
    position: absolute;
    right: 3px;
    top: 2px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.linha_itens_simplificado_agrupadora {}

.coluna_itens_simplificado_agrupadora {
    background: gray;
    color: white;
    text-align: center;
    font-weight: bold;
}

.coluna_itens_simplificado_excluir {
    width: 30px;
    text-align: center;
    color: #cc0000;
    cursor: pointer;
}

.coluna_itens_simplificado_editar {
    width: 30px;
    text-align: center;
    color: orange;
    cursor: pointer;
}

.coluna_itens_simplificado_visualizar {
    width: 30px;
    text-align: center;
    color: blue;
    cursor: pointer;
}

.tabela_itens_simplificado {

    margin-bottom: 0;

}

.tabela_itens_simplificado>thead {
    background: #eeeeee;
}

.tabela_itens_simplificado>thead>tr>th,
.tabela_itens_simplificado>tbody>tr>td {
    padding: 2px 8px;
}

.tabela_itens_simplificado tbody tr.itens_linha_selecionada td {
    background-color: #aae4ff;
    border-bottom: 1px solid #004463;
}

.td_centro {
    text-align: center;
}

.td_esquerda {
    text-align: left;
}

.td_direita {
    text-align: right;
}



.td_ajustado {
    white-space: nowrap;
    width: 10px;
}

.td_negrito {
    font-weight: bold;
}

.ajuste_altura_botao {
    height: 20px;
    display: inline-block;
    width: 100%;
    color: transparent;
    background: transparent;
}


.ajuste_altura_botao::after {
    content: ".";
}



@media (max-width: 768px) {
    .ajuste_altura_botao {
        display: none;
    }
}

.ui-effects-transfer {
    border: 1px dotted black;
}

.colg {
    padding: 0 2px;
}


.box_dash {
    position: relative;
    /*height: 100%;*/
    transition: all 1.0s ease;
}

@media (max-width: 768px) {
    .box_dash {
        /*height: auto;*/
    }
}

.body_dash_board {
    background: white;
}

.box_dash_tem_rodape {
    padding-bottom: 28px;
}

.box_dash_titulo {
    padding: 2px 5px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.box_dash_titulo_texto {
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;
}

.box_dash_titulo_icone {
    font-size: 18px;
    color: #333;
    margin-right: 5px;
}

.box_dash_conteudo {
    /*min-height: 80px;*/
    padding: 5px;
    position: relative;
}

.box_dash_rodape {
    height: 25px;
    padding: 2px 5px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
}

.col_dash {
    margin-bottom: 10px;
}


.body_mensagem_board {
    background: white;
}

.box_mensagem {
    position: relative;
    height: 100%;
    transition: all 1.0s ease;
}

.box_mensagem_tem_rodape {
    padding-bottom: 28px;
}

.box_mensagem_titulo {
    padding: 2px 5px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.box_mensagem_titulo_texto {
    font-size: 16px;
    font-weight: bold;
}

.box_mensagem_titulo_icone {
    font-size: 18px;
    color: #333;
    margin-right: 5px;
}

.box_mensagem_conteudo {
    /*min-height: 80px;*/
    padding: 5px;
    position: relative;
}

.box_mensagem_rodape {
    height: 25px;
    padding: 2px 5px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
}

.row_mensagem {
    /*transition: all 400ms ease;*/
}

.col_mensagem {
    margin-bottom: 10px;
    /*transition: all 400ms ease;*/
}


.center_center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.quadros_laterais_direita {
    border-left: 3px solid white;
    border-bottom: 1.5px solid white;
    border-top: 1.5px solid white;
}

.quadros_laterais_direita:first-child {
    border-bottom: none;
    border-top: none;
}

.quadros_laterais_direita:last-child {
    border-bottom: none;
    border-top: none;
}

.quadros_laterais_esquerda {
    border-right: 3px solid white;
    border-bottom: 1.5px solid white;
    border-top: 1.5px solid white;
}

.quadros_laterais_esquerda:first-child {
    border-bottom: none;
    border-top: none;
}

.quadros_laterais_esquerda:last-child {
    border-bottom: none;
    border-top: none;
}

.mensagens_linha_previa {
    border-bottom: 1px dotted #eeeeee;
    position: relative;
    padding-left: 30px;
}

.mensagens_linha_previa_sem_icone {
    padding-left: 30px;
}

.mensagens_linha_previa:last-child {
    border-bottom: none;
}


.mensagem_previa_icone {
    height: 100%;
    position: absolute !important;
    font-size: 16px;
    top: 0;
    left: 0;
    width: 30px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #334a53
}

.cke_chrome {
    border-radius: 3px;
}

.cke_top {
    border-radius: 3px 3px 0 0;
}

.cke_bottom {
    border-radius: 0 0 3px 3px;
}

.iziToast-message {
    margin-top: 5px !important;
}

table.dataTable tbody>tr.selected,
table.dataTable tbody>tr>.selected {
    background-color: rgba(0, 136, 204, 0.60) !important;
}

table.dataTable tbody td.select-checkbox,
table.dataTable thead th.select-checkbox {
    position: relative;
    cursor: pointer;
    width: 18px
}

.class_mostra_tem_selecao,
.class_mostra_tem_selecao_unica,
.class_mostra_tem_selecao_multiplas {
    display: none;
}

.cke_wysiwyg_frame {
    width: calc(100% - 8px) !important;
    padding: 2px 4px !important;
}

/*    .dt-button-collection {
        left: 42px !important;
    }*/
.bt_edicao {

    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;


}

.dt-button-collection.dropdown-menu {

    max-height: 75vh;
    overflow: hidden;
    overflow-y: auto;

}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-color: #ccc !important;
}

.select2-container--default .select2-selection--multiple {
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-color: #ccc !important;
}

.select2-container--default .select2-selection--single {
    height: 34px !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-color: #ccc !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 34px !important;
}

.form-group[data-tipo-campo="combo_multiplo"]>.select2.select2-container.select2-container--default {
    height: 34px;
    overflow: hidden;
    overflow-y: auto;
    cursor: pointer;
}

.select2.select2-container.select2-container--default.select2-container--below.select2-container--open {
    height: auto;
    overflow: visible;
    overflow-y: auto;
    cursor: pointer;
}



.select2-container--default .select2-search--inline .select2-search__field {
    cursor: pointer;
}

.form-group[data-obrigatorio="True"]>.select2.select2-container.select2-container--default>.selection>.select2-selection.select2-selection--single {
    border-bottom: 1px solid red !important;
}

.combo_select2 {
    height: 34px;
}

.bootbox.modal {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bootbox.modal .modal-dialog .modal-content .modal-header {
    background: #222d32d9;
    color: white;
    border-radius: 4px 4px 0 0;
}

.bootbox.modal .modal-dialog .modal-content .modal-header .close {
    padding: 3px 5px;
    background: white;
    color: red;
    border-radius: 2px;
}

@media (max-width: 767px) {
    .bootbox.modal .modal-dialog {
        width: 100%;
    }
}


.table-condensed>thead>tr>th,
.table-condensed>tbody>tr>th,
.table-condensed>tfoot>tr>th,
.table-condensed>thead>tr>td,
.table-condensed>tbody>tr>td,
.table-condensed>tfoot>tr>td {
    padding: 0px 5px;
}

.ck_editor_live_preview {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 1px solid black;
    box-shadow: 1px 1px 1px black;
    margin-left: 15px;
}


#grupo_de_botoes_menu {
    height: 34px;
    overflow: hidden;
}

@media (max-width: 768px) {
    #grupo_de_botoes_menu {
        height: 100%;
        overflow: auto;
    }
}

.multi-line1>a {
    margin-top: 3px;
    font-size: 11px;
}

.multi-line2>a {
    margin-top: 4px;
    font-size: 9px;
}

.multi-line3>a {
    margin-top: 5px;
    font-size: 7px;
}

.multi-line3>a {
    margin-top: 5px;
    font-size: 5px;
}

.combo_busca_com_tabela {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none;
    padding-right: 0;
    background-image: none;
    pointer-events: none;
}