
/* ----------------------------------------------------------------
	Buttons
-----------------------------------------------------------------*/
/*
    Menu
*/

/* Sidebar Principal */
.modern-sidebar {
    background: #0061af; /* Azul UTAD aproximado */
    min-height: 100vh;
    color: white;
}

    /* Itens do Menu */
    .modern-sidebar .list-group-item {
        background: transparent;
        color: rgba(255, 255, 255, 0.8);
        border: none;
        padding: 12px 20px;
        font-size: 0.9rem;
        transition: all 0.3s;
        display: flex;
        align-items: center;
    }

        .modern-sidebar .list-group-item:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }

/* Ícones */
.menu-icon {
    width: 25px;
    margin-right: 10px;
    font-size: 1.1rem;
    text-align: center;
}

/* Seta de Submenu */
.arrow {
    margin-left: auto;
    font-size: 0.7rem;
    transition: transform 0.3s;
}

/* Quando o menu está aberto, roda a seta */
.list-group-item[aria-expanded="true"] .arrow {
    transform: rotate(180deg);
}

/* Submenu (Itens internos) */
.submenu {
    background: rgba(0, 0, 0, 0.15); /* Fundo ligeiramente mais escuro */
}

    .submenu .list-group-item {
        padding-left: 55px; /* Recuo para parecer hierárquico */
        font-size: 0.85rem;
    }

        .submenu .list-group-item:before {
            content: "•";
            margin-right: 10px;
            color: rgba(255,255,255,0.4);
        }

.button {
    display: inline-block;
    position: relative;
    cursor: pointer;
    outline: none;
    white-space: nowrap;
    margin: 5px;
    padding: 0 22px;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    background-color: #0072c6;
    color: #FFF;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
}

body:not(.device-touch) .button {
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.button-dark {
    background-color: #444;
}

.button-light {
    background-color: #EEE;
    color: #333;
    text-shadow: none !important;
}

.button:hover {
    background-color: #0010c6;
    color: #FFF;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
}

.button.button-dark:hover {
    background-color: #1ABC9C;
}

.button.button-mini {
    padding: 0 14px;
    font-size: 11px;
    height: 28px;
    line-height: 28px;
}

.button.button-small {
    padding: 0 17px;
    font-size: 12px;
    height: 34px;
    line-height: 34px;
}

.button.button-large {
    padding: 0 26px;
    font-size: 16px;
    height: 46px;
    line-height: 46px;
}

.button.button-xlarge {
    padding: 0 32px;
    font-size: 18px;
    letter-spacing: 2px;
    height: 52px;
    line-height: 52px;
}

.button.button-desc {
    text-align: left;
    padding: 24px 34px;
    font-size: 22px;
    height: auto;
    line-height: 1;
    font-family: 'Raleway', sans-serif;
}

    .button.button-desc span {
        display: block;
        margin-top: 10px;
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 1px;
        font-family: 'Crete Round', serif;
        font-style: italic;
        text-transform: none;
    }

.button i {
    position: relative;
    top: 1px;
    line-height: 1;
    margin-right: 5px;
}

.button.tright i {
    margin: 0 0 0 5px;
}

.button-mini i {
    margin-right: 3px;
}

.button-mini.tright i {
    margin: 0 0 0 3px;
}

.button-small i {
    margin-right: 4px;
}

.button-small.tright i {
    margin: 0 0 0 4px;
}

.button-xlarge i {
    top: 2px;
    margin-right: 8px;
}

.button-xlarge.tright i {
    margin: 0 0 0 8px;
}

.button.button-desc i {
    top: 1px;
    font-size: 48px;
    width: 48px;
    text-align: center;
    margin-right: 12px;
}

.button.button-desc.tright i {
    margin: 0 0 0 12px;
}

.button.button-desc div {
    display: inline-block;
}

.button.button-rounded {
    border-radius: 3px;
}


/* Buttons - Border
-----------------------------------------------------------------*/

.button.button-border {
    border: 2px solid #444;
    background-color: transparent;
    color: #333;
    line-height: 36px;
    font-weight: 600;
    text-shadow: none;
}

    .button.button-border.button-mini {
        line-height: 24px;
    }

    .button.button-border.button-small {
        line-height: 30px;
    }

    .button.button-border.button-large {
        line-height: 42px;
    }

    .button.button-border.button-xlarge {
        line-height: 48px;
    }

    .button.button-border.button-desc {
        line-height: 1;
    }

    .button.button-border:hover {
        background-color: #444;
        color: #FFF;
        border-color: transparent !important;
        text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
    }

    .button.button-border.button-light {
        border-color: #EEE;
        color: #EEE;
    }

        .button.button-border.button-light:hover {
            background-color: #EEE;
            color: #333;
            text-shadow: none;
        }


/* Buttons - Border
-----------------------------------------------------------------*/

.button.button-3d {
    border-radius: 3px;
    border-bottom: 3px solid rgba(0,0,0,0.15);
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

    .button.button-3d:hover {
        background-color: #1ABC9C !important;
        opacity: 0.9;
    }

    .button.button-3d.button-light:hover,
    .button.button-reveal.button-light:hover {
        text-shadow: none;
        color: #333;
    }


/* Buttons - Icon Reveal
-----------------------------------------------------------------*/

.button.button-reveal {
    padding: 0 28px;
    overflow: hidden;
}

    .button.button-reveal i {
        display: block;
        position: absolute;
        top: 0;
        left: -32px;
        width: 32px;
        height: 40px;
        line-height: 40px;
        margin: 0;
        text-align: center;
        background-color: rgba(0,0,0,0.1);
    }

    .button.button-reveal.button-border i {
        top: -2px;
    }

    .button.button-reveal.tright i {
        left: auto;
        right: -32px;
    }

    .button.button-reveal.button-3d i,
    .button.button-reveal.button-rounded i {
        border-radius: 3px 0 0 3px;
    }

    .button.button-reveal.button-3d.tright i,
    .button.button-reveal.button-rounded.tright i {
        border-radius: 0 3px 3px 0;
    }

    .button.button-reveal span {
        display: inline-block;
        position: relative;
        left: 0;
    }

body:not(.device-touch) .button.button-reveal i,
body:not(.device-touch) .button.button-reveal span {
    -webkit-transition: left 0.3s ease, right 0.3s ease;
    -o-transition: left 0.3s ease, right 0.3s ease;
    transition: left 0.3s ease, right 0.3s ease;
}

.button.button-reveal.button-mini {
    padding: 0 17px;
}

    .button.button-reveal.button-mini i {
        left: -22px;
        width: 22px;
        height: 28px;
        line-height: 28px;
    }

    .button.button-reveal.button-mini.tright i {
        left: auto;
        right: -22px;
    }

.button.button-reveal.button-small {
    padding: 0 22px;
}

    .button.button-reveal.button-small i {
        left: -26px;
        width: 26px;
        height: 34px;
        line-height: 34px;
    }

    .button.button-reveal.button-small.tright i {
        left: auto;
        right: -26px;
    }

.button.button-reveal.button-large {
    padding: 0 32px;
}

    .button.button-reveal.button-large i {
        left: -38px;
        width: 38px;
        height: 46px;
        line-height: 46px;
    }

    .button.button-reveal.button-large.tright i {
        left: auto;
        right: -38px;
    }

.button.button-reveal.button-xlarge {
    padding: 0 40px;
}

    .button.button-reveal.button-xlarge i {
        left: -44px;
        width: 44px;
        height: 52px;
        line-height: 52px;
    }

    .button.button-reveal.button-xlarge.tright i {
        left: auto;
        right: -44px;
    }

.button.button-reveal:hover i {
    left: 0;
}

.button.button-reveal.tright:hover i {
    left: auto;
    right: 0;
}

.button.button-reveal:hover span {
    left: 16px;
}

.button.button-reveal.button-mini:hover span {
    left: 11px;
}

.button.button-reveal.button-small:hover span {
    left: 13px;
}

.button.button-reveal.button-large:hover span {
    left: 19px;
}

.button.button-reveal.button-xlarge:hover span {
    left: 22px;
}

.button.button-reveal.tright:hover span {
    left: -16px;
}

.button.button-reveal.button-mini.tright:hover span {
    left: -11px;
}

.button.button-reveal.button-small.tright:hover span {
    left: -13px;
}

.button.button-reveal.button-large.tright:hover span {
    left: -19px;
}

.button.button-reveal.button-xlarge.tright:hover span {
    left: -22px;
}


/* Buttons - Promo 100% Width
-----------------------------------------------------------------*/

.button.button-full {
    display: block !important;
    white-space: normal;
    margin: 0;
    height: auto;
    line-height: 1.6;
    padding: 30px 0;
    font-size: 30px;
    font-weight: 300;
    text-transform: none;
    border-radius: 0;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}

    .button.button-full.button-light {
        border-bottom: 1px solid rgba(0,0,0,0.15);
    }

    .button.button-full strong {
        font-weight: 600;
        border-bottom: 2px solid #EEE;
    }

body:not(.device-touch) .button.button-full strong {
    -webkit-transition: border .2s ease-in-out;
    -o-transition: border .2s ease-in-out;
    transition: border .2s ease-in-out;
}

.button.button-full.button-light strong {
    border-bottom-color: #333;
}

.button.button-full.button-light:hover strong {
    border-bottom-color: #EEE;
}


/* Buttons - Colors
-----------------------------------------------------------------*/

.button-red {
    background-color: #C02942;
}

.button-3d.button-red:hover,
.button-reveal.button-red:hover {
    background-color: #C02942 !important;
}

.button-teal {
    background-color: #53777A;
}

.button-3d.button-teal:hover,
.button-reveal.button-teal:hover {
    background-color: #53777A !important;
}

.button-yellow {
    background-color: #ECD078;
}

.button-3d.button-yellow:hover,
.button-reveal.button-yellow:hover {
    background-color: #ECD078 !important;
}

.button-green {
    background-color: #59BA41;
}

.button-3d.button-green:hover,
.button-reveal.button-green:hover {
    background-color: #59BA41 !important;
}

.button-brown {
    background-color: #774F38;
}

.button-3d.button-brown:hover,
.button-reveal.button-brown:hover {
    background-color: #774F38 !important;
}

.button-aqua {
    background-color: #40C0CB;
}

.button-3d.button-aqua:hover,
.button-reveal.button-aqua:hover {
    background-color: #40C0CB !important;
}

.button-lime {
    background-color: #AEE239;
}

.button-3d.button-lime:hover,
.button-reveal.button-lime:hover {
    background-color: #AEE239 !important;
}

.button-purple {
    background-color: #5D4157;
}

.button-3d.button-purple:hover,
.button-reveal.button-purple:hover {
    background-color: #5D4157 !important;
}

.button-leaf {
    background-color: #A8CABA;
}

.button-3d.button-leaf:hover,
.button-reveal.button-leaf:hover {
    background-color: #A8CABA !important;
}

.button-pink {
    background-color: #F89FA1;
}

.button-3d.button-pink:hover,
.button-reveal.button-pink:hover {
    background-color: #F89FA1 !important;
}

.button-dirtygreen {
    background-color: #1693A5;
}

.button-3d.button-dirtygreen:hover,
.button-reveal.button-dirtygreen:hover {
    background-color: #1693A5 !important;
}

.button-blue {
    background-color: #1265A8;
}

.button-3d.button-blue:hover,
.button-reveal.button-blue:hover {
    background-color: #1265A8 !important;
}

.button-amber {
    background-color: #EB9C4D;
}

.button-3d.button-amber:hover,
.button-reveal.button-amber:hover {
    background-color: #EB9C4D !important;
}

.button-black {
    background-color: #111;
}

.button-3d.button-black:hover,
.button-reveal.button-black:hover {
    background-color: #111 !important;
}

.button-white {
    background-color: #F9F9F9;
}

.button-3d.button-white:hover,
.button-reveal.button-white:hover {
    background-color: #F9F9F9 !important;
}


/* Buttons - No Hover
-----------------------------------------------------------------*/

.button.button-nohover:hover {
    opacity: inherit !important;
    background-color: inherit !important;
    color: inherit !important;
    border-color: inherit !important;
}


.spanCheck {
    vertical-align: top;
    margin-right: 3%;
}


.btEditarDisciplina {
    cursor: pointer!important;
}

.lblDescricaoDadoCursoEdicao{
    font-weight:bold;
}

.divLegendaTipologia{
    margin-top:2%;
    margin-bottom:2%;
}

.divLegendaNIT {
    margin-top: 2%;
    margin-bottom: 2%;
}

.spanLegendaTituloTipologia {
    color: #0096c4 !important;
}

.spanLegendaTipologia {
    font-size: 10px;
}

.spanLegendaTituloNIT {
    color: #0096c4 !important;
}

.spanLegendaNIT {
    font-size: 12px;
}



.dot {
    height: 25px;
    width: 25px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
}

.distribuicaoNaoCriada {
    background-color: red;
}

.distribuicaoCriada {
    background-color: #34e1eb;
}

.distribuicaoNaoConforme {
    background-color: yellow;
}

.distribuicaoConforme {
    background-color: green;
}

.lblNomeCursoCheck {
    margin-left: 5px;
}

.btCheckDados {
    cursor: pointer;
    -webkit-appearance: none;
    -khtml-border-radius: 10px;
    border: 2px solid black;
    background: white;
    padding: 10px 10px;
    color: black;
    font-size: 15px;
    line-height: 19px;
    outline: none;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
}

.btCheckDadosDocente{
    margin-top:25px;
}


.h2Distribuicao{
    font-size:18px;
}


.linkAddTurma {
    color: #007bff!important;
    cursor:pointer;
}

.iconStyle {
    color: #0072C6 !important;
    font-size: 20px;
}

.iconStyleSave {

    max-width: 25px;
}


.iconStyleExcel {
    max-width: 25px;
}


.iconStyleDelete {
    max-width: 25px;
}

.iconStyleRemoveUC {
    color: #0072C6 !important;
    margin-left: 5px;
}

.linkMenuPessoal {
    color: #0072C6 !important;
}

    .linkMenuPessoal:hover {
        text-decoration: none;
    }


.btAcao {
    cursor: pointer;
    -webkit-appearance: none;
    -khtml-border-radius: 10px;
    /* border-radius: 10px; */
    border: 3px solid black;
    background: white;
    padding: 12px 12px;
    color: black;
    font-size: 18px;
    line-height: 19px;
    outline: none;
    text-align: center;
    /* box-shadow: inset 0 0 0 0 white; */
    display: inline-block;
    vertical-align: middle;
}


.divDistribuicaoCurso {
    height: 100%;
    float: left;
    display: flex;
    width:100%;
}
.divDistribuicaoCursoSelect {
    width: 5%;
    float: left;
    margin-top: 0.5%;
    text-align:center;
}

.inputDistribuicaoCursoCheck {
    vertical-align: super;
}


.divDistribuicaoCursoNome {
    width: 95%;
    float: left;
}


.headerTipoCursoListagem {
    margin-bottom: .5rem;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
    color: inherit;
    font-size: 1.5rem;
}


.headerNomeCursoListagem {
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
    font-size: 1rem;
}


.headerCursoPlanosListagem {
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;

    font-size: 1.75rem;
}

.headerNomePlanoCursoListagem {
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
    font-size: 1rem;
}


.linkUpdateDiretoresDepartamento{
    cursor:pointer;
}

.headerResumoAgrupamento {
    text-align: center;
}

.trHeaderResumoAgrupamento {
    background-color: #dddddd!important;
}

.resumoAgrupamentoNoBorder {
    border: 0;
    background-color: white;
}

.textoResumoAgrupamento {
    background-color: #ccc;
    border-color: #dddddd;
}


.trUC {
    background-color: white !important;
    font-weight: bold;
}

.spanLegendaTituloTipologiaUCS {
    font-size: 14px;
}

.spanLegendaTipologiaUCS {
    font-size:12px;
}

.rectExemploNIT {
    height: 15px;
    width: 25px;
    float: left
}

.rectExemploNITDescricao{
    float:left;
    padding-left:10px;
}

.txtNIT{
    text-align:center;
}

.txtResumoSemestre{
    text-align:center;
}

.NITIGUAL {
    background-color: yellowgreen;
}

.NITMAIOR {
    background-color: yellow;
}

.NITMENOR {
    background-color: orangered;
}


.headerOrientacao {
    width: 250px;
}

.headerTemaOrientacao {
    width: 350px;
}

#tableOrientacoes td {
    vertical-align: middle;
}

    #tableOrientacoes td:nth-child(2) {
        white-space: nowrap;
    }

#tableDocentesOrientacoes, #tableDocentesCargos, #tableDocentesDispensas {
    margin-top: 1%;
}


.textoResumoAgrupamentoCol1 {
    border-bottom-color: #ccc;
}

.textoResumoAgrupamentoColTipologia{
}

#btRemoveAgrupamento {
    color: red;
    font-size: 14px;
    padding: 6px 6px;
    border: 2px solid red!important;
}

#btLoadContagemAlunos {
    color: red;
    font-size: 14px;
    padding: 6px 6px;
    border: 2px solid red!important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background-color: #ccc !important;
    color:white!important
}

.divAtualizar{
    cursor:pointer;
}

.listaDocenteConhecimentoOK {
    text-align: center;
    background-color: yellowgreen;
    vertical-align: middle !important;
}

.listaDocenteConhecimentoNO {
    text-align: center;
    background-color: orangered;
    vertical-align: middle !important;
}

.textoResumoAgrupamentoNumeroSemanas{
    text-align:center;
}


.btRemoverDocente {
    color: red;
    border: 2px solid red!important;
}

#spanRemoveDocente {
    margin-right: auto;
    padding-left: 15px;
}

.h4AvisoNIT {
    color: #0072c6 !important;
}

.iconFaturas {
    color: #0072c6 !important;
    cursor: pointer;
}

.h4AvisoEstadoFatura {
    color: #0072c6 !important;
}


.h4AvisoPedido {
    color: #0072c6 !important;
}

.h4AvisoDataFatura {
    color: #0072c6 !important;
}


.spanEstadoFaturaPaga {
    color: limegreen;
}

.spanEstadoFaturaNaoPaga {
    color: red;
}

.spanEstadoFaturaMeiaPaga {
    color: orange;
}


.aLinkVoltar {
    color: #0096c4 !important;
    text-decoration: none !important;
    cursor: pointer;
}

.h4DadosUtente {
    color: var(--main-color);
}


.tableDadosUtente {
    width: 100% !important;
}

.inputVerDadosUtente{
    width:85%;
}


.btn {
    display: inline-block;
    padding: 6px 15px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

.btn-primary {
    color: #fff!important;
    background-color: #0072c6;
    border-color: #0072c6;
}

.notasDados {
    color: #0096c4 !important;
}

.rowAddReserva{
    margin-top:3%;
}

.cssImgLoad{
    max-width:100%;
}

.avisoErroDatasReserva{
    color:red;
}

#divAddReserva{
    margin-top:3%;
}

.iconView {
    color: #0096c4 !important;
    cursor: pointer;
}

.btAprovarCandidatura {
    background-color: green !important;
    border-color: green;
}

.btRejeitarCandidatura {
    background-color: red!important;
    border-color: red;
}

.h5ModalEscolha {
    color: #0072C6
}

.inputObservacoesEstadoCandidatura {
    width: 100%;
}

.lblCandidaturaRejeitada {
    color: red;
}
.lblCandidaturaAprovada {
    color: green;
}


.lblCandNaoMigrado {
    color: red;
}

.lblCandMigrado {
    color: green;
}


.lblCandReservaNaoEfetuada {
    color: red;
}

.lblCandReservaEfetuada {
    color: green;
}

.rowAddReservaMigrar{
    margin-top:2%;
}

.h5IntroDados{
    color:#444;
}



.inputDadosReserva
{
    width:100%;
}


.tooltipNew .tooltiptextNew {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    margin-top: -3%;
    /* left: 50%; */
    margin-left: -5%;
    opacity: 0;
    transition: opacity 0.3s;
}

    .tooltipNew .tooltiptextNew::after {
/*        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #555 transparent transparent transparent;*/
    }

.tooltipNew:hover .tooltiptextNew {
    visibility: visible;
    opacity: 1;
}

.divListaObservacoes {
    margin-bottom: 5%
}

.h4UtenteObservacoes {
    font-size: 1.2rem;
}

.pUtenteObservacoes {
    font-size: 1.0rem;
}




.logoQren {
    width:100%;
}

.table_utentes{
    width:100%;
}

#divCodCentroCusto {
    margin-top: 10px;
}

.divDadosLancamentoMensal {
    margin-top:2%;
}


#divMarcarAllUtentesLancamentoMensal {
    margin-top: 2%;
}

#divNumUtentesLancamentoMensalCheck {
    margin-top: 1%;
}

#divAdicionarFaturaLancamentoMensal {
    margin-top: 3%;
}


.divDadosReport {
    margin-top: 2%;
}

.divListaResidenciasReports {
    margin-bottom: 2%;
}
.divListaPisosReports {
    margin-bottom: 2%;
}

.divListaAlasReports {
    margin-bottom: 2%;
}
.divListaQuartoReports {
    margin-bottom: 2%;
}
.divListaCamaReports {
    margin-bottom: 1%;
}

.divDadosOcupacao {
    margin-bottom: 2%;
}

.divDadosTotalDebito {
    margin-bottom: 2%;
}

.divDadosTotalPagamentos {
    margin-bottom: 2%;
}

.divDadosTotalFaturacao {
    margin-bottom: 2%;
}

.reportNomePiso, .reportNomeResidencia, .reportNomeAla, .reportCodQuarto, .reportCodCama, .reportTipoReport {
    color: var(--main-color);
}

.reportCamaFechada{
    color:red;
}
.reportCamaLivre {
    color: red;
}
.reportCamaOcupada {
    color: green;
}

.fullWidthSelect
{
    width:100%;
}


.conhecimentoResultadosTrue {
    background-color: green;
    border-color: green;
}

    .conhecimentoResultadosTrue:hover {
        color: green !important;
        background-color: white !important;
        border-color: green !important;
    }

.conhecimentoResultadosDesistencia {
    background-color: orange;
    border-color: orange;
}

    .conhecimentoResultadosDesistencia:hover {
        color: orange !important;
        background-color: white !important;
        border-color: orange !important;
    }


.conhecimentoResultadosReclamar {
    background-color: red;
    border-color: red;
}

    .conhecimentoResultadosReclamar:hover {
        color: red !important;
        background-color: white !important;
        border-color: red !important;
    }


.linkDownloadFileReclamacao {
    color: var(--main-color) !important;
    text-decoration: none !important;
}

.rowListaCandidaturas{
    margin-bottom:3%;
}

.modalAddReclamacao {
    max-width: 50% !important;
}

input, select, textarea {
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

    input:focus, textarea:focus, select:focus {
        outline: none!important;
    }

.checkInOutNaoConfirmado {
    color: red;
    font-weight: bold
}

.checkInOutConfirmado {
    color: green;
    font-weight: bold
}

td {
    vertical-align: middle !important;
}

.linkDadosCheckInOut {
    color: #0096c4 !important;
    text-decoration: none !important;
    cursor: pointer;
}


.btConfCheck {
    color: #fff !important;
    background-color: #0072c6;
    border-color: #0072c6;

}

.tipoAviso {
    border: none !important;
    color: var(--main-color);
}

.btnLinkAviso {
    font-size: 13px !important;
    padding: 5px 14px;
}

.spanTextoAviso{

}


#main {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.formControlBlack {
    color: black !important;
}

table{
    width:100%!important;
}