/* Estilo das classes para gerenciar a ação de ocultar e mostrar a sidebar completa */
.show {
    opacity: 1;
    transition: opacity .5s linear;
}

.hide {
    opacity: 0;
    pointer-events: none;
}

/* Estilos da Tela de Login */
.formLogin {
    background: #005088;
}

.logoLogin {
    width: 30%;
    height: 30%;
    margin: 0 auto;
    text-align: center;
}

.homeImg {
    width: 30%;
    height: 30%;
    margin: 0 auto;
    text-align: center;
}

/* Estilo das classes da sidebar */
.sidebarBackground {
    background: #005088;
}

.sidebarButton {
    color: #005088;
    border-color: #005088;
}

/* Titulo das Páginas*/
.homeTitle {
    background: #005088;
    color: white;
}

/* Formulários */
.formButton {
    background: #005088;
}

.formTrashButton {
    background: #F44336;
}

.formButton:hover {
    background: #067fc7;
}

.formTrashButton:hover {
    background: #F44336;
}

/* Configurações do Balloon CSS */
:root {
    --balloon-font-size: 20px;
    --balloon-color: #067fc7;
}

/* Dropdown Relatorios */
.dropdownMenuRelatorios{
    display: none;
}

/* Imagem da assinatura */
.fileInput {
    width: 200px;
    height: auto;
    max-width: 200px;
    max-height: 150px;
}

/* Wrapper (the table itself) padding and font size */
#sintetico_wrapper, #analitico_wrapper {
    padding: 0.5rem;
    font-size: 0.75rem;
}

/* Pagination numbers style */
.dataTables_wrapper .dataTables_paginate, .dataTables_wrapper .dataTables_paginate,
.dataTables_wrapper .dataTables_paginate .paginate_button, .dataTables_wrapper .dataTables_paginate .paginate_button:hover{
    border: 1px solid transparent;
    color: #0c0c0c !important;
    background: transparent;
    padding: 0.5rem;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: #005088;
    color: whitesmoke !important;
}


/*Default datatable buttons (next and previous) style*/
#sintetico_previous, #analitico_previous,
#sintetico_next, #analitico_next{
    padding: 0.5rem;
    background: #005088;
    color: whitesmoke !important;
    border-radius: 0.2rem;
}

/*Disabled datatable buttons (next and previous) style*/
#sintetico_next.disabled, #analitico_next.disabled,
#sintetico_previous.disabled, #analitico_previous.disabled {
    background: whitesmoke;
    color: grey !important;
}

.textoHeader {
    display: none;
    background: #005088;
    color: whitesmoke;
    border-radius: 0.2rem;
}


.dataTables_wrapper .dataTables_processing {
    z-index: 999;
    position: absolute;
    top: 30% !important;
    left: 50%;
    width: 30%;
    height: auto;
    margin-left: -20%;
    margin-top: -25px;
    padding-top: 20px;
    text-align: center;
    font-size: 1.2em;
    background: white;
    border: 1px solid #005088;
    border-radius: 20px;
}

#customBlockMessage {
    background: white;
    border: 1px solid #005088;
    border-radius: 20px;
}

/* SELECT 2 */
.select2.select2-container {
    width: 100% !important;
}

.select2.select2-container .select2-selection {
    padding-top: 0.4rem;
    border: 1px solid #ccc;
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    border-radius: 0.5rem;
    height: 42px;
}

.select2.select2-container .select2-selection .select2-selection__arrow {
    -webkit-border-radius: 0 0.5rem 0.5rem 0;
    -moz-border-radius: 0 0.5rem 0.5rem 0;
    border-radius: 0 0.5rem 0.5rem 0;
    height: 42px;
    width: 33px;
}




