.highlighted {
    font-weight: bold;
    background-color: yellow;
    /* Cor de fundo para realçar */
}


/* BOTAO DE PESQUISA E RELATORIO EM ASSOCIADO CSS PARA RESOLUCAO TELA GRANDE E TELA PEQUENA */

/* Estilo para telas menores (abaixo de 992px) */
/* @media (max-width: 992px) {
    .btn-query, .btn-print {
        width: 100%;
        padding: 12px 24px;
    }
} */

/* Estilo para telas maiores (acima de 992px) */
/* @media (min-width: 992px) {
    .btn-query, .btn-print {
        width: auto;
        padding: 12px 24px;
    }
} */
.marginTop10{
    margin-top:10px !important;
}
.marginBottom20{
    margin-bottom:20px;
}
/* PLACEHOLDER */

.form-control::placeholder {
    color: #999;
    opacity: 1;
}


/* ERROS */

.hidden {
    display: none;
}

.warning, .warning-message {
    padding: 5px;
    font-family: Arial;
    margin: 0 auto;
    margin-top: 15px;
    width: 100%;
    text-align: center;
}

.warning-message {
    padding: 25px;
    background-color: #FFF;
    color: #38C;
    padding-top: 0px;

}

.ajax-message {
    width: 600px;
    min-height: 200px;
    color: #555;
    font-size: 14px;
    overflow: auto;
    white-space: pre-wrap;
    /* Alterado para pre-wrap */
    text-align: left;
    word-wrap: break-word;
    background-color: #f9f9f9;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow-x: hidden;
    /* Adicionado para ocultar a barra de rolagem horizontal */
}

.ajax-message pre {
    overflow: auto;
    white-space: pre-wrap;
    /* Alterado para pre-wrap */
    text-align: left;
    word-wrap: break-word;
    overflow-x: hidden;
    /* Adicionado para ocultar a barra de rolagem horizontal */
}

.warning-message b {
    color: #707075;
    text-decoration: none;
    margin-bottom: 10px;
    text-align: center;
}

.warning {
    display: none;
}

.warning, main {
    opacity: 0;
    animation: fadeIn 0.5s ease-in;
}

.warning:not(:empty), main {
    animation-name: fadeIn;
    animation-duration: 0.5s;
    animation-timing-function: ease-in;
    animation-fill-mode: forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.warning-message .error-table {
    margin: 0 auto;
    width: fit-content;
    text-align: left;
}

.warning-message .error-cell {
    padding: 5px;
}

.warning-message .align-right {
    text-align: right;
    color: #888;
}

.warning-message .align-left {
    text-align: left;
}

.warning-message strong {
    font-weight: bold;
}

.warning-message .variable {
    font-weight: bold;
}

.warning-message .filename {
    font-weight: bold;
}

.fadeIn {
    animation: fade-in 0.5s ease-in-out;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fontSize12 {
    font-size: 12px;
}

.fontSize14 {
    font-size: 14px;
}

.routing .text-color, .routing p {
    color: #919191;
}

.routing table {
    margin-top: 40px;
    margin-bottom: 80px;
}

.error-back {
    margin-bottom: 100px;
}

.routing a {
    color: #888;
}

.routing a:hover {
    color: #38C;
}

.routing, .routing p {
    font-family: Arial;
    font-size: 14px;
    /* max-width: 600px; */
}

.login-container {
    margin-top: -150px;
}

.error-container {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    /* max-width: 600px; */
    margin: 0 auto;
    padding: 40px;
    text-align: center;
}

.error-container .error-back {
    margin-top: 20px;
}

.fade-in {
    animation: fadeInAnimation 0.3s ease-in forwards;
}

.fade-out {
    animation: fadeOutAnimation 0.3s ease-out forwards;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeOutAnimation {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* FIM DE ERROS */

/* OUTROS */

.fontWeight400 {
    font-weight: 400;
}

.resizeVertical {
    resize: vertical;
}

.minHeight200 {
    min-height: 200px;
}

.minHeight60 {
    min-height: 60px;
}

.noHeight {
    height: auto;
}

.marginTop0 {
    margin-top: 0px;
}

.marginTop2 {
    margin-top: 2px;
}

.marginTop3 {
    margin-top: 3px;
}

.marginTop5 {
    margin-top: 5px;
}

.marginTop8 {
    margin-top: 8px;
}

.marginTop10 {
    margin-top: 10px;
}

.marginTop20 {
    margin-top: 20px;
}

.marginTop25 {
    margin-top: 25px;
}

.marginBottom2 {
    margin-bottom: 2px;
}

.marginBottom4 {
    margin-bottom: 4px;
}

.marginBottom5 {
    margin-bottom: 5px;
}

.marginBottom8 {
    margin-bottom: 8px;
}

.marginBottom10 {
    margin-bottom: 10px;
}

.marginBottom15 {
    margin-bottom: 15px;
}

.marginLeft5 {
    margin-left: 5px;
}

.marginLeft15 {
    margin-left: 15px;
}

.marginRight15 {
    margin-right: 15px;
}

.vertical-center-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.maxWidth235 {
    width: 235px !important;
}

.borderTopDDD {
    border-top: 1px solid #DDD;
}

.paddingTop2 {
    padding-top: 2px;
}

.paddingTop5 {
    padding-top: 5px;
}

.paddingTop8 {
    padding-top: 8px;
}

.paddingLeft2 {
    padding-left: 2px;
}

.paddingLeft3 {
    padding-left: 3px;
}

.paddingLeft4 {
    padding-left: 4px;
}

.paddingLeft5 {
    padding-left: 5px;
}

.paddingLeft10 {
    padding-left: 10px;
}

.fontSize12 {
    font-size: 13px;
}

.fontSize13 {
    font-size: 13px;
}

.clearFix::after {
    content: "";
    display: table;
    clear: both;
}

.displayInlineBlock {
    display: inline-block;
}

.width20 {
    width: 20px;
}

.width40 {
    width: 40px;
}

.cursorDefault {
    cursor: default;
}

.textAlignCenter {
    text-align: center;
}

.verticalAlignMiddle {
    vertical-align: middle;
}

.textAlignCenterSpanTd {
    text-align: center;
    width: 100%;
    display: inline-block;
}

.marginTopAdm840 {
    margin-top: 40px;
}

.marginTopAdm860 {
    margin-top: 60px;
}

.marginTopAdm880 {
    margin-top: 80px;
}

/* FIM DE OUTROS */

/* INICIO DE CENTRALZIACAO DE PAGE QUANDO DADO VARDUMPADO */

.array-content {
    display: block;
    /* ou display: inline-block; dependendo do que você precisa */

    width: 1000px;
    min-height: 200px;
    color: #555;
    font-size: 14px;
    overflow: auto;
    white-space: pre-wrap;
    /* Alterado para pre-wrap */
    text-align: left;
    word-wrap: break-word;
    background-color: #f9f9f9;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow-x: hidden;
    /* Adicionado para ocultar a barra de rolagem horizontal */
    margin: 0 auto;
    /* Para centralizar */
    margin-top: 100px;
    margin-bottom: 200px;
}

/* FIM DE ARRAY */

/* MENSAGEM DE ERRO NO TOPO */

/* MENSAGEM DE ERRO NO TOPO */
/* https://getbootstrap.com/docs/4.0/components/alerts/ */

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#avisa {
    width: 100%;
    font-family: 'Open Sans';
    margin: 0 auto;
    margin-top: 15px;
    margin-bottom: 15px;
    animation: fadeIn 0.5s ease-in;
    display: none;
    padding-top: 10px;
    padding-bottom: 10px;
}

#msgAvisa {
    font-size: 13px;
    overflow-x: hidden;
}

.viewMore {
    cursor: pointer;
    color: #38C;
    font-size: 12px;
}

.viewMore:hover, .viewMore:active, .viewMore:focus {
    cursor: pointer;
    color: #b30043;

}

h1 img {
    width: 10px;
}

/* MODAL */

.modal-backdrop.show {
    display: none;
}

.span-default-class-modal .modal {
    padding-top: 70px;
    /* ajuste conforme a altura da sua navbar */
}

.span-default-class-modal .close:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.span-default-class-modal .modal-header .close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
}

.span-default-class-modal button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
}

.span-default-class-modal .close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}

/* COMPROVANTE CLASS IMG */
.comprovanteRight {
    margin-top: 20px;
}

.comprovanteRight img {
    width: 100%;
    max-width: 300px;
    /* border: 10px solid #FFF; */
    border-radius: 5px;
}

/* REQUIRED CLASS LABEL */

label.required::after {
    content: "*";
    /* conteúdo do pseudo-elemento, nesse caso um asterisco */
    color: #38C;
    /* cor do asterisco */
    padding-left: 2px;
    /* adiciona algum espaço entre o label e o asterisco */
}


/* FIM DE SELECT2 */
.warningState {
    padding: 15px;
    font-size: 12px;
}

/* FOTO */

/* FIM DE FOTO */

/* INICIO DE DATATABLE */

.table-bordered thead td, .table-bordered thead th {
    border-bottom-width: 2px;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}

.table-bordered> :not(caption)>*>* {
    border-width: 0 var(--bs-border-width);
}

.table> :not(caption)>*>* {
    padding: .5rem .5rem;
    color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));
    background-color: var(--bs-table-bg);
    box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)));

}

.table-bordered td, .table-bordered th {
    border: 0px solid #dee2e6;
}

th {
    text-align: inherit;
}

table.dataTable {
    /* border-collapse: separate !important; */
    border-spacing: 0;
}

tbody, td, tfoot, th, thead, tr {
    border-color: inherit;
    border-style: solid;
    border-width: 0px !important;
    border-top-color: inherit;
    border-top-style: solid;
    border-width: 0px !important;
    border-top-width: 0px;
    border-top: 1px solid #e8e8e8 !important;
}

table.dataTable {
    clear: both;
    margin-top: 6px !important;
    margin-bottom: 6px !important;
    max-width: none !important;
    border-collapse: none !important;
    border-spacing: 0;
}

table.dataTable {
    border-collapse: collapse !important;
}

.dataTables_wrapper .dataTables_paginate {
    vertical-align: middle !important;
}

.dataTable td {}

.dataTable th {
    font-size: 14px;
    font-weight: 700;
}

/* FORM CONTROL COR INPUTS COLORS */

.form-control {
    /*  #333 #444 #555 ~#666 */
    color: #555;
}

label {
    /*  #555 #444 #555 ~#666 */
    color: #555;
}

table thead th, table tbody tr td {
    /*  #555 #444 #555 ~#666 */
    /* color: #555 !important; */
}

tbody, td, tfoot, th, thead, tr {
    /*  #555 #444 #555 ~#666 */
    color: #555 !important;
}

div.dataTables_wrapper div.dataTables_info {
    /*  #555 #444 #555 ~#666 */
    color: #555;
}

.title-well {
    color: #555 !important;
}

.well label {
    color: #555;
}


/* FIM DE COLORS INPUT */


/* SHORTS */

.shortText {
    word-wrap: break-word;
    width: auto;
    /* color: #428bca; */
}

.shortText:hover, .inactive-record-text .shortText:hover {
    cursor: pointer;
    color: #38C !important;
}

/* INATIVO E ATIVO DATA TABLE CREATE ROW */

.inactive-record-text, .inactive-record-text td {
    color: #888 !important;
    /* Ou a cor que você deseja */
}

.inactive-record-text .shortText {
    color: #888 !important;
    /* Ou a cor que você deseja */
}

/* PROFILE CSS */

.show {
    display: block;
}

.hiperlink {
    cursor: pointer !important;
}

.no-hiperlink {
    cursor: default !important;
}

.btn-ver, .btn-active, .btn-deactive, .btn-remove, .btn-edit, .btn-ChangePassword {
    font-size: 12px;
    font-family: "Open Sans", sans-serif;
    outline: none !important;
    transition: all .2s ease-in-out;
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    border: 1px solid transparent;
    white-space: nowrap;
    text-transform: none;
    box-sizing: border-box;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    background-image: none;
}

.btn-edit {
    color: #fff;
    background-color: #428bca;
    border-color: #357ebd;
}

.btn-remove {
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a;
}

.btn-ver {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c;
}

.btn-ver:hover, .btn-ver:focus, .btn-ver:active,
.btn-ver.active, .open .dropdown-toggle.btn-ver {
    color: #fff;
    background-color: #47a447;
    border-color: #398439
}

.btn-active {
    background: #169f85;
    border: 1px solid #169f85;
}

.btn-active:hover {
    color: #fff;
    background-color: #458e6c;
}


/* FORMULARIOS DE PESQUISA / IMPRESSAO */
/* 
.form-group {
    margin-bottom: 20px;
}

.form-group input {
    height: 32px;
}

.form-group label {
    font-size: 14px;
    color: #666;
} */

.marginTop100{
    margin-top:100px;
}

.updatedText{
    margin-top:20px;
    margin-bottom: 20px;
    display:none;
}
.updateReprovalCommentButton {
    margin-top:20px;
    clear:both;
}
.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    font-size: 13px;
    color: #444;
    font-family: 'Source Sans Pro', sans-serif;
}

.title-well {
    border-bottom: 1px solid #efeee8;
    font-weight: bold;
    padding-bottom: 5px;
    width: 100%;
    font-weight: bold;
    margin-bottom: 15px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px !important;
    display: inline-block;
    font-size: initial;
}

.well label {
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 12px;
}

/* BOTAO PESQUISA */

.btn-query {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c;
    font-size: 14px;
    padding: 5px;
}

.btn-query:hover, .btn-query:focus, .btn-query:active,
.btn-query.active, .open .dropdown-toggle.btn-query {
    color: #fff;
    background-color: #47a447;
    border-color: #398439
}

/* BOTAO CLEAR LIMPAR FILTROS NO PAINEL ADM */
.btn-clear {

    font-size: 14px;
    padding: 5px;
}

/* BOTAO IMPRESSORA */
.btn-print {

    color: #fff;

    background-color: #428bca;
    border-color: #357ebd;
    font-size: 14px;
    padding: 5px;
}

.btn-print:hover, .btn-print:focus, .btn-print:active,
.btn-print.active, .open .dropdown-toggle.btn-print {

    color: #fff;

    background-color: #0b5ed7;
    border-color: #0a58ca;
}

/* fieldset.well {
    background-color: #f8f9fa;
    padding: 20px;
    border: 1px solid #ced4da;
    border-radius: 5px;
}

input.form-control {
    border-radius: 0;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
} */
/* FIM BOTOES RELATORIO E PESQUISA */

/* NAV BAR MENU */

.navBarStyleMenu {
    float: left;
    margin-right: 30px;
    margin-top: 5px;
}

.navBarStyleMenu a {
    color: #012970;
    font-family: 'Open Sans', sans-serif;
}

.navBarStyleMenu a:hover {
    color: #38C;
    cursor: pointer;
}

pre {
    margin-left: 400px;
    margin-top: 100px;
}

.quill-editor-fully, .quill-editor-full {
    min-height: 300px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #555;
}

.quill-editor-fully:hover, .quill-editor-full:hover {
    color: #555;
}

.quill-editor-fully p, .quill-editor-full p {

    line-height: 25px;
    padding: 5px;
}

.quill-editor-fully img, .quill-editor-full img {

    border: 1px solid #DDD;
    padding: 10px;
}

.ql-toolbar.ql-snow {
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    padding: 8px;
    margin-top: 10px;
}

/* ALTERAR SENHA */

.changePasswordModal .alert-info {

    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    word-wrap: break-word;
    background-color: #F7FFF4;
}

.changePasswordModal .alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: .25rem;

}



/* COPYRIGHT SCRIPTING STUDIOS ART FOOTER */
.footer .credits {
    text-align: right;
    font-family: "Open Sans", sans-serif;
    float: right;
    margin-right: 100px;
    padding-top: 5px;
    text-align: center;
    font-size: 13px;
    color: #979797;
}

.footer .credits a {
    color: #0063ff;
    text-decoration: none;
}

.footer .credits a:hover {
    color: #38C;
    text-decoration: none;
}


/* 404 */


.error-container {
    color: #777;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 auto;
    padding: 40px;
    text-align: center;
}

.error-container table, .error-container table td, .error-container li {
    color: #777;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}

/* FIM 404 */
