.text-themecolor {
    color: #cd7f32 !important;
}

.bg-themecolor {
    background-color: #cd7f32 !important;
}



/*******************
/*Buttons
*******************/
.btn-themecolor,
.btn-themecolor.disabled {
    background: #cd7f32;
    color: #ffffff;
    border: 1px solid #cd7f32;
}

.btn-themecolor:hover,
.btn-themecolor.disabled:hover {
    background: #cd7f32;
    opacity: 0.7;
    color: #ffffff;
    border: 1px solid #cd7f32;
}

.btn-themecolor.active, .btn-themecolor:focus,
.btn-themecolor.disabled.active,
.btn-themecolor.disabled:focus {
    background: #A0834E;
    color: #ffffff;
}



.brand-link{
    padding-top: 11px !important;
    padding-bottom: 11px !important;
}

td,th {
    padding: 7px!important;
}

#toast-container > div {
    opacity: 1 !important;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    filter: alpha(opacity=100);
}
.toast {
    opacity: 1 !important;
    background-color: rgba(255,255,255);
}

.toast.bg-danger{
    opacity: 1 !important;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    filter: alpha(opacity=100);
    background-color: #dc3545 !important;
}

.toast.bg-info{
    opacity: 1 !important;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    background-color: #17a2b8 !important;
}
.toast.bg-warning{
    opacity: 1 !important;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    background-color: #ffc107 !important;
}
.toast.bg-success{
    opacity: 1 !important;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    background-color: #28a745 !important;
}

#toast-container > div {
    opacity: 1 !important;
}

.dataTables_info{
    color:#c0c0c0 !important;
}

.nav-subtitle{
    line-height: 1;
}

.buttons-html5{
    padding: 3px 12px 3px 12px !important;
    margin-left: 10px;
    margin-top: 10px;
}
.dataTables_filter{
    margin-right: 10px;
    margin-top: 10px;
}

/* Barras de rolagem da pagina *****/
body::-webkit-scrollbar {
    width: 10px;               /* width of the entire scrollbar */
}
body::-webkit-scrollbar-track {
    background: #1e1e1e;        /* color of the tracking area */
}
body::-webkit-scrollbar-thumb {
    background-color: #c2c7d0;    /* color of the scroll thumb */
    border-radius: 20px;       /* roundness of the scroll thumb */
    border: 3px solid #1e1e1e;  /* creates padding around scroll thumb */
}

/* Barras de rolagem dos componentes dentro da pagina *****/
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #FFF;
}
::-webkit-scrollbar-thumb {
    background-color: #1e1e1e;
    border-radius: 20px;
    border: 3px solid #FFF;
}




.button-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

.icon_tela_inicial {
    flex: 0 0 calc(33.33% - 20px); /* Distribuir igualmente em 3 colunas */
    padding: 30px 60px;
    font-size: 60px;
    border: none;
    background-color:#f4f6f9;
    color: rgb(3, 3, 3);
    cursor: pointer;
}

.rounded-5{
    border-radius: 5px;
}
.rounded-20{
    border-radius: 20%;
}

.brand-link {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
    padding-left: 15px !important;
}

.img-w80p{
    max-width: 660px;
    height: auto;
    max-height: 660px;
    width: 100%;
}

.logo-login{
    max-width: 225px;
    height: auto;
    width: 60%;
    margin-top: 40px;
    margin-bottom: 40px;
}

@media screen and (max-width: 768px){
    .img-w80p{
        max-width: 300px !important;
        height: auto;
        max-height: 300px !important;
        width: 100%;
    }
    .login-page{
        display: block !important;
    }
    .login-page .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media screen and (max-width: 320px){
    .login-page .container-fluid {
        padding-left: 5px;
        padding-right: 5px;
    }
}

.code-error{
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 60px;
    font-weight: bold; /* Tornando o texto mais gordo */
}

.font-merri{
    font-family: 'Merriweather Sans', sans-serif;
}

input[type="number"] {
    padding-right: 5px !important;

    /* Remove as setas padrão */
    -moz-appearance: textfield; /* para Firefox */
    appearance: textfield; /* para outros navegadores */

    /* Estiliza o campo para mover o texto para a esquerda */
    text-align: left;

}

/* Estilo para adicionar de volta as setas em navegadores WebKit (Chrome, Safari, etc.) */
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: inner-spin-button;
    position: absolute;
    top:0;
    right: 0;
    height: 100%;
}

@keyframes alternaOpacidade {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.2;
    }
}

.anime-opacidade {
    animation: alternaOpacidade 2s infinite;
}

.btn-outline-info, .btn-outline-primary, .btn-outline-danger, .btn-outline-success {
    background-color: #fff;
}

.max-width-300 {
    max-width: 300px;
    overflow: hidden; /* opcional: esconde qualquer conteúdo que exceda a largura máxima */
    text-overflow: ellipsis; /* opcional: adiciona reticências para indicar conteúdo cortado */
    white-space: nowrap; /* opcional: evita quebrar texto em várias linhas */
}

ion-icon {
    font-size: 24px;
}

@media screen and (min-width: 425px) {
    .float-xs-left {
        float: left !important;
    }
    .float-xs-right {
        float: right !important;
    }
    .float-xs-none {
        float: none !important;
    }


    .m-xs-0 {
        margin: 0 !important;
    }
    .mt-xs-0,
    .my-xs-0 {
        margin-top: 0 !important;
    }
    .mr-xs-0,
    .mx-xs-0 {
        margin-right: 0 !important;
    }
    .mb-xs-0,
    .my-xs-0 {
        margin-bottom: 0 !important;
    }
    .ml-xs-0,
    .mx-xs-0 {
        margin-left: 0 !important;
    }
    .m-xs-1 {
        margin: 0.25rem !important;
    }
    .mt-xs-1,
    .my-xs-1 {
        margin-top: 0.25rem !important;
    }
    .mr-xs-1,
    .mx-xs-1 {
        margin-right: 0.25rem !important;
    }
    .mb-xs-1,
    .my-xs-1 {
        margin-bottom: 0.25rem !important;
    }
    .ml-xs-1,
    .mx-xs-1 {
        margin-left: 0.25rem !important;
    }
    .m-xs-2 {
        margin: 0.5rem !important;
    }
    .mt-xs-2,
    .my-xs-2 {
        margin-top: 0.5rem !important;
    }
    .mr-xs-2,
    .mx-xs-2 {
        margin-right: 0.5rem !important;
    }
    .mb-xs-2,
    .my-xs-2 {
        margin-bottom: 0.5rem !important;
    }
    .ml-xs-2,
    .mx-xs-2 {
        margin-left: 0.5rem !important;
    }
    .m-xs-3 {
        margin: 1rem !important;
    }
    .mt-xs-3,
    .my-xs-3 {
        margin-top: 1rem !important;
    }
    .mr-xs-3,
    .mx-xs-3 {
        margin-right: 1rem !important;
    }
    .mb-xs-3,
    .my-xs-3 {
        margin-bottom: 1rem !important;
    }
    .ml-xs-3,
    .mx-xs-3 {
        margin-left: 1rem !important;
    }
    .m-xs-4 {
        margin: 1.5rem !important;
    }
    .mt-xs-4,
    .my-xs-4 {
        margin-top: 1.5rem !important;
    }
    .mr-xs-4,
    .mx-xs-4 {
        margin-right: 1.5rem !important;
    }
    .mb-xs-4,
    .my-xs-4 {
        margin-bottom: 1.5rem !important;
    }
    .ml-xs-4,
    .mx-xs-4 {
        margin-left: 1.5rem !important;
    }
    .m-xs-5 {
        margin: 3rem !important;
    }
    .mt-xs-5,
    .my-xs-5 {
        margin-top: 3rem !important;
    }
    .mr-xs-5,
    .mx-xs-5 {
        margin-right: 3rem !important;
    }
    .mb-xs-5,
    .my-xs-5 {
        margin-bottom: 3rem !important;
    }
    .ml-xs-5,
    .mx-xs-5 {
        margin-left: 3rem !important;
    }
    .p-xs-0 {
        padding: 0 !important;
    }
    .pt-xs-0,
    .py-xs-0 {
        padding-top: 0 !important;
    }
    .pr-xs-0,
    .px-xs-0 {
        padding-right: 0 !important;
    }
    .pb-xs-0,
    .py-xs-0 {
        padding-bottom: 0 !important;
    }
    .pl-xs-0,
    .px-xs-0 {
        padding-left: 0 !important;
    }
    .p-xs-1 {
        padding: 0.25rem !important;
    }
    .pt-xs-1,
    .py-xs-1 {
        padding-top: 0.25rem !important;
    }
    .pr-xs-1,
    .px-xs-1 {
        padding-right: 0.25rem !important;
    }
    .pb-xs-1,
    .py-xs-1 {
        padding-bottom: 0.25rem !important;
    }
    .pl-xs-1,
    .px-xs-1 {
        padding-left: 0.25rem !important;
    }
    .p-xs-2 {
        padding: 0.5rem !important;
    }
    .pt-xs-2,
    .py-xs-2 {
        padding-top: 0.5rem !important;
    }
    .pr-xs-2,
    .px-xs-2 {
        padding-right: 0.5rem !important;
    }
    .pb-xs-2,
    .py-xs-2 {
        padding-bottom: 0.5rem !important;
    }
    .pl-xs-2,
    .px-xs-2 {
        padding-left: 0.5rem !important;
    }
    .p-xs-3 {
        padding: 1rem !important;
    }
    .pt-xs-3,
    .py-xs-3 {
        padding-top: 1rem !important;
    }
    .pr-xs-3,
    .px-xs-3 {
        padding-right: 1rem !important;
    }
    .pb-xs-3,
    .py-xs-3 {
        padding-bottom: 1rem !important;
    }
    .pl-xs-3,
    .px-xs-3 {
        padding-left: 1rem !important;
    }
    .p-xs-4 {
        padding: 1.5rem !important;
    }
    .pt-xs-4,
    .py-xs-4 {
        padding-top: 1.5rem !important;
    }
    .pr-xs-4,
    .px-xs-4 {
        padding-right: 1.5rem !important;
    }
    .pb-xs-4,
    .py-xs-4 {
        padding-bottom: 1.5rem !important;
    }
    .pl-xs-4,
    .px-xs-4 {
        padding-left: 1.5rem !important;
    }
    .p-xs-5 {
        padding: 3rem !important;
    }
    .pt-xs-5,
    .py-xs-5 {
        padding-top: 3rem !important;
    }
    .pr-xs-5,
    .px-xs-5 {
        padding-right: 3rem !important;
    }
    .pb-xs-5,
    .py-xs-5 {
        padding-bottom: 3rem !important;
    }
    .pl-xs-5,
    .px-xs-5 {
        padding-left: 3rem !important;
    }
    .m-xs-n1 {
        margin: -0.25rem !important;
    }
    .mt-xs-n1,
    .my-xs-n1 {
        margin-top: -0.25rem !important;
    }
    .mr-xs-n1,
    .mx-xs-n1 {
        margin-right: -0.25rem !important;
    }
    .mb-xs-n1,
    .my-xs-n1 {
        margin-bottom: -0.25rem !important;
    }
    .ml-xs-n1,
    .mx-xs-n1 {
        margin-left: -0.25rem !important;
    }
    .m-xs-n2 {
        margin: -0.5rem !important;
    }
    .mt-xs-n2,
    .my-xs-n2 {
        margin-top: -0.5rem !important;
    }
    .mr-xs-n2,
    .mx-xs-n2 {
        margin-right: -0.5rem !important;
    }
    .mb-xs-n2,
    .my-xs-n2 {
        margin-bottom: -0.5rem !important;
    }
    .ml-xs-n2,
    .mx-xs-n2 {
        margin-left: -0.5rem !important;
    }
    .m-xs-n3 {
        margin: -1rem !important;
    }
    .mt-xs-n3,
    .my-xs-n3 {
        margin-top: -1rem !important;
    }
    .mr-xs-n3,
    .mx-xs-n3 {
        margin-right: -1rem !important;
    }
    .mb-xs-n3,
    .my-xs-n3 {
        margin-bottom: -1rem !important;
    }
    .ml-xs-n3,
    .mx-xs-n3 {
        margin-left: -1rem !important;
    }
    .m-xs-n4 {
        margin: -1.5rem !important;
    }
    .mt-xs-n4,
    .my-xs-n4 {
        margin-top: -1.5rem !important;
    }
    .mr-xs-n4,
    .mx-xs-n4 {
        margin-right: -1.5rem !important;
    }
    .mb-xs-n4,
    .my-xs-n4 {
        margin-bottom: -1.5rem !important;
    }
    .ml-xs-n4,
    .mx-xs-n4 {
        margin-left: -1.5rem !important;
    }
    .m-xs-n5 {
        margin: -3rem !important;
    }
    .mt-xs-n5,
    .my-xs-n5 {
        margin-top: -3rem !important;
    }
    .mr-xs-n5,
    .mx-xs-n5 {
        margin-right: -3rem !important;
    }
    .mb-xs-n5,
    .my-xs-n5 {
        margin-bottom: -3rem !important;
    }
    .ml-xs-n5,
    .mx-xs-n5 {
        margin-left: -3rem !important;
    }
    .m-xs-auto {
        margin: auto !important;
    }
    .mt-xs-auto,
    .my-xs-auto {
        margin-top: auto !important;
    }
    .mr-xs-auto,
    .mx-xs-auto {
        margin-right: auto !important;
    }
    .mb-xs-auto,
    .my-xs-auto {
        margin-bottom: auto !important;
    }
    .ml-xs-auto,
    .mx-xs-auto {
        margin-left: auto !important;
    }
}
@media print {

    .ocultar-na-impressao {
        display: none !important;
        top: -1000px;
    }
}


.circle-info {
    margin-left : 5px;
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #337ab7; /* Cor de fundo do círculo */
    color: white; /* Cor do texto */
    text-align: center;
    line-height: 20px;
    cursor: pointer; /* help- Cursor muda para um ícone de ajuda quando o mouse passa sobre */
}

.btn-w200{
    width: 200px;
}

.sidebar-mini .nav-sidebar > .nav-item .nav-link{
    padding-left: 10px !important;
}

.sidebar-mini .nav-sidebar > .nav-item .nav-icon {
    font-size: 25px;
    margin-left: 0px !important;
    text-align: center !important;
    width: 30px !important;
}



.align-left{
    align-items: initial !important;
}


.note-editable,.card-body p {
    margin-bottom: 0 !important;
}

.texto-citado {
    margin-left: 40% !important;
    line-height: 1.15 !important; /* Ajusta para espaçamento simples */
    font-size: 13px !important;        /* Tamanho da fonte 10 do Word */
    text-align: justify; /* Justifica o texto */
    hyphens: auto;       /* Hifeniza automaticamente palavras longas */
}

.msg {
    background-color: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
    width: 100%;
    margin-bottom: 0;
    text-align: center;
    padding: 10px;
}

.msg-fail {
    background-color:  #e4605e;
    color: white;
    border: 1px solid #f34336;
    width: 100%;
    margin-bottom: 0;
    text-align: center;
    padding: 10px;
}

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

    table.dataTable>thead .sorting:before, table.dataTable>thead .sorting:after, table.dataTable>thead .sorting_asc:before, table.dataTable>thead .sorting_asc:after, table.dataTable>thead .sorting_desc:before, table.dataTable>thead .sorting_desc:after, table.dataTable>thead .sorting_asc_disabled:before, table.dataTable>thead .sorting_asc_disabled:after, table.dataTable>thead .sorting_desc_disabled:before, table.dataTable>thead .sorting_desc_disabled:after
    {
        position: relative !important;
        display: none !important;
    }

}


.row>.campos {
    padding-left : 5px;
    padding-right : 5px;
    margin-bottom: 10px;
}

label {
    margin-bottom: 0px;
}

.dropdown-item {
    white-space: wrap;       /* Impede que o texto quebre em várias linhas */
}

.text-truncate .ellipsis {
    white-space: nowrap;       /* Impede que o texto quebre em várias linhas */
    overflow: hidden;          /* Esconde o texto que ultrapassa o contêiner */
    text-overflow: ellipsis;   /* Adiciona "..." no final do texto truncado */
}


.info {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #337ab7; /* Cor de fundo do círculo */
    color: white; /* Cor do texto */
    text-align: center;
    line-height: 20px;
    cursor: help; /* Cursor muda para um ícone de ajuda quando o mouse passa sobre */
}


@media (max-width: 768px) {
    .container{
        max-width: 95%;
    }
}

@media (max-width: 576px) {
    .container{
        max-width: 100%;
    }
}

@media (min-width: 576px) {
    .modal-lg{
        width: 95%;
        max-width: 800px;
    }

    .modal-xl {
        width: 95%;
        max-width: 1140px;
    }
}

@media (min-width: 992px) {
    .modal-xl {
        width: 90%;
        max-width: 1140px;
    }

    .modal-xl2 {
        width: 95%;
        max-width: 1480px;
    }

}

.page-item.active .page-link {
    background-color: #17a2b8; /* Cor do btn-info */
    border-color: #17a2b8; /* Cor da borda do btn-info */
}

.bg-delta2-gray{
    background-color: #1e1e1e !important;
}

.nav-pills .nav-link {
    color: #c7c2d2
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    color: #fff;
    background-color: #a47325 !important;
}

.card-header{
    background-color: rgba(0, 0, 0, .03) !important;
}

.bg-light-warning {
    background-color: #fff3cd; /* Um tom leve de amarelo, representando um aviso */
    color: #856404; /* Uma cor de texto escura para contraste */
}

.bg-light-warning:hover {
    background-color: #ffe8a1 !important; /* Cor de fundo mais escura ao passar o mouse */
}

@media screen and (max-width: 375px) {
    .navbar-expand .navbar-nav .nav-link {
        padding-right: 12px;
        padding-left: 12px;
    }
}

table.dataTable>thead>tr>th:not(.sorting_disabled), table.dataTable>thead>tr>td:not(.sorting_disabled) {
    padding-right: 30px !important;
}

.select2 {
    width: 100% !important;
}

.img-size-24 {
    height: auto;
    width: 24px;
}
