:root {
    --red: #e74a3b;
    --white: #fff;
    --gray: #858796;
    --gray-dark: #5a5c69;
    --primary:  black;
    --primary_hover: black;
    --amarelo: #B38600;
    --secondary: #646670;
    --success: #1cc88a;
    --info: #36b9cc;
    --warning: #f5b000;
    --danger: #4d0505;
    --light: #f8f9fc;
}

.texto-cortado-auxilio{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    max-width: 100%; /* ou um valor específico como 150px */
}

.status-mes{
    border: 1px solid;
    font-size: 18px;
    color: black;
    font-weight: 800;
    text-align: center;
    border-radius: 9px;
    padding: 9px;
}

.ajuste-check{
    width: 20px;
    height: 20px;
    right: 85px;
    top: -3px;
}

.custom-switch .custom-control-label::before {
    transform: scale(1.6); /* Ajuste o valor para aumentar ou diminuir o tamanho */
}

.verde-checkbox-label::before {
    color: #fff;
    border-color: #01360c !important;
    background-color: #26ff00 !important;
}

.custom-switch .custom-control-label::after {
    background-color: #ffffff !important;
}

.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: #3e0101 !important;
    background-color: #ff0000 !important;
}

.bloqueado{
    background-color: white !important;
    color: black;
}

.desbloqueado{
    background-color: #fff4d3 !important;
    color: black;
}

.card-header-total{
    padding: 10px;
    margin-bottom: 0;
    background-color: #f4b30d;
    border-bottom: 1px solid #e3e6f0;
}

.cor-ciano{
    color:#004051;
    font-weight: 700;
}

.cor-verde{
    color:#097f09;
    font-weight: 800;;
}

.cor-vermelho{
    color:#770c03;
    font-weight: 800;
}

.cor-preta{
    color:black;
    font-weight: 800;
}

.fundo-amarelo{
    background-color: #f4b30d !important;
}

.fundo-amarelo-claro{
    background-color: #fff2d3 !important;
}

.fundo-ciano{
    background-color: #035872 !important;
    color: white;
}

.esconder {
    display: none;
}

.erro{
    background-color: var(--danger);
}

.cor-vales{
    color: var(--warning);
    font-weight: 800;
}

.branco{
    background-color: white !important;
}

.cinza{
    color: #fff;
    background-color: #313131;
}

.botao-flutuante{
    color:var(--warning);
}

.listas-estilizadas{
    background-color: #f3f2f0;
    padding: 8px;
    border-radius: 7px;
    box-shadow: 1px 1px 2px #777575;
}

.informacoes{
    color: #03690b !important;
    font-size: 16px;
    font-weight: 600;
}

.ajustes-padding-modal{
    padding-top: 20px;
    padding-bottom: 24px;
    padding-left: 5px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* trilho */
.slider {
  position: absolute;
  cursor: pointer;
  background-color: #a00101;
  border: 2px solid #500000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.4s;
  border-radius: 34px;
}

tr.justificativa-row td {
    background-color: #f9f9f9;
}

textarea[disabled] {
    background-color: #e9ecef;
    color: #495057;
}

.texto-vermelho{
    color: #e31300 !important;
}

.badge-brown{
   background-color: #ec4b0062 !important;
}

/* bolinha */
.slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 2px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

/* ativo (ligado) */
.switch input:checked + .slider {
  background-color: #00d854;
}

/* posição da bolinha quando ligado */
.switch input:checked + .slider:before {
  transform: translateX(26px);
}

.cor-branca {
    background-color: white !important;
}

.cor-branca i::after {
    content: '+';
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: 600;
    color: #e1a304;
}

.cursor-pointer {
    cursor: pointer;
}

.valor-diaria-viagem{
    font-weight: 700;
    float: right;
    color: #FF9800;
}

.titulo-cadastro{
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.bolinha-verde{
    width: 20px;
    height: 20px;
    display: inline-block;
    background-color: #038652;
    border-radius: 15px;
    margin-left: 10px;
}

.bolinha-vermelha{
    width: 20px;
    height: 20px;
    display: inline-block;
    background-color: #c50000;
    border-radius: 15px;
    margin-left: 10px;
}

.saldo-negativo{
    background-color: #ffe6e6;
    font-weight: 600;
    font-size: 14px;
}

.font-pequena{
    font-size: 0.9rem;
}

.saldo-negativo::after{
    content: "-";
    width: 15px;
    height: 15px;
    background-color: #d40000;
    border-radius: 30px;
    display: flex;
    text-align: center;
    margin-top: -45px;
    position: relative;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
}

.saldo-positivo{
    background-color: #f5fff9;
    font-weight: 600;
    font-size: 14px;
}

.saldo-positivo::after{
    content: "+";
    width: 15px;
    height: 15px;
    background-color: #07b901;
    border-radius: 30px;
    display: flex;
    text-align: center;
    margin-top: -45px;
    position: relative;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
}

.bolinha-cinza{
    width: 20px;
    height: 20px;
    display: inline-block;
    background-color: #afafaf;
    border-radius: 15px;
    margin-left: 10px;
}


#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    /* change if the mask should have another color then white */
    z-index: 2000;
    /* makes sure it stays on top */
    }
    
    #status {
    width: 200px;
    height: 200px;
    position: absolute;
    left: 52%;
    /* centers the loading animation horizontally one the screen */
    top: 50%;
    /* centers the loading animation vertically one the screen */
    background-image: url(https://raw.githubusercontent.com/niklausgerber/PreLoadMe/master/img/status.gif);
    /* path to your loading animation */
    background-repeat: no-repeat;
    background-position: center;
    margin: -100px 0 0 -100px;
    /* is width and height divided by two */
    }
    /* Fragmentos/BarraNavegacao2 */
    #FragVisivel {
        z-index: 100;
    }
    

.texto-cortado {
    white-space: nowrap; /* Evita quebrar linhas */
    overflow: hidden; /* Esconde o conteúdo excedente */
    text-overflow: ellipsis; /* Adiciona reticências (...) para indicar que há mais conteúdo */
    max-width: 200px; /* Define a largura máxima em que o texto será exibido */
}


.hr-sem-margin-top{
    margin-top: 0px !important; 
    margin-bottom: 1.6rem !important; 
}

.graficoDiarias{
    width: 357px !important;
    height: 175px !important;
    display: inline !important;
    text-align: center;
}

.valor-bloco{
    float: right;
    margin-top: 10px;
    color: black;
    font-size: 18px;
    font-weight: 800;
    margin-left: 8px;
}

.status{
    display: inline-block;
    margin-top: 7px;
    padding: 5px 0.75rem 3px !important;
    font-size: 0.7rem;
    border-radius: 0.4rem;
    font-weight: 800;
}

.horario{
    color: #d19602;
    line-height: 1;
    font-size: 14px;
    font-weight: 800;
}

.hr{
    margin-top: 40px !important;
    margin-bottom: 30px !important;
}

.font-15{
    font-size: 15px !important;
}

.valor-pagamento-individual{
    background-color: #007781 !important;
    color: #ffffff !important;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    margin-top: 5px;
    user-select: none;
    padding: 0.275rem 0.75rem !important;
    font-size: 0.8rem;
    line-height: 1.5;
    border-radius: 0.35rem;
    font-weight: 800;
}

.valor-escala{
    color: black;
    font-weight: 800;
    font-size: 18px;
}

.valor-apoio{
    background-color: #FFC107;
    color:black;
}

.status-finalizado{
    background-color: #028f61 !important; 
    color: #ffffff;
}

.status-pagamento{
    background-color: #00006b !important;
    color: #ffffff !important;
}

.status-enviada-dga{
    background-color: #346995;
    color: #ffffff;
}

.status-aguardando-assinatura{
    background-color: #ff3d00;
    color: #ffffff;
}

.status-aguardando-assinatura-dga{
    background-color: #0b9500;
    color: #ffffff;
}

.status-aguardando-banco{
    background-color: #6b0303;
    color: #ffffff;
}

.status-pago{
    background-color: #007579;
    color: #ffffff;
}

.status-tr-verde{
    background-color: #007579;
    color: white;
    font-weight: 800;
    text-align: center;
}

.status-tr-azul{
    background-color: #346995;
    color: white;
    font-weight: 800;
    text-align: center;
}

.obrigatorio{
    color: #b91111;
    font-weight: 800;
}

.qnt-sem-bloco{
    float: right;
    margin-top: 9px;
    color: #810303;
    font-size: 18px;
    font-weight: 800;
}

.status-neutro{
    background-color: #50504f !important;
    color:white;
}

.cor-valor-total{
    background-color: #fff4d7;
    font-weight: 700;
    font-size: 17px;
}

.cor-valor-disponivel{
    background-color: #b6ffda;
    font-weight: 700;
    font-size: 17px;
}

.cor-valor-usado{
    background-color: #ffd2d2;
    font-weight: 700;
    font-size: 17px;
}

.cor-olho-apoio{
    color: black;
}

.cor-olho-apoio:hover{
    color: black;
}

.cor-cabecalho-tabela-escalas{
    background-color: black;
    color: white;
}

.botao-preto{
    background-color: black;
    color: white;
}

.botao-preto:hover{
    background-color: rgb(31, 30, 30);
    color: white;
}

.cor-cabecalho-amarelo-preto{
    background-color: #FFC107;
    color: black;
    font-weight: 800;
}

.ajuste-card{
    padding-left: 2px;
    padding-right: 0px;
}

.cor-cabecalho-ciano-branco {
    background-color: #004560;
    color: #fffefe;
    font-weight: 800;
}

.cor-cabecalho-tabela-amarelo{
    background-color: #f5b000;
    color: black !important;
    font-weight: 700;
}

.cor-cabecalho-tabela-vermelho{
    background-color: #4d0505;
    color: white !important;
}

.cor-ciano{
    color:  #004560;
    font-weight: 800;
}

.cor-amarelo{
    color:  #f5b000;
    font-weight: 800;
}

.cor-cabecalho-tabela{
    background-color:var(--primary);
    color: white !important;
}

.cor-cabecalho-tabela-apoio{
    background-color: #dfdfdf;
    color: black;
}

.cor-cabecalho-operacao {
    background-color: #dddddc;
    color: black !important;
}

.cor-preta{
    color: black;
}

.texto-amarelo-300{
    color: var(--warning);
}


.sisDO-branco{
    vertical-align: middle;
    border-style: none;
    width: 150px;
}

.icone-pcrn{
    vertical-align: middle;
    border-style: none;
    width: 65px;
}

.rotacao{
    transform: rotate(0deg);
}

.mrg{
    margin-left: 0rem!important;
    margin-right: 0rem!important;
}

.valor-escala{
    width: 132px;
    font-size: 16px;
    text-align: left !important;
}


.titulo-secao{
    background-color:  var(--primary)  !important;
    color: white;
}

.titulo-secao-tutorial{
    background-color: #f4b30d;
    color: black;
    border-radius: 6px !important;
}

.titulo-secao-tutorial-cinza{
    background-color: #cbcdce;
    color: black;
    border-radius: 9px !important;
}

table {
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
}

table tr {
    background-color: #ffffff;
    border: 1px solid #ddd;
}

#headerTable{
    background-color:  var(--primary) ;
}

#example2_filter{
    float: right;
}

#example2_length{
    display: none;
}

#example2_paginate{
    float: right;
}

#example3_filter{
float: right;
}

#example3_length{
    display: none;
}

#example3_paginate{
    float: right;
}

.cor-branca{
    background-color: white !important;
}

.cor-branca i::after{
    content: '+';
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: 600;
    color:#e1a304;
}

.instrucoes {
    font-size: 14px;
    padding: 0.85rem;
    margin-bottom: 0.55rem;
    color: var(--bd-callout-color, inherit);
    background-color: var(--bd-callout-bg, var(--bs-gray-100));
    border-left: 0.25rem solid var(--bd-callout-border, var(--bs-gray-300));
    --bs-link-color-rgb: var(--bd-callout-link);
    --bs-code-color: var(--bd-callout-code-color);
    --bd-callout-color: #664d03;
    --bd-callout-bg: #fff3cd;
    --bd-callout-border: #ffe69c;
}

.valor-diaria{
    float: right;
    margin-right: 11px;
    font-weight: 700;
}


@media screen and (max-width: 1300px) {
    table {
        border: 0;
    }

    table caption {
        font-size: 1.3em;
    }

    table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    table tr {
        border-bottom: 3px solid #ddd;
        display: block;
        margin-bottom: .625em;
    }

    table td {
        border-bottom: 1px solid #ddd;
        display: block;
        font-size: .9em;
        text-align: left !important;
    }

    table td::before {

        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
    }

    table td:last-child {
        border-bottom: 0;
    }

    titulo-secao{
        background-color: #ffb908;
        color: white;
    }

    .nomeDaPagina{
        display: none;
    }
}

.instrucoes-gerais{
    text-align: justify;
    font-size: 14px;
    background-color: #fff8e4;
    padding: 19px;
    border-radius: 5px;
    color: #6a6a6a;
}

.aviso-carregamento-recaptcha{
    display: block;
    color: rgb(175 2 2);
    font-size: 15px;
    text-align: center;
    margin-top: 5px;
}

.instrucoes {
    --bs-link-color-rgb: var(--bd-callout-link);
    --bs-code-color: var(--bd-callout-code-color);
    padding: 0.85rem;
    margin-bottom: 0.55rem;
    color: var(--bd-callout-color, inherit);
    background-color: var(--bd-callout-bg, var(--bs-gray-100));
    border-left: 0.25rem solid var(--bd-callout-border, var(--bs-gray-300));
    --bd-callout-color: #664d03;
    --bd-callout-bg: #fff3cd;
    --bd-callout-border: #ffe69c;
    font-size: 14px;
}

.vertical-timeline {
    width: 100%;
    position: relative;
    padding: 1.5rem 0 1rem;
}

.vertical-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 67px;
    height: 100%;
    width: 4px;
    background: #e9ecef;
    border-radius: .25rem;
}

.vertical-timeline-element {
    position: relative;
    margin: 0 0 0.62rem;;
}

.vertical-timeline--animate .vertical-timeline-element-icon.bounce-in {
    visibility: visible;
    animation: cd-bounce-1 .8s;
}
.vertical-timeline-element-icon {
    position: absolute;
    top: 0;
    left: 60px;
}

.vertical-timeline-element-icon .badge-dot-xl {
    box-shadow: 0 0 0 5px #fff;
}

.badge-dot-xl {
    width: 18px;
    height: 18px;
    position: relative;
}
.badge:empty {
    display: none;
}


.badge-dot-xl::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: .25rem;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -5px 0 0 -5px;
    background: #fff;
}

.vertical-timeline-element-content {
    position: relative;
    margin-left: 90px;
    font-size: .8rem;
}

.vertical-timeline-element-content .timeline-title {
    font-size: .8rem;
    text-transform: uppercase;
    margin: 0 0 .5rem;
    padding: 2px 0 0;
    font-weight: bold;
}

.vertical-timeline-element-content .vertical-timeline-element-date {
    display: block;
    position: absolute;
    left: -90px;
    top: 0;
    padding-right: 10px;
    text-align: right;
    color: #adb5bd;
    font-size: .7619rem;
    white-space: nowrap;
}

.vertical-timeline-element-content:after {
    content: "";
    display: table;
    clear: both;
}